From 46d4c26cd8add43f266d66345b8bcb0989356079 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 19 Sep 2025 23:06:46 -0400 Subject: [PATCH] 0.4.0 release (#380) * Fix CLI (#290) * Fix docker (#288) * Squish (#289) * Exclude python 3.12 from support (#293) * exclude python 3.12 from support * change pygit2 version * move cd.yaml to poetry * prevent werkzeug from breaching 3.0.0 * update checkout and setup-python. Add 3.11 to test matrix * Refactor Table Connection (#291) * unify getting objects by id and consolidate to delete language * fix tests * Documenting shape-to-template process and adding some QoL improvements (#278) * documenting shape-to-template process and adding some QoL improvements * fix test * skip 223P tests until gabe can fix them after next standard prerelease is done * remember to add shapes from the graph even when loading from directory * add exception to catch lack of sh:path * add test cases for recent code changes * dedicated test suite for library shape test * dedicated test suite for library shape test * Add Application Explorer (#292) * Add Application Explorer * Address comment * Fix test * improve performance by not requiring OPTIONAL clause in SPARQL queries --------- Co-authored-by: Gabe Fierro * Generate SPARQL Queries from SHACL shapes (#273) * add method to generate sparql query from shacl shape * add some tests * fix typo in query generation * add sh:node, sh:or * fixup tests * handle or inside qualifiedvalue shape, complex property paths * add test file * update docs with image and guide on query generation * augment docstring with more features * add test case * add section on supported SHACL features * add algorithm documentation * support other target definitions * add more tests * Fixing template inlining (#298) * address ambiguous template naming in inline_dependencies * fill non-graphs, propagate the optional arg requirement * update tests * adjusting tests for inlining * Allow Library to find template definitions from dependent libraries (#307) * allow Library to find template definitions from dependent libraries * fixing tests to catch warnings, test dependency tracking * use non-deprecated warnings; make sure warnings are emitted when necessary * clarify when dependencies are infered for SHACL shapes -> templates * update dependencies * adding documentation on templates * placeholder for further template docs * clarify load order * update jsonschema, skip mypy checking on imports * fix API response and test to handle Brick * cleaning some code up * Add ability to use TopQuadrant SHACL implementation as engine (#308) * add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines * fix interactions with shacl inference * tightening up the implementation and use of the shacl_* methods * support specifying shacl engine in the API * update tests; test both pyshacl and topquadrant * add brick-tq-shacl dep * add TODOs * Formatting * no more 3.8! * ignoring some imported packages without type annotations * more type annotations * add types, ignore type errors for imports * update mypy, fix some issues and ignore some others * fix union type annotation * update docker containers * 3.8.1 python for higher * add back python 3.8 * change 3.8 version * add test for finding reasons with a given severity * update brick-tq-shacl, fix type signature * remove debug serializations * bump shacl version * fixing skolemization for validation * move shacl engine config inside buildingmotif object * install rtd deps * jupyter-book needs to be installed pre-build * cleanup and update to default config comments * change from ubuntu:latest to python:3.9 for bacnet testing (#317) * Fix tutorials (#310) * updating validation tutorial * fixing some tutorials * updates * more components * fix imports and formatting and type annotations * fix formatting * fix merge * fix bacnet docker * fixing versions in docker bacnet setup * alphabetize prefixes * fixing model_correction file * Add new transitive_parameters method to accelerate library loading (#314) * Add new transitive_parameters method to accelerate library loading The prior implementation of check_template_dependency_relationship used inline_dependencies to check the parameters of template dependencies. inline_dependencies can be slow-ish because it copies the bodies of templates (these are graphs, so they inherit the performance characteristics of the underlying store). We can compute the parameters through the dependency tree automatically without copying the graphs, which is much faster. * use cached_property * remove cached_property * fix docker * fix bacnet docker container * bump workflow action versions * BMS naming convention parsing (#286) * adding label parsing initial implementation with tests * fix bug in many parsing * test first_true * add ingress and example * adding/testing maybe parser * add errors * propagate errors * update notebook * fix test import * capture errors in the token stream * fix notebook kernel * some changes * Make Parsers classes * Add Application Explorer (#292) * Add Application Explorer * Address comment * Fix test * improve performance by not requiring OPTIONAL clause in SPARQL queries --------- Co-authored-by: Gabe Fierro * Generate SPARQL Queries from SHACL shapes (#273) * add method to generate sparql query from shacl shape * add some tests * fix typo in query generation * add sh:node, sh:or * fixup tests * handle or inside qualifiedvalue shape, complex property paths * add test file * update docs with image and guide on query generation * augment docstring with more features * add test case * add section on supported SHACL features * add algorithm documentation * support other target definitions * add more tests * Fixing template inlining (#298) * address ambiguous template naming in inline_dependencies * fill non-graphs, propagate the optional arg requirement * update tests * adjusting tests for inlining * Allow Library to find template definitions from dependent libraries (#307) * allow Library to find template definitions from dependent libraries * fixing tests to catch warnings, test dependency tracking * use non-deprecated warnings; make sure warnings are emitted when necessary * clarify when dependencies are infered for SHACL shapes -> templates * update dependencies * adding documentation on templates * placeholder for further template docs * clarify load order * update jsonschema, skip mypy checking on imports * fix API response and test to handle Brick * cleaning some code up * remove unused import, fix type signature * fix poetry lock * moving tokens/parser to different files * adding combinators module * add some negative cases * add missing combinators file * fix notebook --------- Co-authored-by: Hannah Eslinger * New model builder (#301) * address ambiguous template naming in inline_dependencies * fill non-graphs, propagate the optional arg requirement * update tests * adjusting tests for inlining * update 223p templates * update 223 * add model builder impl * add QUDT * update templates * allow adding triples directly to the builder graph * allow Library to find template definitions from dependent libraries * fixing tests to catch warnings, test dependency tracking * use non-deprecated warnings; make sure warnings are emitted when necessary * clarify when dependencies are infered for SHACL shapes -> templates * update dependencies * adding documentation on templates * placeholder for further template docs * clarify load order * update jsonschema, skip mypy checking on imports * fix API response and test to handle Brick * updating 223p and templates * filtering validationcontext by severity * add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines * fix interactions with shacl inference * tightening up the implementation and use of the shacl_* methods * support specifying shacl engine in the API * update tests; test both pyshacl and topquadrant * add brick-tq-shacl dep * add TODOs * Formatting * no more 3.8! * ignoring some imported packages without type annotations * more type annotations * add types, ignore type errors for imports * update mypy, fix some issues and ignore some others * fix union type annotation * update docker containers * 3.8.1 python for higher * add back python 3.8 * change 3.8 version * add test for finding reasons with a given severity * update brick-tq-shacl, fix type signature * remove debug serializations * bump shacl version * fixing skolemization for validation * update 223p, fix merge error * fix notebook * fix the merge * remove qudt from commit * remove more bad merge * fix more bad merge * remove more bad merge * add s223 namespace, parameter prop on template builder * add model builder draft * add call syntax to simplify evaluating templates * do not waste cycles re-binding namespaces on copied graphs * update model builder notebook * add java for topquadrant support * use topquadrant in 223 notebook * updating dockerfile; this started failing, possibly because of updated ubuntu * properly initialize graph superclass * Add graph hashing method to utils (#296) * Add graph hashing method to utils * change to approximate hash and use existing model for test * make test use a model graph to show positive functionality with DB stored graphs * use new rdflib triple canonicalizer to calculate graph hashes * update docstring * rename from approximate_graph_hash to graph_hash * Create generic serializer deserializer for parsers (#322) * Strip param inlining (#325) * add _strip_param function and tests to support inlining * fix test * Changes to ingresses to support external work (#312) * Allow TemplateHandler to handle edge cases in template eval Adds two flags: - require_optional - fill_unused These allow adjustment of how the template ingress handler deal with records that don't necessarily have all the parameters for the chosen template (fill_unused), and how the handler deal with optional parameters in the chosen template (require_optional) * more configuration on template ingress * put limit on xlsx * cleaning up parameter,s adding docstrings * Update template.py * Update xlsx.py * use pathlike * Fix autogeneration of templates (#329) * factor out the guarantee method and add unit tests * add function to utils * Update 223P to public advisory review version (#309) * updating 223p again * update 223p templates * update 223 * add QUDT * update templates * allow Library to find template definitions from dependent libraries * fixing tests to catch warnings, test dependency tracking * use non-deprecated warnings; make sure warnings are emitted when necessary * clarify when dependencies are infered for SHACL shapes -> templates * update dependencies * adding documentation on templates * placeholder for further template docs * clarify load order * update jsonschema, skip mypy checking on imports * fix API response and test to handle Brick * updating 223p and templates * filtering validationcontext by severity * add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines * fix interactions with shacl inference * tightening up the implementation and use of the shacl_* methods * support specifying shacl engine in the API * update tests; test both pyshacl and topquadrant * add brick-tq-shacl dep * add TODOs * Formatting * no more 3.8! * ignoring some imported packages without type annotations * more type annotations * add types, ignore type errors for imports * update mypy, fix some issues and ignore some others * fix union type annotation * update docker containers * 3.8.1 python for higher * add back python 3.8 * change 3.8 version * add test for finding reasons with a given severity * update brick-tq-shacl, fix type signature * remove debug serializations * bump shacl version * fixing skolemization for validation * update 223p, fix merge error * fix notebook * fix more templates; test 223p again * move shacl engine config inside buildingmotif object * parameterize testing of templates for 223p * change some brick templates to make tests less noisy * fixing up templates * add brick integration tests * upadte QUDT * 223p fixup * add shacl engine and qudt to tests * use public review version of 223p * add qudt 2.1.37 release * better exception message * fixing system, sensor templates * fixing up 223 templates * fix plugging connection points in 223p * add the shape graph to the data graph for validation * clean up a little; skip some templates for pyshacl + 223p * fixing use of tmpdir -> tmp_path * try persistence test without path * use path again; try print statements * Add new transitive_parameters method to accelerate library loading The prior implementation of check_template_dependency_relationship used inline_dependencies to check the parameters of template dependencies. inline_dependencies can be slow-ish because it copies the bodies of templates (these are graphs, so they inherit the performance characteristics of the underlying store). We can compute the parameters through the dependency tree automatically without copying the graphs, which is much faster. * use cached_property * tryin-memory? * skip the test -- is this the only one that iss broken? * remove this file * add back path, remove other conftest * add back path, remove other conftest * remove test from in-progress code * remove cached_property * add back conf tests with optimized loading * fix docker * more test hacking * remove duplicate parameterization * remove bad merge * fix bacnet docker container * bump workflow action versions * use more recent Brick, try to write to local db file for persistence test * fix brick references, fix persistence test * support configuring the shacl engine when starting the buildingmotif API * make sure SHACL engine is passed around * handle dependencies for Brick validation in integration tests * bump deps * remove debug * add imports for brick * update brick 1.3 -> 1.4 * reduce tests temporarily * fixing flags to customize how much work gets done when a library is loaded * build templates off of imports closure * more recent 223p build * update again * newer 223p * temporarily pause bacnet integration * add custom option; this needs to be done at the "top level" of the pytest config * add bacnet back * fix ci configuration * fix dependencies on template * fixing some libraries * add _strip_param function and tests to support inlining * fix last class * fix test * add _strip_param function and tests to support inlining * fix test * revert db persistence test * change how we indicate buildingMOTIF's singleton metaclass * update chiller pointlist library * add new test subdirectory to fucus on library/template tests * remove debugs * monkeypatching to handle the singleton * more adjustments on the monkeypatching * more monkeypatching * add comments for explaining the library conftest * add library tests for github, add back notebook fixture * add IDs to notebook tests * factor out the guarantee method and add unit tests * add function to utils * update internal Brick * update notebooks to match buildingmotif API * fixing a couple notebooks * fix kernel * skip some 223p templates that cannot stand on their own * more templates to skip for 223p * increase notebook run time * remove unneeded flag * small changes to template compilation * fix chiller templates * add libraries to dockerfile so that pytest can enumerate the tests * add docstring for shacl_engine * cleaner bypass of the singleton for library tests --------- Co-authored-by: Matt Steen * Create parser UI (#319) * Add parsers endpoint * Update node version * Create Parser UIs * Fix linting * Fix linting? * Add in Blockly * WIP * Fix * use inspect to help generate argument serialization * Clean up * Fix spilt --------- Co-authored-by: TShapinsky * rename 5.16 * cleanup 5.16 prefixes * add 5.16 missing fault conditions 1 and 9-15 * cleanup 5.16 fault conditions 2-8 * typos * add 5.17 fault conditions * add 5.18 fault conditions * remove unused components prefix * add 5.22 fault conditions * update Operating State points * changing the model of outside air fraction * remove internal variables (constants) * Updating setuptool to use the newest version, bumping other deps too (#340) * Updating setuptool to use the newest version, bumping other deps too * update pyshacl, other deps * Update pyproject.toml * update poetry.lock * Update NREL 223P Templates (#343) * add new pipe and belimo energy valve templates, update property definitions for water and air mediums, remove QUDT files not needed for model validation * fix dependency * skip pipe template due to connections * add %OAmin * remove %OA * update test_model.py * fix typo in FCU prefix * Skip ipynb checkpoint directory (#330) * skip .ipynb_checkpoints when scanning for files * do the same filter in utils * add ipynb checkpoint test * force-add the ipynb checkpoitn file * Service clean up (#335) Co-authored-by: Gabe Fierro * Add test and fix for #326 (#327) * add test and fix for #237 * add negative test * fix tests for windows (#318) * fix tests for windows * flush buffer in tests * Add explanation of point label parsing (#344) * add explanation of point label parsing * add example from notebook * add note on error handling * add links to a few classes * Update docs/explanations/point-label-parsing.md Co-authored-by: Matt Steen * Update docs/explanations/point-label-parsing.md Co-authored-by: Matt Steen * Update docs/explanations/point-label-parsing.md Co-authored-by: Matt Steen * Update docs/explanations/point-label-parsing.md Co-authored-by: Matt Steen * Update docs/explanations/point-label-parsing.md Co-authored-by: Matt Steen --------- Co-authored-by: Matt Steen * Fixing runtime issues in Jupyter notebook (#348) * move the target query out of the hot loop; we probably do not need to compute the cbd because we are already passing in the ontology graph * reduce the number of shapes we check in the notebook * fix composition of shacl shapes * break out integration tests to only run once * remove commented line * break out libraries into its own test * remove libraries from integration * try to run library tests on approval/merge * use new model * try more triggers * make only library tests run when event type is not push * remove style dependency for library tests --------- Co-authored-by: TShapinsky * Update Brick to 1.4.1 (#346) * update Brick to 1.4.1 * Update Brick 1.3 -> 1.4 references * move the target query out of the hot loop; we probably do not need to compute the cbd because we are already passing in the ontology graph * reduce the number of shapes we check in the notebook * fix composition of shacl shapes * break out integration tests to only run once * remove commented line * break out libraries into its own test * remove libraries from integration * updating unit tests for brick 1.4 * adjust test to use brick 1.4 * using Brick 1.4 for more tests * fix brick uri * fix 4.6 shape for library tests * Add parser vis (#334) * update pyproject.toml for release * fix CD action to publish to pypi once per release (#356) * remove needs: deploy-docs from CD (#357) * Improve validation report output (#320) * improve report output * working on orshapes * add reason to orshape * add orshape diff to report * hashable * fixing result_uri? * remove print * use actual validation report * fix imports * formatting * fix tests to match new shacl interpretation output * fix tests to match new shacl interpretation output * add test case for property shapes * use pyshacl parsing of paths * formatting and imports * remove Literal import * clean up commented code * add test case for Or * format * qname for paths in validation reasons * handle prefixes whe nconverting to sparql paths * format code * fixing up shape_to_query and adding tests * dedup count code * move count formatting function to graphdiff and fix test * Add custom error classes (#360) * add custom library/template not found exceptions * modelnotfound * add errors! * fix API error detection * fix exception * use the correct error * reduce redundancy in error messages, alphabetize classes * reduce redundancy in error messages * reformatting * fix use of exception * Update buildingmotif/api/views/model.py --------- Co-authored-by: Matt Steen * Add new model creation methods (#365) * add custom library/template not found exceptions * modelnotfound * add errors! * add endpoint to get template body * change pyshacl engine when validating * fix API error detection * fix exception * use the correct error * format * add new model creation methods * test: Add tests for Model.from_file and Model.from_graph methods * fix: Import OWL namespace to resolve undefined name error in tests * make sure description can be pulled from the file, add tests for new methods * fix tests, and do not emit triple for empty description * fix imports * reformat * normalize name to string * fix the test * fix data type on test * adding more tests for file extension, adding comments to clarify behavior * fix error * Add infer_templates method on shape collection (#361) * add custom library/template not found exceptions * modelnotfound * add errors! * add infer_templates method * add more docs * ad inline method for qualified value shape * fix API error detection * fix exception * use the correct error * Update buildingmotif/utils.py Co-authored-by: Matt Steen * fix import of Library dataclass --------- Co-authored-by: Matt Steen * Add automatic development releases to pypi (#368) * initial attempt to push development builds * add this branch to list allowed to cd * try python 3.11 * fix my mistake * add dependency install * run build push after tests successfully complete. Try querying test pypi to confirm that incrementing works. * cleanup and documentation * skip existing for test pypi * retarget to develop now that it appears to be working properly * move development deployment into cd.yaml * Web API changes to support demo features (#362) * add custom library/template not found exceptions * modelnotfound * add errors! * add endpoint to get template body * change pyshacl engine when validating * fix API error detection * fix exception * use the correct error * format * Update buildingmotif/api/views/template.py Co-authored-by: Matt Steen * allow overriding of shacl_engine * reformat * use shacl engine override in view * fix lint * use None isntead of "default" for shacl_engine * fix formatting * fix errant import --------- Co-authored-by: Matt Steen * Add CompiledModel class which can generate DataFrames and Tables (#359) * add CompiledModel class * format code * fix variable names, python deps * format * add compiled model in its own class, fix some deps * avoid subclassing Model * python 3.10 thru 3.13 * no python 3.13 yet * udpate poetry from merge * bump pygit2 * bumping versions, fixing poetry lock * bump flake * bump flake8 * poetry lock * changes for shacl path * remove snakeviz * fixing test against shapes * saving time on 223P validation * fixing notebooks * Improving tests * updating tests and fixing some subtle bugs * use renamed method * updating QUDT * update Brick * update imports for brick library tests * Cascade DELETEs in the database (#363) * add errors! * made these changes when building the demo; this removes dangling templates/etc when deleting libraries * Fix styling issues * Add tests for cascading delete behavior on models and libraries * formatting * adding comments to tests, add another test case * formatting * delete dependant templates and libraries * patch test by using overwrite=False to prevent library deletion cascade * Implement lazy resolution * begin refactor with new dependency design * add error_on_missing_dependency * Fix template library resolution for cases where library is being created from a ttl file * fix dict to Dict * default resolution is to current library --------- Co-authored-by: TShapinsky * Optimizations to Improve testing speed (#373) * Use graph subtraction instead of canonicalization to improve performance * Make notebook tets use topquadrant * run unit and integration tests in parallel * organize tests in lists instead of sets for reproducability across threads * Make library tests multi threaded * make library tests run sparingly again * 0.4.0 docs (#378) * update Model Creation * fix Model Validation * fix Model Correction by updating manifest Brick version * fix Model Correction KeyError * update Brick-subset.ttl version to temporarily fix errors * update README * update config * add Outside_Damper to Brick-subset for Model Creation * update dev doc * delete extra line --------- Co-authored-by: Hannah Eslinger Co-authored-by: Tobias Shapinsky Co-authored-by: Gabe Fierro Co-authored-by: daniel <78173152+dllliu@users.noreply.github.com> --- .github/workflows/cd.yml | 52 +- .github/workflows/ci.yml | 16 +- .pre-commit-config.yaml | 2 +- buildingmotif/api/views/library.py | 8 +- buildingmotif/api/views/model.py | 52 +- buildingmotif/api/views/template.py | 47 +- .../building_motif/building_motif.py | 2 +- buildingmotif/database/errors.py | 57 + buildingmotif/database/table_connection.py | 121 +- buildingmotif/database/tables.py | 137 +- buildingmotif/dataclasses/compiled_model.py | 224 + buildingmotif/dataclasses/library.py | 234 +- buildingmotif/dataclasses/model.py | 204 +- buildingmotif/dataclasses/shape_collection.py | 231 +- buildingmotif/dataclasses/template.py | 137 +- buildingmotif/dataclasses/validation.py | 113 +- buildingmotif/utils.py | 59 +- docs/README.md | 28 +- docs/_config.yml | 4 +- docs/conf.py | 4 +- docs/explanations/shapes-and-templates.md | 49 +- docs/reference/developer_documentation.md | 8 +- docs/tutorials/model_correction.md | 15 +- docs/tutorials/model_creation.md | 4 +- docs/tutorials/model_validation.md | 4 +- docs/tutorials/tutorial1_manifest.ttl | 2 +- docs/tutorials/tutorial2_manifest.ttl | 2 +- .../5.16.14-multiple-zone-vav-ahu-afdd.ttl | 2 +- libraries/ashrae/guideline36/components.ttl | 4 + libraries/brick/Brick-subset.ttl | 9 +- libraries/brick/Brick.ttl | 5567 +- libraries/qudt/SCHEMA-FACADE_QUDT.ttl | 16 + libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl | 4710 ++ .../qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl | 4960 ++ libraries/qudt/SCHEMA_QUDT.ttl | 3183 + libraries/qudt/SCHEMA_QUDT_NoOWL.ttl | 3082 + .../qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl | 623 + libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl | 7222 ++ libraries/qudt/VOCAB_QUDT-DATATYPES.ttl | 1910 + .../qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl | 4049 + libraries/qudt/VOCAB_QUDT-PREFIXES.ttl | 459 + libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl | 12 + .../qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl | 32009 +++++++ ...OCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl | 742 + .../qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl | 202 + libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl | 70104 ++++++++++++++++ libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl | 2749 + notebooks/223P-Validation.ipynb | 5 +- notebooks/Compile-model.ipynb | 3200 +- .../Existing-model-validation-example.ipynb | 30 +- notebooks/GabeDemo.ipynb | 13 +- notebooks/Ingress-Tutorial-CSV.ipynb | 8 +- ...ngress-Tutorial-XLSX-Multiple-Sheets.ipynb | 8 +- notebooks/Ingress-Tutorial-XLSX.ipynb | 8 +- notebooks/Template-Usage.ipynb | 8 +- poetry.lock | 3103 +- pyproject.toml | 17 +- scripts/bump_dev_version.py | 251 + tests/integration/conftest.py | 1 + tests/library/test_223p_templates.py | 4 +- tests/library/test_brick_templates.py | 18 +- tests/unit/api/test_library.py | 2 +- tests/unit/api/test_model.py | 24 +- tests/unit/api/test_template.py | 2 +- tests/unit/conftest.py | 8 +- .../table_connection/test_db_library.py | 40 +- .../table_connection/test_db_model.py | 30 +- .../table_connection/test_db_shape.py | 22 +- .../table_connection/test_db_template.py | 61 +- .../test_cascading_deletes_cascades.py | 166 + tests/unit/dataclasses/conftest.py | 17 + tests/unit/dataclasses/test_compiled_model.py | 120 + tests/unit/dataclasses/test_model.py | 62 +- .../unit/dataclasses/test_shape_collection.py | 98 +- tests/unit/dataclasses/test_template_dc.py | 38 +- .../unit/fixtures/compilation/brick_model.ttl | 23 + tests/unit/fixtures/compilation/model.ttl | 23 + .../unit/fixtures/compilation/s223_model.ttl | 705 + tests/unit/fixtures/compilation/shapes.ttl | 29 + tests/unit/fixtures/from_file_test.ttl | 9 + tests/unit/fixtures/from_file_test.xmlbadext | 10 + tests/unit/fixtures/from_file_test.xyz | 9 + tests/unit/fixtures/shape_to_query/shapes.ttl | 45 + 83 files changed, 144282 insertions(+), 7365 deletions(-) create mode 100644 buildingmotif/database/errors.py create mode 100644 buildingmotif/dataclasses/compiled_model.py create mode 100644 libraries/qudt/SCHEMA-FACADE_QUDT.ttl create mode 100644 libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl create mode 100644 libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl create mode 100644 libraries/qudt/SCHEMA_QUDT.ttl create mode 100644 libraries/qudt/SCHEMA_QUDT_NoOWL.ttl create mode 100644 libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-DATATYPES.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-PREFIXES.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl create mode 100644 libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl create mode 100644 scripts/bump_dev_version.py create mode 100644 tests/unit/database/test_cascading_deletes_cascades.py create mode 100644 tests/unit/dataclasses/test_compiled_model.py create mode 100644 tests/unit/fixtures/compilation/brick_model.ttl create mode 100644 tests/unit/fixtures/compilation/model.ttl create mode 100644 tests/unit/fixtures/compilation/s223_model.ttl create mode 100644 tests/unit/fixtures/compilation/shapes.ttl create mode 100644 tests/unit/fixtures/from_file_test.ttl create mode 100644 tests/unit/fixtures/from_file_test.xmlbadext create mode 100644 tests/unit/fixtures/from_file_test.xyz diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3bc6c9d29..b7915229d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -1,20 +1,19 @@ name: continuous deployment on: - pull_request: - branches: - - develop - - main push: branches: - develop - main release: + types: + - published jobs: - # deploy docs for develop and main branches + # deploy docs if not release deploy-docs: + if: github.event_name != 'release' runs-on: ubuntu-latest steps: # setup, checkout pull_request.head.ref for repo-vis @@ -56,10 +55,9 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/_build/html - # deploy distribution if a new release and tag are created + # deploy distribution if release deploy-dist: - needs: deploy-docs - if: startsWith(github.ref, 'refs/tags') + if: github.event_name == 'release' runs-on: ubuntu-latest steps: # setup @@ -88,3 +86,41 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} + + # deploy development distribution with changes to develop + deploy-dev-dist: + if: github.ref == 'refs/heads/develop' && github.event_name == 'push' + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + - name: setup-python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: install-poetry + uses: snok/install-poetry@v1 + with: + version: 1.4.0 + virtualenvs-in-project: false + virtualenvs-path: ~/.virtualenvs + - name: install dependencies + run: poetry install --no-root --with=dev + - name: increment dev version + env: + PYPI_URL: https://pypi.org + run: poetry run python scripts/bump_dev_version.py + - name: build dist + run: poetry build + - name: publish dev distribution to Test PyPI + id: test-pypi + uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.TEST_PYPI_API_TOKEN }} + repository_url: https://test.pypi.org/legacy/ + skip_existing: true + - name: publish distribution to PyPI + if: steps.test-pypi.outcome == 'success' + uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35e76c6c0..d54331771 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] steps: - name: checkout uses: actions/checkout@v4 @@ -62,12 +62,14 @@ jobs: virtualenvs-path: ~/.virtualenvs - name: poetry install run: poetry install --all-extras + - name: install pytest-xdist for parallel tests + run: poetry run pip install pytest-xdist - name: lint run: poetry run flake8 buildingmotif - name: type check run: poetry run mypy --ignore-missing-imports - name: unit tests - run: poetry run pytest tests/unit --cov=./ --cov-report=xml + run: poetry run pytest -n auto tests/unit --cov=./ --cov-report=xml - name: build tests run: poetry build @@ -101,8 +103,10 @@ jobs: virtualenvs-path: ~/.virtualenvs - name: poetry install run: poetry install --all-extras + - name: install pytest-xdist for parallel tests + run: poetry run pip install pytest-xdist - name: integration tests - run: poetry run pytest tests/integration + run: poetry run pytest -n auto tests/integration - name: bacnet tests run: | cd tests/integration/fixtures/bacnet @@ -139,8 +143,10 @@ jobs: virtualenvs-path: ~/.virtualenvs - name: poetry install run: poetry install --all-extras + - name: install pytest-xdist for parallel tests + run: poetry run pip install pytest-xdist - name: library tests - run: poetry run pytest tests/library + run: poetry run pytest -n auto tests/library coverage: needs: testing @@ -149,4 +155,4 @@ jobs: - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.xml + files: ./coverage.xml \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0c0c336b0..469681b41 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: - id: black entry: poetry run black - repo: https://github.com/pycqa/flake8 - rev: 5.0.0 + rev: 7.0.0 hooks: - id: flake8 entry: poetry run flake8 buildingmotif diff --git a/buildingmotif/api/views/library.py b/buildingmotif/api/views/library.py index 0da273379..3efde5b33 100644 --- a/buildingmotif/api/views/library.py +++ b/buildingmotif/api/views/library.py @@ -4,9 +4,9 @@ from flask import Blueprint, current_app, jsonify from flask_api import status from rdflib import URIRef -from sqlalchemy.orm.exc import NoResultFound from buildingmotif.api.serializers.library import serialize +from buildingmotif.database.errors import LibraryNotFound from buildingmotif.dataclasses.shape_collection import ShapeCollection blueprint = Blueprint("libraries", __name__) @@ -81,9 +81,7 @@ def get_library(library_id: int) -> flask.Response: """ try: db_lib = current_app.building_motif.table_connection.get_db_library(library_id) - except NoResultFound: - return { - "message": f"No library with id {library_id}" - }, status.HTTP_404_NOT_FOUND + except LibraryNotFound: + return {"message": f"ID: {library_id}"}, status.HTTP_404_NOT_FOUND return jsonify(serialize(db_lib)), status.HTTP_200_OK diff --git a/buildingmotif/api/views/model.py b/buildingmotif/api/views/model.py index 41fc930dd..c92947073 100644 --- a/buildingmotif/api/views/model.py +++ b/buildingmotif/api/views/model.py @@ -3,9 +3,13 @@ from flask_api import status from rdflib import Graph, URIRef from rdflib.plugins.parsers.notation3 import BadSyntax -from sqlalchemy.orm.exc import NoResultFound from buildingmotif.api.serializers.model import serialize +from buildingmotif.database.errors import ( + LibraryNotFound, + ModelNotFound, + ShapeCollectionNotFound, +) from buildingmotif.dataclasses import Library, Model, ShapeCollection blueprint = Blueprint("models", __name__) @@ -34,8 +38,8 @@ def get_model(models_id: int) -> flask.Response: """ try: model = current_app.building_motif.table_connection.get_db_model(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND return jsonify(serialize(model)), status.HTTP_200_OK @@ -51,8 +55,8 @@ def get_model_graph(models_id: int) -> Graph: """ try: model = Model.load(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND g = Graph() + model.graph @@ -70,8 +74,8 @@ def get_target_nodes(models_id: int) -> Graph: """ try: model = Model.load(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND result = model.graph.query( """ @@ -132,8 +136,8 @@ def update_model_graph(models_id: int) -> flask.Response: """ try: model = Model.load(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND if request.content_type != "application/xml": return { @@ -160,12 +164,16 @@ def validate_model(models_id: int) -> flask.Response: # get model try: model = Model.load(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND + # we will read the shape collections from the input shape_collections = [] - # no body provided -- default to model manifest and default SHACL engine + # get shacl_engine from the query params, defaults to the current engine + shacl_engine = request.args.get("shacl_engine", None) + + # no body provided -- default to model manifest if request.content_length is None: shape_collections = [model.get_manifest()] else: @@ -182,23 +190,23 @@ def validate_model(models_id: int) -> flask.Response: if body is not None and not isinstance(body, dict): return {"message": "body is not dict"}, status.HTTP_400_BAD_REQUEST - shape_collections = [] body = body if body is not None else {} nonexistent_libraries = [] for library_id in body.get("library_ids", []): try: shape_collection = Library.load(library_id).get_shape_collection() shape_collections.append(shape_collection) - except NoResultFound: + except LibraryNotFound: nonexistent_libraries.append(library_id) if len(nonexistent_libraries) > 0: return { "message": f"Libraries with ids {nonexistent_libraries} do not exist" }, status.HTTP_400_BAD_REQUEST - # if shape_collections is empty, model.validate will default - # to the model's manifest - vaildation_context = model.validate(shape_collections) + # if shape_collections is empty, model.validate will default to the model's manifest + vaildation_context = model.validate( + shape_collections, error_on_missing_imports=False, shacl_engine=shacl_engine + ) return { "message": vaildation_context.report_string, @@ -215,8 +223,8 @@ def validate_shape(models_id: int) -> flask.Response: # get model try: model = Model.load(models_id) - except NoResultFound: - return {"message": f"No model with id {models_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {models_id}"}, status.HTTP_404_NOT_FOUND # get body if request.content_type != "application/json": @@ -239,7 +247,7 @@ def validate_shape(models_id: int) -> flask.Response: try: shape_collection = ShapeCollection.load(shape_collection_id) shape_collections.append(shape_collection) - except NoResultFound: + except ShapeCollectionNotFound: nonexistent_shape_collections.append(shape_collection_id) if len(nonexistent_shape_collections) > 0: return { @@ -255,8 +263,8 @@ def validate_shape(models_id: int) -> flask.Response: target_class = URIRef(body.get("target_class")) # test - conformance = model.test_model_against_shapes( - shape_collections=shape_collections, + compiled = model.compile(shape_collections) + conformance = compiled.validate_model_against_shapes( shapes_to_test=shape_uris, target_class=target_class, ) diff --git a/buildingmotif/api/views/template.py b/buildingmotif/api/views/template.py index 74a22578d..595ad3cc2 100644 --- a/buildingmotif/api/views/template.py +++ b/buildingmotif/api/views/template.py @@ -6,9 +6,9 @@ from flask_api import status from rdflib import Literal, URIRef from rdflib.term import Node -from sqlalchemy.orm.exc import NoResultFound from buildingmotif.api.serializers.template import serialize +from buildingmotif.database.errors import ModelNotFound, TemplateNotFound from buildingmotif.dataclasses import Model, Template from buildingmotif.ingresses import CSVIngress, TemplateIngress @@ -42,10 +42,8 @@ def get_template(templates_id: int) -> flask.Response: template = current_app.building_motif.table_connection.get_db_template( templates_id ) - except NoResultFound: - return { - "message": f"No template with id {templates_id}" - }, status.HTTP_404_NOT_FOUND + except TemplateNotFound: + return {"message": f"ID: {templates_id}"}, status.HTTP_404_NOT_FOUND return jsonify(serialize(template, include_parameters)), status.HTTP_200_OK @@ -55,10 +53,8 @@ def evaluate_ingress(template_id: int) -> flask.Response: # get template try: template = Template.load(template_id) - except NoResultFound: - return { - "message": f"No template with id {template_id}" - }, status.HTTP_404_NOT_FOUND + except TemplateNotFound: + return {"message": f"ID: {template_id}"}, status.HTTP_404_NOT_FOUND # get model model_id = request.args.get("model_id") @@ -68,13 +64,13 @@ def evaluate_ingress(template_id: int) -> flask.Response: }, status.HTTP_400_BAD_REQUEST try: model = Model.load(model_id) - except NoResultFound: - return {"message": f"No model with id {model_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {model_id}"}, status.HTTP_404_NOT_FOUND # get file raw_data = flask.request.get_data() if raw_data is None: - return {"message": "no file recieved."}, status.HTTP_404_NOT_FOUND + return {"message": "no file recieved."}, status.HTTP_400_NOT_FOUND # evaluate template try: @@ -107,10 +103,8 @@ def evaluate_bindings(template_id: int) -> flask.Response: """ try: template = Template.load(template_id) - except NoResultFound: - return { - "message": f"No template with id {template_id}" - }, status.HTTP_404_NOT_FOUND + except TemplateNotFound: + return {"message": f"ID: {template_id}"}, status.HTTP_404_NOT_FOUND if request.content_type != "application/json": return { @@ -122,8 +116,8 @@ def evaluate_bindings(template_id: int) -> flask.Response: return {"message": "body must contain 'model_id'"}, status.HTTP_400_BAD_REQUEST try: model = Model.load(model_id) - except NoResultFound: - return {"message": f"No model with id {model_id}"}, status.HTTP_404_NOT_FOUND + except ModelNotFound: + return {"message": f"ID: {model_id}"}, status.HTTP_404_NOT_FOUND bindings = request.get_json().get("bindings") if bindings is None: @@ -141,6 +135,23 @@ def evaluate_bindings(template_id: int) -> flask.Response: return graph.serialize(format="ttl"), status.HTTP_200_OK +@blueprint.route("//body", methods=(["GET"])) +def get_template_body(template_id: int) -> flask.Response: + """Get template body. + + :param template_id: template id + :type template_id: int + :return: template body + :rtype: flask.Response + """ + try: + template: Template = Template.load(template_id) + except TemplateNotFound: + return {"message": f"ID: {template_id}"}, status.HTTP_404_NOT_FOUND + + return template.body.serialize(format="ttl"), status.HTTP_200_OK + + def get_bindings(binding_dict) -> Dict[str, Node]: """type binding_dict values to nodes diff --git a/buildingmotif/building_motif/building_motif.py b/buildingmotif/building_motif/building_motif.py index a01691a0d..73db3370c 100644 --- a/buildingmotif/building_motif/building_motif.py +++ b/buildingmotif/building_motif/building_motif.py @@ -44,7 +44,7 @@ def __init__( :default log_level: INFO """ self.db_uri = db_uri - self.shacl_engine = shacl_engine + self.shacl_engine = shacl_engine or "pyshacl" self.engine = create_engine( db_uri, echo=False, diff --git a/buildingmotif/database/errors.py b/buildingmotif/database/errors.py new file mode 100644 index 000000000..6a969732b --- /dev/null +++ b/buildingmotif/database/errors.py @@ -0,0 +1,57 @@ +from typing import Optional + +# The point of these exceptions is to provide more specific error messages which +# also embed the ID or name of the object that was not found. This is useful for +# debugging and logging purposes. + + +class LibraryNotFound(Exception): + def __init__(self, name: Optional[str] = None, idnum: Optional[int] = None): + self.lib_name = name + self.lib_id = idnum + + def __str__(self): + if self.lib_name: + return f"Name: {self.lib_name}" + return f"ID: {self.lib_id}" + + +class ModelNotFound(Exception): + def __init__(self, name: Optional[str] = None, idnum: Optional[int] = None): + self.model_name = name + self.model_id = idnum + + def __str__(self): + if self.model_name: + return f"Name: {self.model_name}" + return f"ID: {self.model_id}" + + +class ShapeCollectionNotFound(Exception): + def __init__(self, name: Optional[str] = None, idnum: Optional[int] = None): + self.shape_collection_name = name + self.shape_collection_id = idnum + + def __str__(self): + if self.shape_collection_name: + return f"Name: {self.shape_collection_name}" + return f"ID: {self.shape_collection_id}" + + +class TemplateNotFound(Exception): + def __init__(self, name: Optional[str] = None, idnum: Optional[int] = None): + self.template_name = name + self.template_id = idnum + + def __str__(self): + if self.template_name: + return f"Name: {self.template_name}" + return f"ID: {self.template_id}" + + +class TemplateDependencyNotFound(Exception): + def __init__(self, idnum: int): + self.template_dependency_id = idnum + + def __str__(self): + return f"ID: {self.template_dependency_id}" diff --git a/buildingmotif/database/table_connection.py b/buildingmotif/database/table_connection.py index b1ce2f7a9..e7a82fd84 100644 --- a/buildingmotif/database/table_connection.py +++ b/buildingmotif/database/table_connection.py @@ -1,17 +1,23 @@ import logging import uuid from functools import lru_cache -from typing import Dict, List, Tuple +from typing import Dict, List, Optional, Tuple from sqlalchemy.engine import Engine from sqlalchemy.exc import NoResultFound +from buildingmotif.database.errors import ( + LibraryNotFound, + ModelNotFound, + ShapeCollectionNotFound, + TemplateNotFound, +) from buildingmotif.database.tables import ( DBLibrary, DBModel, DBShapeCollection, DBTemplate, - DepsAssociation, + DBTemplateDependency, ) @@ -76,7 +82,10 @@ def get_db_model(self, id: int) -> DBModel: :return: DBModel :rtype: DBModel """ - db_model = self.bm.session.query(DBModel).filter(DBModel.id == id).one() + try: + db_model = self.bm.session.query(DBModel).filter(DBModel.id == id).one() + except NoResultFound: + raise ModelNotFound(idnum=id) return db_model def get_db_model_by_name(self, name: str) -> DBModel: @@ -157,11 +166,14 @@ def get_db_shape_collection(self, id: int) -> DBShapeCollection: :return: DBShapeCollection :rtype: DBShapeCollection """ - return ( - self.bm.session.query(DBShapeCollection) - .filter(DBShapeCollection.id == id) - .one() - ) + try: + return ( + self.bm.session.query(DBShapeCollection) + .filter(DBShapeCollection.id == id) + .one() + ) + except NoResultFound: + raise ShapeCollectionNotFound(idnum=id) def delete_db_shape_collection(self, id: int) -> None: """Delete database shape collection. @@ -169,12 +181,7 @@ def delete_db_shape_collection(self, id: int) -> None: :param id: id of deleted DBShapeCollection :type id: int """ - db_shape_collection = ( - self.bm.session.query(DBShapeCollection) - .filter(DBShapeCollection.id == id) - .one() - ) - + db_shape_collection = self.get_db_shape_collection(id) self.bm.session.delete(db_shape_collection) # library functions @@ -216,7 +223,12 @@ def get_db_library(self, id: int) -> DBLibrary: :return: DBLibrary :rtype: DBLibrary """ - db_library = self.bm.session.query(DBLibrary).filter(DBLibrary.id == id).one() + try: + db_library = ( + self.bm.session.query(DBLibrary).filter(DBLibrary.id == id).one() + ) + except NoResultFound: + raise LibraryNotFound(idnum=id) return db_library def get_db_library_by_name(self, name: str) -> DBLibrary: @@ -227,7 +239,10 @@ def get_db_library_by_name(self, name: str) -> DBLibrary: :return: DBLibrary :rtype: DBLibrary """ - return self.bm.session.query(DBLibrary).filter(DBLibrary.name == name).one() + try: + return self.bm.session.query(DBLibrary).filter(DBLibrary.name == name).one() + except NoResultFound: + raise LibraryNotFound(name=name) def update_db_library_name(self, id: int, name: str) -> None: """Update database library name. @@ -272,7 +287,7 @@ def create_db_template(self, name: str, library_id: int) -> DBTemplate: template = DBTemplate( name=name, body_id=str(uuid.uuid4()), - optional_args=[], + optional_args=[], # type: ignore library=library, ) @@ -298,9 +313,12 @@ def get_db_template(self, id: int) -> DBTemplate: :return: DBTemplate :rtype: DBTemplate """ - db_template = ( - self.bm.session.query(DBTemplate).filter(DBTemplate.id == id).one() - ) + try: + db_template = ( + self.bm.session.query(DBTemplate).filter(DBTemplate.id == id).one() + ) + except NoResultFound: + raise TemplateNotFound(idnum=id) return db_template def get_db_template_by_name(self, name: str) -> DBTemplate: @@ -316,7 +334,7 @@ def get_db_template_by_name(self, name: str) -> DBTemplate: self.bm.session.query(DBTemplate).filter(DBTemplate.name == name).one() ) except NoResultFound: - raise NoResultFound(f"No template found with name {name}") + raise TemplateNotFound(name=name) return db_template def get_library_defining_db_template(self, id: int) -> DBLibrary: @@ -329,7 +347,7 @@ def get_library_defining_db_template(self, id: int) -> DBLibrary: """ return self.get_db_template(id).library - def get_db_template_dependencies(self, id: int) -> Tuple[DepsAssociation, ...]: + def get_db_template_dependencies(self, id: int) -> Tuple[DBTemplateDependency, ...]: """Get a template's dependencies and its arguments. If you don't need the arguments, consider using @@ -342,12 +360,28 @@ def get_db_template_dependencies(self, id: int) -> Tuple[DepsAssociation, ...]: :rtype: tuple[tuple[int, list[str]]] """ db_template_dependencies = tuple( - self.bm.session.query(DepsAssociation) - .filter(DepsAssociation.dependant_id == id) + self.bm.session.query(DBTemplateDependency) + .filter(DBTemplateDependency.template_id == id) .all() ) return db_template_dependencies + def get_db_template_dependency(self, id: int) -> Optional[DBTemplateDependency]: + """Get template dependency object by its id + + :param id: template dependency id + :type id: int + :return: the template dependency or None + :rtype: Optional[DBTemplateDependency]""" + try: + return ( + self.bm.session.query(DBTemplateDependency) + .filter(DBTemplateDependency.id == id) + .one() + ) + except NoResultFound: + return None + def update_db_template_name(self, id: int, name: str) -> None: """Update database template name. @@ -378,7 +412,11 @@ def update_db_template_optional_args( db_template.optional_args = optional_args def add_template_dependency_preliminary( - self, template_id: int, dependency_id: int, args: Dict[str, str] + self, + template_id: int, + dependency_library: str, + dependency_template: str, + args: Dict[str, str], ): """Creates a *preliminary* dependency between two templates. This dependency is preliminary because the bindings between the dependent/dependency templates @@ -403,7 +441,7 @@ def add_template_dependency_preliminary( :raises ValueError: if dependant and dependency template don't share a """ self.logger.debug( - f"Creating depencency from templates with ids: '{template_id}' and: '{dependency_id}'" + f"Creating depencency from templates with id: '{template_id}' and target: '{dependency_library}:{dependency_template}'" ) templ = self.get_db_template(template_id) if "name" not in args.keys(): @@ -413,14 +451,16 @@ def add_template_dependency_preliminary( # In the past we had a check here to make sure the two templates were in the same library. # This has been removed because it wasn't actually necessary, but we may add it back in # in the future. - relationship = DepsAssociation( - dependant_id=template_id, - dependee_id=dependency_id, - args=args, + relationship = DBTemplateDependency( + template_id=template_id, + dependency_library_name=dependency_library, + dependency_template_name=dependency_template, + args=args, # type: ignore ) self.bm.session.add(relationship) self.bm.session.flush() + self.logger.debug(f"Created Dependency with id: '{relationship.id}'") def check_all_template_dependencies(self): """ @@ -435,7 +475,7 @@ def check_all_template_dependencies(self): self.check_template_dependency_relationship(dep) @lru_cache(maxsize=128) - def check_template_dependency_relationship(self, dep: DepsAssociation): + def check_template_dependency_relationship(self, dep: DBTemplateDependency): """Verify that the dependency between two templates is well-formed. This involves a series of checks: - existence of the dependent and dependency templates is performed during the @@ -451,17 +491,17 @@ def check_template_dependency_relationship(self, dep: DepsAssociation): :raises ValueError: if dependant and dependency template don't share a library """ - template_id = dep.dependant_id - dependency_id = dep.dependee_id + template_id = dep.template_id args = dep.args self.logger.debug( - f"Creating depencency from templates with ids: '{template_id}' and: '{dependency_id}'" + f"Creating depencency from templates with ids: '{template_id}' and: '{dep.dependency_template_name}'" ) from buildingmotif.dataclasses import Template templ = Template.load(template_id) params = templ.transitive_parameters - dep_templ = Template.load(dependency_id) + + dep_templ = Template.load(dep.dependency_template.id) dep_params = dep_templ.transitive_parameters # check parameters are valid @@ -502,11 +542,16 @@ def delete_template_dependency(self, template_id: int, dependency_id: int): f"Deleting depencency from templates with ids: '{template_id}' and: '{dependency_id}'" # noqa ) + dependency_template = self.get_db_template(dependency_id) + relationship = ( - self.bm.session.query(DepsAssociation) + self.bm.session.query(DBTemplateDependency) .filter( - DepsAssociation.dependant_id == template_id, - DepsAssociation.dependee_id == dependency_id, + DBTemplateDependency.template_id == template_id, + DBTemplateDependency.dependency_library_name + == dependency_template.library.name, + DBTemplateDependency.dependency_template_name + == dependency_template.name, ) .one() ) diff --git a/buildingmotif/database/tables.py b/buildingmotif/database/tables.py index b2fdd6b31..a06727c24 100644 --- a/buildingmotif/database/tables.py +++ b/buildingmotif/database/tables.py @@ -1,7 +1,19 @@ -from typing import Dict, List - -from sqlalchemy import Column, ForeignKey, Integer, String, Text, UniqueConstraint -from sqlalchemy.orm import Mapped, declarative_base, relationship +from typing import Dict, List, Optional + +from sqlalchemy import ( + Column, + ForeignKey, + Integer, + String, + Text, + UniqueConstraint, + event, + select, +) +from sqlalchemy.engine import Engine +from sqlalchemy.exc import NoResultFound +from sqlalchemy.ext.hybrid import hybrid_property +from sqlalchemy.orm import Mapped, Session, declarative_base, relationship # from sqlalchemy.dialects.postgresql import JSON from buildingmotif.database.utils import JSONType @@ -9,6 +21,14 @@ Base = declarative_base() +# https://docs.sqlalchemy.org/en/14/dialects/sqlite.html#foreign-key-support +@event.listens_for(Engine, "connect") +def set_sqlite_pragma(dbapi_connection, connection_record): + cursor = dbapi_connection.cursor() + cursor.execute("PRAGMA foreign_keys=ON") + cursor.close() + + class DBModel(Base): """A Model is a metadata model of all or part of a building.""" @@ -18,12 +38,13 @@ class DBModel(Base): description: Mapped[str] = Column(Text(), default="", nullable=False) graph_id: Mapped[str] = Column(String()) manifest_id: Mapped[int] = Column( - Integer, ForeignKey("shape_collection.id"), nullable=False + Integer, ForeignKey("shape_collection.id", ondelete="CASCADE"), nullable=False ) manifest: "DBShapeCollection" = relationship( "DBShapeCollection", uselist=False, - cascade="all,delete", + cascade="all", + passive_deletes=True, ) @@ -44,38 +65,19 @@ class DBLibrary(Base): id: Mapped[int] = Column(Integer, primary_key=True) name: Mapped[str] = Column(String(), nullable=False, unique=True) + # do not use passive_deletes here because we want to handle the deletion of templates templates: Mapped[List["DBTemplate"]] = relationship( - "DBTemplate", back_populates="library", cascade="all,delete" + "DBTemplate", back_populates="library", cascade="all" ) shape_collection_id = Column( - Integer, ForeignKey("shape_collection.id"), nullable=False + Integer, ForeignKey("shape_collection.id", ondelete="CASCADE"), nullable=False ) shape_collection: DBShapeCollection = relationship( "DBShapeCollection", uselist=False, - cascade="all,delete", - ) - - -class DepsAssociation(Base): - """Many-to-many relationship between dependant templates.""" - - __tablename__ = "deps_association_table" - - id: Mapped[int] = Column(Integer, primary_key=True) - dependant_id: Mapped[int] = Column(ForeignKey("template.id")) - dependee_id: Mapped[int] = Column(ForeignKey("template.id")) - # args are a mapping of dependee args to dependant args - args: Mapped[Dict[str, str]] = Column(JSONType) # type: ignore - - __table_args__ = ( - UniqueConstraint( - "dependant_id", - "dependee_id", - "args", - name="deps_association_unique_constraint", - ), + cascade="all", + passive_deletes=True, ) @@ -89,21 +91,13 @@ class DBTemplate(Base): body_id: Mapped[str] = Column(String()) optional_args: Mapped[List[str]] = Column(JSONType) # type: ignore - library_id: Mapped[int] = Column(Integer, ForeignKey("library.id"), nullable=False) - library: Mapped[DBLibrary] = relationship("DBLibrary", back_populates="templates") - dependencies: Mapped[List["DBTemplate"]] = relationship( - "DBTemplate", - secondary="deps_association_table", - primaryjoin=id == DepsAssociation.dependant_id, - secondaryjoin=id == DepsAssociation.dependee_id, - back_populates="dependants", + library_id: Mapped[int] = Column( + Integer, ForeignKey("library.id", ondelete="CASCADE"), nullable=False ) - dependants: Mapped[List["DBTemplate"]] = relationship( - "DBTemplate", - secondary="deps_association_table", - primaryjoin=id == DepsAssociation.dependee_id, - secondaryjoin=id == DepsAssociation.dependant_id, - back_populates="dependencies", + library: Mapped[DBLibrary] = relationship("DBLibrary", back_populates="templates") + + dependencies: Mapped["DBTemplateDependency"] = relationship( + "DBTemplateDependency", back_populates="template", cascade="all,delete-orphan" ) __table_args__ = ( @@ -113,3 +107,58 @@ class DBTemplate(Base): name="name_library_unique_constraint", ), ) + + +class DBTemplateDependency(Base): + __tablename__ = "template_dependency" + id: Mapped[int] = Column(Integer, primary_key=True) + + template_id: Mapped[int] = Column( + Integer, ForeignKey("template.id", ondelete="CASCADE"), nullable=False + ) + template: Mapped[DBTemplate] = relationship( + DBTemplate, back_populates="dependencies" + ) + + dependency_library_name: Mapped[str] = Column(String, nullable=False) + dependency_template_name: Mapped[str] = Column(String, nullable=False) + + # args are a mapping of dependee args to dependant args + args: Mapped[Dict[str, str]] = Column(JSONType) # type: ignore + + @hybrid_property + def dependency_template(self) -> Optional[DBTemplate]: + session = Session.object_session(self) + statement = ( + select(DBTemplate) + .join(DBTemplate.library) + .where( + DBTemplate.name == self.dependency_template_name, + DBLibrary.name == self.dependency_library_name, + ) + ) + try: + return session.scalars(statement).one() + except NoResultFound: + return None + + @dependency_template.expression + def _dependency_tempalate(self): + return ( + select(DBTemplate) + .join(DBTemplate.library) + .where( + DBTemplate.name == self.dependency_template_name, + DBLibrary.name == self.dependency_library_name, + ) + ) + + __table_args__ = ( + UniqueConstraint( + "template_id", + "dependency_library_name", + "dependency_template_name", + "args", + name="template_dependency_unique_constraint", + ), + ) diff --git a/buildingmotif/dataclasses/compiled_model.py b/buildingmotif/dataclasses/compiled_model.py new file mode 100644 index 000000000..ad56e4fe4 --- /dev/null +++ b/buildingmotif/dataclasses/compiled_model.py @@ -0,0 +1,224 @@ +from dataclasses import dataclass +from functools import cached_property +from typing import Dict, List, Optional + +import pandas as pd +import rdflib +import rdflib.query +from rdflib import URIRef + +from buildingmotif.dataclasses.model import Model +from buildingmotif.dataclasses.shape_collection import ShapeCollection +from buildingmotif.dataclasses.validation import ValidationContext +from buildingmotif.namespaces import OWL, SH, A +from buildingmotif.utils import ( + copy_graph, + rewrite_shape_graph, + shacl_inference, + shacl_validate, + skolemize_shapes, +) + + +@dataclass +class CompiledModel: + """ + This class represents a model that has been compiled against a set of ShapeCollections. + """ + + model: Model + shape_collections: List[ShapeCollection] + _compiled_graph: rdflib.Graph + + def __init__( + self, + model: Model, + shape_collections: List[ShapeCollection], + compiled_graph: rdflib.Graph, + shacl_engine: str = "default", + ): + self.model = model + self.shape_collections = shape_collections + ontology_graph = rdflib.Graph() + for shape_collection in shape_collections: + ontology_graph += shape_collection.graph + + ontology_graph = skolemize_shapes(ontology_graph) + + shacl_engine = ( + self.model._bm.shacl_engine + if (shacl_engine == "default" or not shacl_engine) + else shacl_engine + ) + + self._compiled_graph = shacl_inference( + compiled_graph, ontology_graph, shacl_engine + ) + + @cached_property + def graph(self) -> rdflib.Graph: + g = copy_graph(self._compiled_graph) + for shape_collection in self.shape_collections: + g += shape_collection.graph + return g + + def validate_model_against_shapes( + self, + shapes_to_test: List[rdflib.URIRef], + target_class: rdflib.URIRef, + ) -> Dict[rdflib.URIRef, "ValidationContext"]: + """Validates the model against a list of shapes and generates a + validation report for each. + + :param shapes_to_test: list of shape URIs to validate the model against + :type shapes_to_test: List[URIRef] + :param target_class: the class upon which to run the selected shapes + :type target_class: URIRef + :return: a dictionary that relates each shape to test URIRef to a + ValidationContext + :rtype: Dict[URIRef, ValidationContext] + """ + model_graph = copy_graph(self._compiled_graph) + + results = {} + + targets = model_graph.query( + f""" + PREFIX rdf: + PREFIX rdfs: + SELECT ?target + WHERE {{ + ?target rdf:type/rdfs:subClassOf* <{target_class}> + + }} + """ + ) + # skolemize the shape graph so we have consistent identifiers across + # validation through the interpretation of the validation report + ontology_graph = self.graph.skolemize() + + for shape_uri in shapes_to_test: + temp_model_graph = copy_graph(model_graph) + for (s,) in targets: + temp_model_graph.add((URIRef(s), A, shape_uri)) + + valid, report_g, report_str = shacl_validate( + temp_model_graph, ontology_graph, engine=self.model._bm.shacl_engine + ) + + results[shape_uri] = ValidationContext( + self.shape_collections, + ontology_graph, + valid, + report_g, + report_str, + self.model, + ) + + return results + + def validate( + self, + error_on_missing_imports: bool = True, + ) -> "ValidationContext": + """Validates this model against the given list of ShapeCollections. + If no list is provided, the model will be validated against the model's "manifest". + If a list of shape collections is provided, the manifest will *not* be automatically + included in the set of shape collections. + + Loads all of the ShapeCollections into a single graph. + + :param error_on_missing_imports: if True, raises an error if any of the dependency + ontologies are missing (i.e. they need to be loaded into BuildingMOTIF), defaults + to True + :type error_on_missing_imports: bool, optional + :return: An object containing useful properties/methods to deal with + the validation results + :rtype: ValidationContext + """ + # TODO: determine the return types; At least a bool for valid/invalid, + # but also want a report. Is this the base pySHACL report? Or a useful + # transformation, like a list of deltas for potential fixes? + shapeg = copy_graph(self._compiled_graph) + # aggregate shape graphs + for sc in self.shape_collections: + shapeg += sc.resolve_imports( + error_on_missing_imports=error_on_missing_imports + ).graph + # inline sh:node for interpretability + shapeg = rewrite_shape_graph(shapeg) + + # remove imports from sg + shapeg.remove((None, OWL.imports, None)) + + # skolemize the shape graph so we have consistent identifiers across + # validation through the interpretation of the validation report + shapeg = skolemize_shapes(shapeg) + + # remove imports from data graph + shapeg.remove((None, OWL.imports, None)) + + # validate the data graph + valid, report_g, report_str = shacl_validate( + shapeg, engine=self.model._bm.shacl_engine + ) + return ValidationContext( + self.shape_collections, + shapeg, + valid, + report_g, + report_str, + self.model, + ) + + def defining_shape_collection( + self, shape: rdflib.URIRef + ) -> Optional[ShapeCollection]: + """ + Given a shape, return the ShapeCollection that defines it. The search is limited to the + ShapeCollections that were used to compile this model. + + :param shape: the shape to search for + :type shape: rdflib.URIRef + :return: the ShapeCollection that defines the shape, or None if the shape is not defined + :rtype: Optional[ShapeCollection] + """ + for sc in self.shape_collections: + if (shape, A, SH.NodeShape) in sc.graph: + return sc + return None + + def shape_to_table(self, shape: rdflib.URIRef, table: str, conn): + """ + Turn the shape into a SPARQL query and execute it on the model's graph, storing the results in a table. + + :param shape: the shape to query + :type shape: rdflib.URIRef + :param table: the name of the table to store the results in + :type table: str + :param conn: the connection to the database + :type conn: sqlalchemy.engine.base.Connection + """ + metadata = self.shape_to_df(shape) + metadata.to_sql(table, conn, if_exists="replace", index=False) + + def shape_to_df(self, shape: rdflib.URIRef) -> pd.DataFrame: + """ + Turn the shape into a SPARQL query and execute it on the model's graph, storing the results in a dataframe. + + :param shape: the shape to query + :type shape: rdflib.URIRef + :return: the results of the query + :rtype: pd.DataFrame + """ + defining_sc = self.defining_shape_collection(shape) + if defining_sc is None: + raise ValueError( + f"Shape {shape} is not defined in any of the shape collections" + ) + query = defining_sc.shape_to_query(shape) + metadata = pd.DataFrame(self.graph.query(query).bindings, dtype="string") + # metadata.columns will be rdflib.term.Variable objects, so we need to convert them to strings + metadata.columns = [str(col) for col in metadata.columns] + # convert the rdflib terms to Python types + return metadata.map(lambda x: x.toPython()) diff --git a/buildingmotif/dataclasses/library.py b/buildingmotif/dataclasses/library.py index d12afa07b..7433c1851 100644 --- a/buildingmotif/dataclasses/library.py +++ b/buildingmotif/dataclasses/library.py @@ -2,11 +2,10 @@ import pathlib import tempfile from dataclasses import dataclass -from typing import TYPE_CHECKING, Any, Dict, List, Mapping, Optional, Union +from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union import pygit2 import rdflib -import sqlalchemy import yaml from pkg_resources import resource_exists, resource_filename from rdflib.exceptions import ParserError @@ -14,80 +13,18 @@ from rdflib.util import guess_format from buildingmotif import get_building_motif +from buildingmotif.database.errors import LibraryNotFound from buildingmotif.database.tables import DBLibrary, DBTemplate from buildingmotif.dataclasses.shape_collection import ShapeCollection from buildingmotif.dataclasses.template import Template from buildingmotif.schemas import validate_libraries_yaml from buildingmotif.template_compilation import compile_template_spec -from buildingmotif.utils import ( - copy_graph, - get_ontology_files, - get_template_parts_from_shape, - shacl_inference, - skip_uri, -) +from buildingmotif.utils import get_ontology_files, shacl_inference if TYPE_CHECKING: from buildingmotif import BuildingMOTIF -@dataclass -class _template_dependency: - """Represents early-bound (template_id) or late-bound (template_name and - library) dependency of a template on another template. - """ - - template_name: str - bindings: Dict[str, Any] - library: str - template_id: Optional[int] = None - - def __repr__(self): - return ( - f"dep" - ) - - @classmethod - def from_dict( - cls, d: Dict[str, Any], dependent_library_name: str - ) -> "_template_dependency": - """Creates a py:class:`_template_dependency` from a dictionary. - - :param d: dictionary - :type d: Dict[str, Any] - :param dependent_library_name: library name - :type dependent_library_name: str - :return: the _template_dependency from the dict - :rtype: _template_dependency - """ - template_name = d["template"] - bindings = d.get("args", {}) - library = d.get("library", dependent_library_name) - template_id = d.get("template_id") - return cls(template_name, bindings, library, template_id) - - def to_template(self, id_lookup: Dict[str, int]) -> Template: - """Resolve this dependency to a template. - - :param id_lookup: a local cache of {name: id} for uncommitted templates - :type id_lookup: Dict[str, int] - :return: the template instance this dependency points to - :rtype: Template - """ - # direct lookup if id is provided - if self.template_id is not None: - return Template.load(self.template_id) - # if id is not provided, look at our local 'cache' of to-be-committed - # templates for the id (id_lookup) - if self.template_name in id_lookup: - return Template.load(id_lookup[self.template_name]) - # if not in the local cache, then search the database for the template - # within the given library - library = Library.load(name=self.library) - return library.get_template_by_name(self.template_name) - - @dataclass class Library: """This class mirrors :py:class:`database.tables.DBLibrary`.""" @@ -116,7 +53,7 @@ def create(cls, name: str, overwrite: Optional[bool] = True) -> "Library": logging.warning( f'Library {name} already exists in database. To ovewrite load library with "overwrite=True"' # noqa ) - except sqlalchemy.exc.NoResultFound: + except LibraryNotFound: db_library = bm.table_connection.create_db_library(name) return cls(_id=db_library.id, _name=db_library.name, _bm=bm) @@ -282,54 +219,17 @@ def _load_from_ontology( lib = cls.create(ontology_name, overwrite=overwrite) - if infer_templates: - # infer shapes from any class/nodeshape candidates in the graph - lib._infer_templates_from_graph(ontology) - # load the ontology graph as a shape_collection shape_col_id = lib.get_shape_collection().id assert shape_col_id is not None # should always pass shape_col = ShapeCollection.load(shape_col_id) shape_col.add_graph(ontology) - return lib - - def _infer_templates_from_graph(self, graph: rdflib.Graph): - """Infer templates from a graph (by interpreting shapes) and add them to this library. - - :param graph: graph to infer templates from - :type graph: rdflib.Graph - """ - # add all imports to the same graph so we can resolve everything - imports_closure = copy_graph(graph) - # import dependencies into 'graph' - # get all imports from the graph - for dependency in graph.objects(predicate=rdflib.OWL.imports): - # attempt to load from BuildingMOTIF - try: - lib = Library.load(name=str(dependency)) - imports_closure += lib.get_shape_collection().graph - except Exception as e: # TODO: replace with a more specific exception - logging.warning( - f"An ontology could not resolve a dependency on {dependency} ({e}). Check this is loaded into BuildingMOTIF" - ) - continue - class_candidates = set(graph.subjects(rdflib.RDF.type, rdflib.OWL.Class)) - shape_candidates = set(graph.subjects(rdflib.RDF.type, rdflib.SH.NodeShape)) - candidates = class_candidates.intersection(shape_candidates) - template_id_lookup: Dict[str, int] = {} - dependency_cache: Dict[int, List[Dict[Any, Any]]] = {} - for candidate in candidates: - assert isinstance(candidate, rdflib.URIRef) - # TODO: mincount 0 (or unspecified) should be optional args on the generated template - partial_body, deps = get_template_parts_from_shape( - candidate, imports_closure - ) - templ = self.create_template(str(candidate), partial_body) - dependency_cache[templ.id] = deps - template_id_lookup[str(candidate)] = templ.id + if infer_templates: + # infer shapes from any class/nodeshape candidates in the graph + shape_col.infer_templates(lib) - self._resolve_template_dependencies(template_id_lookup, dependency_cache) + return lib def _load_shapes_from_directory( self, @@ -364,7 +264,7 @@ def _load_shapes_from_directory( ) # infer shapes from any class/nodeshape candidates in the graph if infer_templates: - self._infer_templates_from_graph(shape_col.graph) + shape_col.infer_templates(self) @classmethod def _load_from_directory( @@ -403,18 +303,12 @@ def _load_from_directory( lib = cls.create(directory.name, overwrite=overwrite) - # setup caches for reading templates - template_id_lookup: Dict[str, int] = {} - dependency_cache: Dict[int, List[_template_dependency]] = {} - # read all .yml files for file in directory.rglob("*.yml"): # if .ipynb_checkpoints, skip; these are cached files that Jupyter creates if ".ipynb_checkpoints" in file.parts: continue - lib._read_yml_file(file, template_id_lookup, dependency_cache) - # now that we have all the templates, we can populate the dependencies - lib._resolve_template_dependencies(template_id_lookup, dependency_cache) + lib._read_yml_file(file) # load shape collections from all ontology files in the directory lib._load_shapes_from_directory(directory) @@ -445,89 +339,10 @@ def _library_exists(library_name: str) -> bool: try: bm.table_connection.get_db_library_by_name(library_name) return True - except sqlalchemy.exc.NoResultFound: + except LibraryNotFound: return False - def _resolve_dependency( - self, - template: Template, - dep: Union[_template_dependency, dict], - template_id_lookup: Dict[str, int], - ): - """Resolve a dependency to a template. - - :param template: template to resolve dependency for - :type template: Template - :param dep: dependency - :type dep: Union[_template_dependency, dict] - :param template_id_lookup: a local cache of {name: id} for uncommitted templates - :type template_id_lookup: Dict[str, int] - :return: the template instance this dependency points to - :rtype: Template - """ - # if dep is a _template_dependency, turn it into a template - if isinstance(dep, _template_dependency): - dependee = dep.to_template(template_id_lookup) - template.add_dependency(dependee, dep.bindings) - return - - # now, we know that dep is a dict - - # if dependency names a library explicitly, load that library and get the template by name - if "library" in dep: - dependee = Library.load(name=dep["library"]).get_template_by_name( - dep["template"] - ) - template.add_dependency(dependee, dep["args"]) - return - # if no library is provided, try to resolve the dependency from this library - if dep["template"] in template_id_lookup: - dependee = Template.load(template_id_lookup[dep["template"]]) - template.add_dependency(dependee, dep["args"]) - return - # check documentation for skip_uri for what URIs get skipped - if skip_uri(dep["template"]): - return - - # if the dependency is not in the local cache, then search through this library's imports - # for the template - for imp in self.graph_imports: - try: - library = Library.load(name=str(imp)) - dependee = library.get_template_by_name(dep["template"]) - template.add_dependency(dependee, dep["args"]) - return - except Exception as e: - logging.debug( - f"Could not find dependee {dep['template']} in library {imp}: {e}" - ) - logging.warning( - f"Warning: could not find dependee {dep['template']} in libraries {self.graph_imports}" - ) - - def _resolve_template_dependencies( - self, - template_id_lookup: Dict[str, int], - dependency_cache: Mapping[int, Union[List[_template_dependency], List[dict]]], - ): - """Resolve all dependencies for all templates in this library""" - # two phases here: first, add all of the templates and their dependencies - # to the database but *don't* check that the dependencies are valid yet - for template in self.get_templates(): - if template.id not in dependency_cache: - continue - for dep in dependency_cache[template.id]: - self._resolve_dependency(template, dep, template_id_lookup) - # check that all dependencies are valid (use parameters that exist, etc) - for template in self.get_templates(): - template.check_dependencies() - - def _read_yml_file( - self, - file: pathlib.Path, - template_id_lookup: Dict[str, int], - dependency_cache: Dict[int, List[_template_dependency]], - ): + def _read_yml_file(self, file: pathlib.Path): """Read a YML file into this library. Utility function for `_load_from_directory`.""" contents = yaml.load(open(file, "r"), Loader=yaml.FullLoader) for templ_name, templ_spec in contents.items(): @@ -536,20 +351,14 @@ def _read_yml_file( # input name of template templ_spec.update({"name": templ_name}) # remove dependencies so we can resolve them to their IDs later - deps = [ - _template_dependency.from_dict(d, self.name) - for d in templ_spec.pop("dependencies", []) - ] templ_spec["optional_args"] = templ_spec.pop("optional", []) try: - templ = self.create_template(**templ_spec) + self.create_template(**templ_spec) except Exception as e: logging.error( f"Error creating template {templ_name} from file {file}: {e}" ) raise e - dependency_cache[templ.id] = deps - template_id_lookup[templ.name] = templ.id @property def id(self) -> Optional[int]: @@ -585,6 +394,7 @@ def create_template( name: str, body: Optional[rdflib.Graph] = None, optional_args: Optional[List[str]] = None, + dependencies: Optional[List] = None, ) -> Template: """Create template in this library. @@ -609,6 +419,22 @@ def create_template( db_template.id, optional_args ) + if dependencies is not None: + for dependency in dependencies: + dependency_template = dependency["template"] + dependency_library = None + if "library" in dependency: + dependency_library = dependency["library"] + else: + dependency_library = self.name + dependency_args = dependency["args"] + self._bm.table_connection.add_template_dependency_preliminary( + db_template.id, + dependency_library, + dependency_template, + dependency_args, + ) + return Template( _id=db_template.id, _name=db_template.name, diff --git a/buildingmotif/dataclasses/model.py b/buildingmotif/dataclasses/model.py index 74b0eda55..bdd8166be 100644 --- a/buildingmotif/dataclasses/model.py +++ b/buildingmotif/dataclasses/model.py @@ -1,25 +1,19 @@ from dataclasses import dataclass -from typing import TYPE_CHECKING, Dict, List, Optional +from functools import cached_property +from typing import TYPE_CHECKING, List, Optional import rdflib +import rdflib.query import rfc3987 -from rdflib import URIRef from buildingmotif import get_building_motif from buildingmotif.dataclasses.shape_collection import ShapeCollection from buildingmotif.dataclasses.validation import ValidationContext -from buildingmotif.namespaces import OWL, A -from buildingmotif.utils import ( - Triple, - copy_graph, - rewrite_shape_graph, - shacl_inference, - shacl_validate, - skolemize_shapes, -) +from buildingmotif.utils import Triple, copy_graph, shacl_inference, skolemize_shapes if TYPE_CHECKING: from buildingmotif import BuildingMOTIF + from buildingmotif.dataclasses.compiled_model import CompiledModel def _validate_uri(uri: str): @@ -37,7 +31,7 @@ class Model: _id: int _name: str _description: str - graph: rdflib.Graph + _graph: rdflib.Graph _bm: "BuildingMOTIF" _manifest_id: int @@ -52,24 +46,68 @@ def create(cls, name: str, description: str = "") -> "Model": :return: new model :rtype: Model """ + _validate_uri(name) + g = rdflib.Graph() + g.add((rdflib.URIRef(name), rdflib.RDF.type, rdflib.OWL.Ontology)) + if description: + g.add( + (rdflib.URIRef(name), rdflib.RDFS.comment, rdflib.Literal(description)) + ) + return cls.from_graph(g) + + @classmethod + def from_graph(cls, graph: rdflib.Graph) -> "Model": + """Create a new model from a graph. The name of the model is taken from the + ontology declaration in the graph (subject of rdf:type owl:Ontology triple). + The description of the model can be set through an RDFS comment on the ontology + + :param graph: graph to create model from + :type graph: rdflib.Graph + :return: new model + :rtype: Model + """ bm = get_building_motif() + name = graph.value(predicate=rdflib.RDF.type, object=rdflib.OWL.Ontology) + if name is None: + raise ValueError("Graph does not contain an ontology declaration") _validate_uri(name) + + # the 'description' is the rdfs:comment of the ontology + description = graph.value(name, rdflib.RDFS.comment) + description = str(description) if description is not None else "" + db_model = bm.table_connection.create_db_model(name, description) - g = rdflib.Graph() - g.add((rdflib.URIRef(name), rdflib.RDF.type, rdflib.OWL.Ontology)) - graph = bm.graph_connection.create_graph(db_model.graph_id, g) + graph = bm.graph_connection.create_graph(db_model.graph_id, graph) + # below, we normalize the name to a string so it matches the database type return cls( _id=db_model.id, - _name=db_model.name, + _name=str(db_model.name), _description=db_model.description, - graph=graph, + _graph=graph, _bm=bm, _manifest_id=db_model.manifest_id, ) + @classmethod + def from_file(cls, url_or_path: str) -> "Model": + """Create a new model from a file. + + :param url_or_path: url or path to file + :type url_or_path: str + :return: new model + :rtype: Model + """ + graph = rdflib.Graph() + # if guess_format doesn't match anything, it will return None, + # which tells graph.parse to guess 'turtle' + + # if graph parsing fails, it will raise an exception + graph.parse(url_or_path, format=rdflib.util.guess_format(url_or_path)) + return cls.from_graph(graph) + @classmethod def load(cls, id: Optional[int] = None, name: Optional[str] = None) -> "Model": """Get model from database by id or name. @@ -95,7 +133,7 @@ def load(cls, id: Optional[int] = None, name: Optional[str] = None) -> "Model": _id=db_model.id, _name=db_model.name, _description=db_model.description, - graph=graph, + _graph=graph, _bm=bm, _manifest_id=db_model.manifest_id, ) @@ -108,6 +146,10 @@ def id(self) -> Optional[int]: def id(self, new_id): raise AttributeError("Cannot modify db id") + @cached_property + def graph(self) -> rdflib.Graph: + return self._graph + @property def name(self): return self._name @@ -147,6 +189,7 @@ def validate( self, shape_collections: Optional[List[ShapeCollection]] = None, error_on_missing_imports: bool = True, + shacl_engine: Optional[str] = None, ) -> "ValidationContext": """Validates this model against the given list of ShapeCollections. If no list is provided, the model will be validated against the model's "manifest". @@ -165,59 +208,35 @@ def validate( :type error_on_missing_imports: bool, optional :return: An object containing useful properties/methods to deal with the validation results + :param shacl_engine: the SHACL engine to use for validation, defaults to whatever + is set in the BuildingMOTIF object + :type shacl_engine: str, optional + :rtype: ValidationContext """ - # TODO: determine the return types; At least a bool for valid/invalid, - # but also want a report. Is this the base pySHACL report? Or a useful - # transformation, like a list of deltas for potential fixes? - shapeg = rdflib.Graph() - if shape_collections is None or len(shape_collections) == 0: - shape_collections = [self.get_manifest()] - # aggregate shape graphs - for sc in shape_collections: - shapeg += sc.resolve_imports( - error_on_missing_imports=error_on_missing_imports - ).graph - # inline sh:node for interpretability - shapeg = rewrite_shape_graph(shapeg) - - # remove imports from sg - shapeg.remove((None, OWL.imports, None)) - - # skolemize the shape graph so we have consistent identifiers across - # validation through the interpretation of the validation report - shapeg = skolemize_shapes(shapeg) - - # TODO: do we want to preserve the materialized triples added to data_graph via reasoning? - data_graph = copy_graph(self.graph) - - # remove imports from data graph - data_graph.remove((None, OWL.imports, None)) - - # validate the data graph - valid, report_g, report_str = shacl_validate( - data_graph, shapeg, engine=self._bm.shacl_engine - ) - return ValidationContext( - shape_collections, - shapeg, - valid, - report_g, - report_str, - self, - ) + compiled_model = self.compile(shape_collections or [self.get_manifest()]) + return compiled_model.validate(error_on_missing_imports) - def compile(self, shape_collections: List["ShapeCollection"]): + def compile( + self, shape_collections: Optional[List["ShapeCollection"]] = None + ) -> "CompiledModel": """Compile the graph of a model against a set of ShapeCollections. :param shape_collections: list of ShapeCollections to compile the model - against - :type shape_collections: List[ShapeCollection] + against. Defaults to the model's manifest. + :type shape_collections: List[ShapeCollection], optional + :param shacl_engine: the SHACL engine to use for validation, defaults to whatever + is set in the BuildingMOTIF object + :type shacl_engine: str, optional :return: copy of model's graph that has been compiled against the ShapeCollections :rtype: Graph """ + from buildingmotif.dataclasses.compiled_model import CompiledModel + ontology_graph = rdflib.Graph() + if shape_collections is None: + shape_collections = [self.get_manifest()] for shape_collection in shape_collections: ontology_graph += shape_collection.graph @@ -225,71 +244,10 @@ def compile(self, shape_collections: List["ShapeCollection"]): model_graph = copy_graph(self.graph).skolemize() - return shacl_inference( + compiled_graph = shacl_inference( model_graph, ontology_graph, engine=self._bm.shacl_engine ) - - def test_model_against_shapes( - self, - shape_collections: List["ShapeCollection"], - shapes_to_test: List[rdflib.URIRef], - target_class: rdflib.URIRef, - ) -> Dict[rdflib.URIRef, "ValidationContext"]: - """Validates the model against a list of shapes and generates a - validation report for each. - - :param shape_collections: list of ShapeCollections needed to run shapes - :type shape_collection: List[ShapeCollection] - :param shapes_to_test: list of shape URIs to validate the model against - :type shapes_to_test: List[URIRef] - :param target_class: the class upon which to run the selected shapes - :type target_class: URIRef - :return: a dictionary that relates each shape to test URIRef to a - ValidationContext - :rtype: Dict[URIRef, ValidationContext] - """ - ontology_graph = rdflib.Graph() - for shape_collection in shape_collections: - ontology_graph += shape_collection.graph - - model_graph = copy_graph(self.graph) - - results = {} - - targets = model_graph.query( - f""" - PREFIX rdf: - PREFIX rdfs: - SELECT ?target - WHERE {{ - ?target rdf:type/rdfs:subClassOf* <{target_class}> - - }} - """ - ) - # skolemize the shape graph so we have consistent identifiers across - # validation through the interpretation of the validation report - ontology_graph = ontology_graph.skolemize() - - for shape_uri in shapes_to_test: - temp_model_graph = copy_graph(model_graph) - for (s,) in targets: - temp_model_graph.add((URIRef(s), A, shape_uri)) - - valid, report_g, report_str = shacl_validate( - temp_model_graph, ontology_graph, engine=self._bm.shacl_engine - ) - - results[shape_uri] = ValidationContext( - shape_collections, - ontology_graph, - valid, - report_g, - report_str, - self, - ) - - return results + return CompiledModel(self, shape_collections, compiled_graph) def get_manifest(self) -> ShapeCollection: """Get ShapeCollection from model. diff --git a/buildingmotif/dataclasses/shape_collection.py b/buildingmotif/dataclasses/shape_collection.py index e8162f63d..ead6a613a 100644 --- a/buildingmotif/dataclasses/shape_collection.py +++ b/buildingmotif/dataclasses/shape_collection.py @@ -7,16 +7,19 @@ from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, Union import rdflib +from pyshacl.helper.path_helper import shacl_path_to_sparql_path +from pyshacl.shapes_graph import ShapesGraph from rdflib import RDF, RDFS, Graph, URIRef from rdflib.paths import ZeroOrMore, ZeroOrOne from rdflib.term import Node from buildingmotif import get_building_motif from buildingmotif.namespaces import BMOTIF, OWL, SH -from buildingmotif.utils import Triple, copy_graph +from buildingmotif.utils import Triple, copy_graph, get_template_parts_from_shape if TYPE_CHECKING: from buildingmotif import BuildingMOTIF + from buildingmotif.dataclasses import Library ONTOLOGY_FILE = ( Path(__file__).resolve().parents[1] / "resources" / "building_motif_ontology.ttl" @@ -179,6 +182,44 @@ def _get_included_domains(cls, domain: URIRef) -> List[URIRef]: return results + def infer_templates(self, library: "Library") -> None: + """Infer templates from the graph in this ShapeCollection and add them to the given library. + + :param library: The library to add inferred templates to + :type library: Library + """ + # we need to do the Library import here to avoid circular imports + from buildingmotif.dataclasses.library import Library + + imports_closure = copy_graph(self.graph) + dependency_graphs: dict[str, Graph] = {} + + for dependency in self.graph.objects(predicate=rdflib.OWL.imports): + try: + lib = Library.load(name=str(dependency)) + imports_closure += lib.get_shape_collection().graph + dependency_graphs[str(dependency)] = copy_graph( + lib.get_shape_collection().graph + ) + except Exception as e: + logging.warning( + f"An ontology could not resolve a dependency on {dependency} ({e}). Check this is loaded into BuildingMOTIF" + ) + continue + + class_candidates = set(self.graph.subjects(rdflib.RDF.type, rdflib.OWL.Class)) + shape_candidates = set( + self.graph.subjects(rdflib.RDF.type, rdflib.SH.NodeShape) + ) + candidates = class_candidates.intersection(shape_candidates) + + for candidate in candidates: + assert isinstance(candidate, rdflib.URIRef) + partial_body, deps = get_template_parts_from_shape( + candidate, imports_closure, dependency_graphs + ) + library.create_template(str(candidate), partial_body, dependencies=deps) + def get_shapes_of_definition_type( self, definition_type: URIRef, include_labels=False ) -> Union[List[URIRef], List[Tuple[URIRef, str]]]: @@ -267,93 +308,140 @@ def shape_to_query(self, shape: URIRef) -> str: - ` sh:property [ sh:path ; sh:hasValue ]` -> ?target """ - clauses, project = _shape_to_where(self.graph, shape) + clauses, project = _shape_to_where(self.graph, shape, "?target") preamble = """PREFIX sh: PREFIX rdf: PREFIX rdfs: """ - return f"{preamble} SELECT {' '.join(project)} WHERE {{\n{clauses}\n}}" + return f"{preamble} SELECT DISTINCT {' '.join(project)} WHERE {{\n{clauses}\n}}" def _is_list(graph: Graph, node: Node): return (node, RDF.first, None) in graph -def _sh_path_to_path(graph: Graph, sh_path_value: Node): - # check if sh:path points to a list - if _is_list(graph, sh_path_value): - components = list( - graph.objects(sh_path_value, (RDF.rest * ZeroOrMore) / RDF.first) # type: ignore +def _target_to_sparql(graph: Graph, nodeshape: Node, root_var: str = "?target") -> str: + """ + Takes the nodeshape and returns the SPARQL query that would be used to + find the target nodes of that nodeshape. This is a helper function for + _shape_to_where + Handles: + - targetClass + - targetSubjectsOf + - targetObjectsOf + - targetNode + + If there is more than one of these clauses on the nodeshape, they are + combined with a UNION. + + Returns the string of the query. + """ + + # get all the clauses for the targetClass + targetClasses = graph.objects(nodeshape, SH.targetClass) + tc_clauses = [ + f"{root_var} rdf:type/rdfs:subClassOf* {tc.n3()} .\n" for tc in targetClasses # type: ignore + ] + # get all the clauses for the targetSubjectsOf + targetSubjectsOf = graph.objects(nodeshape, SH.targetSubjectsOf) + tso_clauses = [ + f"{root_var} {tso.n3()} ?ignore .\n" for tso in targetSubjectsOf # type: ignore + ] + # get all the clauses for the targetObjectsOf + targetObjectsOf = graph.objects(nodeshape, SH.targetObjectsOf) + too_clauses = [ + f"?ignore {too.n3()} {root_var} .\n" for too in targetObjectsOf # type: ignore + ] + + # get all the clauses for the targetNode + targetNode = list(graph.objects(nodeshape, SH.targetNode)) + tn_clauses = [ + f"BIND({tn.n3()} AS {root_var}) .\n" for tn in targetNode # type: ignore + ] + + # combine all the clauses with a UNION + all_clauses = tc_clauses + tso_clauses + too_clauses + tn_clauses + return " UNION ".join(f"{{ {clause} }}" for clause in all_clauses) + + +def _clauses_on_nodeshape( + graph: Graph, nodeshape: Node, root_variable: str = "?target" +) -> str: + """handles the constraint components on a node shape (other than targetClass, targetSubjectsOf, targetObjectsOf, targetNode). + Builds up the SPARQL query for the given node shape, starting with the given root variable. + """ + clauses = [] + # handle sh:class + for class_constraint in graph.objects(nodeshape, SH["class"]): + clauses.append( + f"{root_variable} rdf:type/rdfs:subClassOf* {class_constraint.n3()} .\n" ) - return "/".join([_sh_path_to_path(graph, comp) for comp in components]) - part = graph.value(sh_path_value, SH.oneOrMorePath) - if part is not None: - return f"{_sh_path_to_path(graph, part)}+" - part = graph.value(sh_path_value, SH.zeroOrMorePath) - if part is not None: - return f"{_sh_path_to_path(graph, part)}*" - part = graph.value(sh_path_value, SH.zeroOrOnePath) - if part is not None: - return f"{_sh_path_to_path(graph, part)}?" - return sh_path_value.n3() - - -def _shape_to_where(graph: Graph, shape: URIRef) -> Tuple[str, List[str]]: + + return " ".join(clauses) + + +def _shape_to_where( + graph: Graph, shape: URIRef, root_var: str = "?target" +) -> Tuple[str, List[str]]: # we will build the query as a string clauses: str = "" # build up the SELECT clause as a set of vars - project: Set[str] = {"?target"} + project: Set[str] = {root_var} # local state for generating unique variable names prefix = "".join(random.choice(string.ascii_lowercase) for _ in range(2)) variable_counter = 0 - def gensym(): + def get_varname(shape): + """ + Uses graph.value(shape, SH.name | RDFS.label) to get a name if it exists, + converting to a string if it is a Literal. Otherwise, generates a new unique + variable name. + """ + name = graph.value(shape, SH.name | RDFS.label) + if isinstance(name, rdflib.Literal): + name = str(name) + if name: + return name.replace(" ", "_") + + # generate symbol nonlocal variable_counter varname = f"{prefix}{variable_counter}" variable_counter += 1 return varname - # ` sh:targetClass ` -> `?target rdf:type/rdfs:subClassOf* ` - targetClasses = graph.objects(shape, SH.targetClass | SH["class"]) - tc_clauses = [ - f"?target rdf:type/rdfs:subClassOf* {tc.n3()} .\n" for tc in targetClasses # type: ignore - ] - clauses += " UNION ".join(tc_clauses) + shape_graph = ShapesGraph(graph) - # handle targetSubjectsOf - targetSubjectsOf = graph.objects(shape, SH.targetSubjectsOf) - tso_clauses = [ - f"?target {tso.n3()} ?ignore .\n" for tso in targetSubjectsOf # type: ignore - ] - clauses += " UNION ".join(tso_clauses) + # get all the target clauses + clauses += _target_to_sparql(graph, shape, root_var) - # handle targetObjectsOf - targetObjectsOf = graph.objects(shape, SH.targetObjectsOf) - too_clauses = [ - f"?ignore {too.n3()} ?target .\n" for too in targetObjectsOf # type: ignore - ] - clauses += " UNION ".join(too_clauses) - - # handle targetNode - targetNode = list(graph.objects(shape, SH.targetNode)) - if len(targetNode) == 1: - clauses += f"BIND({targetNode[0].n3()} AS ?target) .\n" - elif len(targetNode) > 1: - raise ValueError( - "More than one targetNode found. This is not currently supported" - ) + clauses += _clauses_on_nodeshape(graph, shape, root_var) # find all of the non-qualified property shapes. All of these will use the same variable # for all uses of the same sh:path value pshapes_by_path: Dict[Node, List[Node]] = defaultdict(list) + qualified_pshapes: Set[Node] = set() for pshape in graph.objects(shape, SH.property): - path = _sh_path_to_path(graph, graph.value(pshape, SH.path)) + path = shacl_path_to_sparql_path(shape_graph, graph.value(pshape, SH.path)) if not graph.value(pshape, SH.qualifiedValueShape): pshapes_by_path[path].append(pshape) # type: ignore + else: + qualified_pshapes.add(pshape) + + # look at pshapes implicitly defined by sh:path + for pshape in graph.subjects(predicate=SH.path): + if ( + pshape == shape + ): # skip the input 'shape', otherwise this will infinitely recurse + continue + path = shacl_path_to_sparql_path(shape_graph, graph.value(pshape, SH.path)) + if not graph.value(pshape, SH.qualifiedValueShape): + pshapes_by_path[path].append(pshape) # type: ignore + else: + qualified_pshapes.add(pshape) for dep_shape in graph.objects(shape, SH.node): - dep_clause, dep_project = _shape_to_where(graph, dep_shape) + dep_clause, dep_project = _shape_to_where(graph, dep_shape, root_var) clauses += dep_clause project.update(dep_project) @@ -361,33 +449,37 @@ def gensym(): items = list(graph.objects(or_clause, (RDF.rest * ZeroOrMore) / RDF.first)) # type: ignore or_parts = [] for item in items: - or_body, or_project = _shape_to_where(graph, item) + or_body, or_project = _shape_to_where(graph, item, root_var) or_parts.append(or_body) project.update(or_project) clauses += " UNION ".join(f"{{ {or_body} }}" for or_body in or_parts) + # 'pshapes_by_path' maps a path to all of the property shapes that use that path on the target # assign a unique variable for each sh:path w/o a qualified shape pshape_vars: Dict[Node, str] = {} for pshape_list in pshapes_by_path.values(): - varname = f"?{gensym()}" + # get name if it exists, otherwise generate a new one + pshape_name = get_varname(pshape_list[0]) + varname = f"?{pshape_name}" for pshape in pshape_list: pshape_vars[pshape] = varname for pshape in graph.objects(shape, SH.property): # get the varname if we've already assigned one for this pshape above, - # or generate a new one. When generating a name, use the SH.name field + # or generate a new one. When generating a name, use the SH.name|RDFS.label field # in the PropertyShape or generate a unique one name = pshape_vars.get( - pshape, f"?{graph.value(pshape, SH.name) or gensym()}".replace(" ", "_") + pshape, + f"?{get_varname(pshape)}".replace(" ", "_"), ) - path = _sh_path_to_path(graph, graph.value(pshape, SH.path)) + path = shacl_path_to_sparql_path(graph, graph.value(pshape, SH.path)) qMinCount = graph.value(pshape, SH.qualifiedMinCount) or 0 pclass = graph.value( pshape, (SH["qualifiedValueShape"] * ZeroOrOne / SH["class"]) # type: ignore ) if pclass: - clause = f"?target {path} {name} .\n {name} rdf:type/rdfs:subClassOf* {pclass.n3()} .\n" + clause = f"{root_var} {path} {name} .\n {name} rdf:type/rdfs:subClassOf* {pclass.n3()} .\n" if qMinCount == 0: clause = f"OPTIONAL {{ {clause} }} .\n" clauses += clause @@ -397,29 +489,38 @@ def gensym(): pshape, (SH["qualifiedValueShape"] * ZeroOrOne / SH["node"]) # type: ignore ) if pnode: - node_clauses, node_project = _shape_to_where(graph, pnode) - clause = f"?target {path} {name} .\n" - clause += node_clauses.replace("?target", name) + node_clauses, node_project = _shape_to_where(graph, pnode, root_var) + clause = f"{root_var} {path} {name} .\n" + clause += node_clauses.replace(root_var, name) if qMinCount == 0: clause = f"OPTIONAL {{ {clause} }}" clauses += clause - project.update({p.replace("?target", name) for p in node_project}) + project.update({p.replace(root_var, name) for p in node_project}) or_values = graph.value( pshape, (SH["qualifiedValueShape"] * ZeroOrOne / SH["or"]) ) if or_values: + # or clauses share the variable name. Get the variablen name from the SH.name + # or RDFS.label for the current pshape, or generate a new one + or_var = get_varname(pshape) + or_var = f"?{or_var}".replace(" ", "_") + # connect ?target to the variable that will be used in the OR clauses + clauses += f"{root_var} {path} {or_var} .\n" items = list(graph.objects(or_values, (RDF.rest * ZeroOrMore) / RDF.first)) or_parts = [] for item in items: - or_body, or_project = _shape_to_where(graph, item) + or_body, or_project = _shape_to_where(graph, item, or_var) or_parts.append(or_body) project.update(or_project) clauses += " UNION ".join(f"{{ {or_body} }}" for or_body in or_parts) pvalue = graph.value(pshape, SH.hasValue) if pvalue: - clauses += f"?target {path} {pvalue.n3()} .\n" + clauses += f"{root_var} {path} {pvalue.n3()} .\n" + + if not pclass and not pnode and not or_values and not pvalue: + clauses += f"{root_var} {path} {name} .\n" return clauses, list(project) diff --git a/buildingmotif/dataclasses/template.py b/buildingmotif/dataclasses/template.py index 10f6708f4..19551630d 100644 --- a/buildingmotif/dataclasses/template.py +++ b/buildingmotif/dataclasses/template.py @@ -8,12 +8,23 @@ from itertools import chain from os import PathLike from secrets import token_hex -from typing import TYPE_CHECKING, Dict, Generator, List, Optional, Set, Tuple, Union +from typing import ( + TYPE_CHECKING, + Dict, + Generator, + List, + Optional, + Set, + Tuple, + Union, + overload, +) import rdflib from rdflib.term import Node from buildingmotif import get_building_motif +from buildingmotif.database.errors import TemplateDependencyNotFound, TemplateNotFound from buildingmotif.dataclasses.model import Model from buildingmotif.namespaces import bind_prefixes from buildingmotif.template_matcher import Mapping, TemplateMatcher @@ -101,13 +112,14 @@ def get_dependencies(self) -> Tuple["Dependency", ...]: """ return tuple( [ - Dependency(dep.dependee_id, dep.args) + Dependency.load(dep.id) for dep in self._bm.table_connection.get_db_template_dependencies( self._id ) ] ) + @overload def add_dependency(self, dependency: "Template", args: Dict[str, str]) -> None: """Add dependency to template. @@ -116,9 +128,36 @@ def add_dependency(self, dependency: "Template", args: Dict[str, str]) -> None: :param args: dictionary of dependency arguments :type args: Dict[str, str] """ - self._bm.table_connection.add_template_dependency_preliminary( - self.id, dependency.id, args - ) + + @overload + def add_dependency( + self, dependency_library: str, dependency_template: str, args: Dict[str, str] + ) -> None: + """Add dependency to template. + + :param dependency_library: name of library containing depdency + :type dependency_library: str + :param dependency_template: name of template depedency + :type dependency_template: str + :param args: dictionary of dependency arguments + :type args: Dict[str, str] + """ + + def add_dependency(self, *args, **kwargs): + total_args = len(args) + len(kwargs) + if total_args == 2: + dependency: "Template" = kwargs.get("dependency", args[0]) + args: Dict[str, str] = kwargs.get("args", args[1]) + self._bm.table_connection.add_template_dependency_preliminary( + self.id, dependency.defining_library.name, dependency.name, args + ) + elif total_args == 3: + dependency_library: str = kwargs.get("dependency_library", args[0]) + dependency_template: str = kwargs.get("dependency_template", args[1]) + args: Dict[str, str] = kwargs.get("args", args[2]) + self._bm.table_connection.add_template_dependency_preliminary( + self.id, dependency_library, dependency_template, args + ) def check_dependencies(self): """ @@ -141,10 +180,12 @@ def remove_dependency(self, dependency: "Template") -> None: self._bm.table_connection.delete_template_dependency(self.id, dependency.id) @property - def all_parameters(self) -> Set[str]: + def all_parameters(self, error_on_missing_dependency: bool = True) -> Set[str]: """The set of all parameters used in this template *including* its dependencies. Includes optional parameters. + :param error_on_missing_dependency: Raise an erorr if a template has a missing depedency + :type error_on_missing_dependency: bool :return: set of parameters *with* dependencies :rtype: Set[str] """ @@ -153,6 +194,10 @@ def all_parameters(self) -> Set[str]: # then handle dependencies for dep in self.get_dependencies(): + if dep.template is None: + if error_on_missing_dependency: + raise TemplateNotFound(name=dep.dependency_template_name) + continue params.update(dep.template.parameters) return params @@ -170,29 +215,43 @@ def parameters(self) -> Set[str]: return params @property - def dependency_parameters(self) -> Set[str]: + def dependency_parameters( + self, error_on_missing_dependency: bool = True + ) -> Set[str]: """The set of all parameters used in this template's dependencies, including optional parameters. + :param error_on_missing_dependency: Raise an erorr if a template has a missing depedency + :type error_on_missing_dependency: bool :return: set of parameters used in dependencies :rtype: Set[str] """ params: Set[str] = set() for dep in self.get_dependencies(): + if dep.template is None: + if error_on_missing_dependency: + raise TemplateNotFound(name=dep.dependency_template_name) + continue params = params.union(dep.template.parameters) return params @property - def parameter_counts(self) -> Counter: + def parameter_counts(self, error_on_missing_dependency: bool = True) -> Counter: """An addressable histogram of the parameter name counts in this template and all of its transitive dependencies. + :param error_on_missing_dependency: Raise an erorr if a template has a missing depedency + :type error_on_missing_dependency: bool :return: count of parameters :rtype: Counter """ counts: Counter = Counter() counts.update(self.parameters) for dep in self.get_dependencies(): + if dep.template is None: + if error_on_missing_dependency: + raise TemplateNotFound(name=dep.dependency_template_name) + continue counts.update(dep.template.parameter_counts) return counts @@ -248,6 +307,8 @@ def transitive_parameters(self) -> Set[str]: """ params = set(self.parameters) for dep in self.get_dependencies(): + if dep.template is None: + raise TemplateNotFound(name=dep.dependency_template_name) transitive_params = dep.template.transitive_parameters rename_params: Dict[str, str] = { ours: theirs for ours, theirs in dep.args.items() @@ -275,6 +336,8 @@ def inline_dependencies(self) -> "Template": # start with this template's parameters; this recurses into each # dependency to inline dependencies for dep in self.get_dependencies(): + if dep.template is None: + raise TemplateNotFound(name=dep.dependency_template_name) # get the inlined version of the dependency deptempl = dep.template.inline_dependencies() @@ -458,9 +521,13 @@ def defining_library(self) -> "Library": self._bm.table_connection.get_library_defining_db_template(self.id).id ) - def library_dependencies(self) -> List["Library"]: + def library_dependencies( + self, error_on_missing_dependency: bool = True + ) -> List["Library"]: """Get library dependencies for this template. + :param error_on_missing_dependency: Raise an erorr if a template has a missing depedency + :type error_on_missing_dependency: bool :return: list of libraries :rtype: List[Library] """ @@ -468,6 +535,10 @@ def library_dependencies(self) -> List["Library"]: libs = {self.defining_library.id} for dep in self.get_dependencies(): + if dep.template is None: + if error_on_missing_dependency: + raise TemplateNotFound(name=dep.dependency_template_name) + continue libs.add(dep.template.defining_library.id) return [Library.load(id) for id in libs] @@ -485,7 +556,7 @@ def find_subgraphs( # and all of its dependencies if len(ontologies) == 0: ontology = rdflib.Graph() - for lib in self.library_dependencies(): + for lib in self.library_dependencies(False): ontology += lib.get_shape_collection().graph else: ontology = combine_graphs(*ontologies) @@ -582,13 +653,47 @@ def generate_spreadsheet( class Dependency: """Dependency""" - _template_id: int - args: Dict[str, str] + _id: int + _bm: "BuildingMOTIF" + + _dependency_library_name: str + _dependency_template_name: str + _args: Dict[str, str] + + @classmethod + def load(cls, id: int) -> "Dependency": + bm = get_building_motif() + dep = bm.table_connection.get_db_template_dependency(id) + if dep is None: + raise TemplateDependencyNotFound(id) + + return cls( + _id=id, + _bm=bm, + _dependency_library_name=dep.dependency_library_name, + _dependency_template_name=dep.dependency_template_name, + _args=dep.args, + ) + + @property + def dependency_template_name(self) -> str: + return self._dependency_template_name + + @property + def dependency_library_name(self) -> str: + return self._dependency_library_name @property - def template_id(self): - return self._template_id + def args(self) -> Dict[str, str]: + return self._args @property - def template(self) -> Template: - return Template.load(self._template_id) + def template(self) -> Optional[Template]: + db_dependency = self._bm.table_connection.get_db_template_dependency(self._id) + if db_dependency is None: + return None + db_template = db_dependency.dependency_template + if db_template is None: + return None + + return Template.load(db_template.id) diff --git a/buildingmotif/dataclasses/validation.py b/buildingmotif/dataclasses/validation.py index e0b9821d5..a7f2aa67d 100644 --- a/buildingmotif/dataclasses/validation.py +++ b/buildingmotif/dataclasses/validation.py @@ -7,12 +7,14 @@ from typing import TYPE_CHECKING, Dict, Generator, List, Optional, Set, Tuple, Union import rdflib +from pyshacl.helper.path_helper import shacl_path_to_sparql_path from rdflib import Graph, URIRef +from rdflib.collection import Collection from rdflib.term import BNode, Node from buildingmotif import get_building_motif from buildingmotif.dataclasses.shape_collection import ShapeCollection -from buildingmotif.namespaces import CONSTRAINT, PARAM, SH, A +from buildingmotif.namespaces import CONSTRAINT, PARAM, RDF, SH, A, bind_prefixes from buildingmotif.utils import ( _gensym, _guarantee_unique_template_name, @@ -40,6 +42,9 @@ class GraphDiff: validation_result: Graph graph: Graph + def __post_init__(self): + bind_prefixes(self.graph) + def resolve(self, lib: "Library") -> List["Template"]: """Produces a list of templates to resolve this GraphDiff. @@ -63,14 +68,7 @@ def _result_uri(self) -> Node: as objects; this should be exactly one URI which is the 'root' of the validation result graph """ - possible_uris: Set[Node] = set(self.validation_result.subjects()) - objects: Set[Node] = set(self.validation_result.objects()) - sub_not_obj = possible_uris - objects - if len(sub_not_obj) != 1: - raise Exception( - "Validation result has more than one 'root' node, which should not happen. Please raise an issue on https://github.com/NREL/BuildingMOTIF" - ) - return sub_not_obj.pop() + return next(self.validation_result.subjects(RDF.type, SH.ValidationResult)) @cached_property def failed_shape(self) -> Optional[URIRef]: @@ -87,6 +85,75 @@ def failed_component(self) -> Optional[URIRef]: def __hash__(self): return hash(self.reason()) + def format_count_error( + self, max_count, min_count, path, object_type: Optional[str] = None + ) -> str: + """Format a count error message for a given object type and path. + + :param max_count: the maximum number of objects expected + :type max_count: int + :param min_count: the minimum number of objects expected + :type min_count: int + :param object_type: the type of object expected + :type object_type: str + :param path: the path to the object + :type path: str + :return: the formatted error message + :rtype: str + """ + instances = f"instance(s) of {object_type} on" if object_type else "uses of" + if min_count == max_count: + return f"{self.focus} expected {min_count} {instances} path {path}" + elif min_count is not None and max_count is not None: + return f"{self.focus} expected between {min_count} and {max_count} {instances} path {path}" + elif min_count is not None: + return f"{self.focus} expected at least {min_count} {instances} path {path}" + elif max_count is not None: + return f"{self.focus} expected at most {max_count} {instances} path {path}" + else: + return f"{self.focus} expected {instances} path {path}" + + +@dataclass(frozen=True) +class OrShape(GraphDiff): + """Represents an entity that is missing one of several possible shapes, via sh:or""" + + shapes: Tuple[URIRef] + + def reason(self) -> str: + """Human-readable explanation of this GraphDiff.""" + return f"{self.focus} needs to match one of the following shapes: {', '.join(self.shapes)}" + + @classmethod + def from_validation_report(cls, report: Graph) -> List["OrShape"]: + """Construct OrShape objects from a SHACL validation report. + + :param report: the SHACL validation report + :type report: Graph + :return: a list of OrShape objects + :rtype: List[OrShape] + """ + query = """ + PREFIX sh: + SELECT ?result ?focus ?shapes WHERE { + ?result sh:sourceConstraintComponent sh:OrConstraintComponent . + ?result sh:sourceShape/sh:or ?shapes . + ?result sh:focusNode ?focus . + }""" + results = report.query(query) + ret = [] + for result, focus, shapes in results: + validation_report = report.cbd(result) + ret.append( + cls( + focus, + validation_report, + report, + tuple([s for s in Collection(report, shapes)]), + ) + ) + return ret + @dataclass(frozen=True) class PathClassCount(GraphDiff): @@ -147,8 +214,13 @@ def from_validation_report(cls, report: Graph) -> List["PathClassCount"]: def reason(self) -> str: """Human-readable explanation of this GraphDiff.""" - return f"{self.focus} needs between {self.minc} and {self.maxc} instances of \ -{self.classname} on path {self.path}" + # interpret a SHACL property path as a sparql property path + path = shacl_path_to_sparql_path( + self.graph, self.path, prefixes=dict(self.graph.namespaces()) + ) + + classname = self.graph.qname(self.classname) + return self.format_count_error(self.maxc, self.minc, path, classname) def resolve(self, lib: "Library") -> List["Template"]: """Produces a list of templates to resolve this GraphDiff. @@ -235,8 +307,8 @@ def from_validation_report( def reason(self) -> str: """Human-readable explanation of this GraphDiff.""" - return f"{self.focus} needs between {self.minc} and {self.maxc} instances of \ -{self.shapename} on path {self.path}" + shapename = self.graph.qname(self.shapename) + return self.format_count_error(self.maxc, self.minc, self.path, shapename) def resolve(self, lib: "Library") -> List["Template"]: """Produces a list of templates to resolve this GraphDiff.""" @@ -321,8 +393,10 @@ def from_validation_report(cls, report: Graph) -> List["RequiredPath"]: def reason(self) -> str: """Human-readable explanation of this GraphDiff.""" - return f"{self.focus} needs between {self.minc} and {self.maxc} uses \ -of path {self.path}" + path = shacl_path_to_sparql_path( + self.graph, self.path, prefixes=dict(self.graph.namespaces()) + ) + return self.format_count_error(self.maxc, self.minc, path) def resolve(self, lib: "Library") -> List["Template"]: """Produces a list of templates to resolve this GraphDiff. @@ -352,7 +426,8 @@ class RequiredClass(GraphDiff): def reason(self) -> str: """Human-readable explanation of this GraphDiff.""" - return f"{self.focus} needs to be a {self.classname}" + value_node = self.validation_result.value(self._result_uri, SH.value) + return f"{value_node} on {self.focus} needs to be a {self.classname}" def resolve(self, lib: "Library") -> List["Template"]: """Produces a list of templates to resolve this GraphDiff. @@ -603,6 +678,12 @@ def _report_to_diffset(self) -> Dict[Optional[URIRef], Set[GraphDiff]]: int(max_count) if max_count else None, ) ) + + # TODO: this is still kind of broken...ideally we would actually interpret the shapes + # inside the or clause + candidates = OrShape.from_validation_report(g) + for c in candidates: + diffs[c.focus].add(c) return diffs diff --git a/buildingmotif/utils.py b/buildingmotif/utils.py index fe8eb711f..d4a12eb6c 100644 --- a/buildingmotif/utils.py +++ b/buildingmotif/utils.py @@ -12,8 +12,8 @@ from rdflib.compare import _TripleCanonicalizer from rdflib.paths import ZeroOrOne from rdflib.term import Node -from sqlalchemy.exc import NoResultFound +from buildingmotif.database.errors import TemplateNotFound from buildingmotif.namespaces import OWL, PARAM, RDF, SH, XSD, bind_prefixes if TYPE_CHECKING: @@ -63,7 +63,7 @@ def _guarantee_unique_template_name(library: "Library", name: str) -> str: while library.get_template_by_name(name): name = f"{original_name}_{idx}" idx += 1 - except NoResultFound: + except TemplateNotFound: # this means that the template does not exist and we can use the original name pass return name @@ -214,7 +214,9 @@ def get_ontology_files(directory: Path, recursive: bool = True) -> List[Path]: def get_template_parts_from_shape( - shape_name: URIRef, shape_graph: Graph + shape_name: URIRef, + shape_graph: Graph, + depedency_graphs: Dict[str, Graph] = {}, ) -> Tuple[Graph, List[Dict]]: """Turn a SHACL shape into a template. The following attributes of NodeShapes will be incorporated into the resulting template: @@ -227,6 +229,8 @@ def get_template_parts_from_shape( :type shape_name: URIRef :param shape_graph: shape graph :type shape_graph: Graph + :param depedency_graphs: colleciton of graphs and which depdency library they came from + :type depedency_graphs: dict[str, Graph] :raises Exception: if more than one object type detected on shape :raises Exception: if more than one min count detected on shape :return: template parts @@ -285,7 +289,23 @@ def get_template_parts_from_shape( otype_is_nodeshape = (otype, RDF.type, SH.NodeShape) in shape_graph if (otype_as_class and otype_is_nodeshape) or otype_as_node: - deps.append({"template": str(otype), "args": {"name": param}}) + if not isinstance(otype, URIRef): + continue + library = None + for library_name, graph in depedency_graphs.items(): + if (otype, RDF.type, SH.NodeShape) in graph: + library = library_name + break + if library is None: + deps.append({"template": str(otype), "args": {"name": param}}) + else: + deps.append( + { + "template": str(otype), + "library": library, + "args": {"name": param}, + } + ) body.add((param, RDF.type, otype)) pvalue = shape_graph.value(pshape, SH["hasValue"]) @@ -310,6 +330,9 @@ def get_template_parts_from_shape( # if node is already in deps, skip it if any(str(node) == dep["template"] for dep in deps): continue + # skip non-URIRef nodes + if not isinstance(node, URIRef): + continue deps.append( {"template": str(node), "args": {"name": "name"}} ) # tie to root param @@ -338,7 +361,9 @@ def _prep_shape_graph() -> Graph: return shape -def _index_properties(templ: "Template") -> _TemplateIndex: +def _index_properties( + templ: "Template", error_on_missing_dependency: bool = True +) -> _TemplateIndex: templ_graph = templ.evaluate( {p: PARAM[p] for p in templ.parameters}, {"mark": PARAM} ) @@ -365,7 +390,9 @@ def _index_properties(templ: "Template") -> _TemplateIndex: # maybe_param = str(o).removeprefix(PARAM) Python >=3.9 maybe_param = str(o)[len(PARAM) :] if maybe_param in templ.dependency_parameters: - dep = templ.dependency_for_parameter(maybe_param) + dep = templ.dependency_for_parameter( + maybe_param, error_on_missing_dependency + ) if dep is not None: prop_shapes[p].append(URIRef(dep._name)) elif o in param_types: @@ -538,6 +565,25 @@ def _inline_sh_and(sg: Graph): sg.add((parent, p, o)) +def _inline_sh_qualified_value_shape(sg: Graph): + """ + This detects the use of 'sh:qualifiedValueShape' on SHACL PropertyShapes and inlines + all of the included shapes + """ + q = """ + PREFIX sh: + SELECT ?parent ?child WHERE { + ?parent a sh:PropertyShape ; + sh:qualifiedValueShape ?child . + }""" + for row in sg.query(q): + parent, child = row # type: ignore + sg.remove((parent, SH["qualifiedValueShape"], child)) + pobjs = sg.predicate_objects(child) + for (p, o) in pobjs: + sg.add((parent, p, o)) + + def rewrite_shape_graph(g: Graph) -> Graph: """ Rewrites the input graph to make the resulting validation report more useful. @@ -555,6 +601,7 @@ def rewrite_shape_graph(g: Graph) -> Graph: _inline_sh_and(sg) # make sure to handle sh:node *after* sh:and _inline_sh_node(sg) + _inline_sh_qualified_value_shape(sg) return sg diff --git a/docs/README.md b/docs/README.md index 9aa3f5f07..91769e11a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -17,32 +17,6 @@ Currently, ***BuildingMOTIF*** is planned to support [Brick](https://brickschema # Documentation -The documentation uses Diataxis[^1] as a framework for its structure, which is organized into the following sections. +[Documentation](https://buildingmotif.readthedocs.io/) is organized into sections for *References*, *Tutorials*, *Guides*, and *Explanations* following the framework Diataxis[^1]. [^1]: https://diataxis.fr/ - -## Reference - -- [Developer Documentation](https://nrel.github.io/BuildingMOTIF/reference/developer_documentation.html) -- [Command Line Interface](https://nrel.github.io/BuildingMOTIF/reference/cli_tool.html) -- [Code Documentation](https://nrel.github.io/BuildingMOTIF/reference/apidoc/index.html) - -## Tutorials - -- [Model Creation](https://nrel.github.io/BuildingMOTIF/tutorials/model_creation.html) -- [Model Validation](https://nrel.github.io/BuildingMOTIF/tutorials/model_validation.html) -- [Model Correction](https://nrel.github.io/BuildingMOTIF/tutorials/model_correction.html) -- [Template Writing](https://nrel.github.io/BuildingMOTIF/tutorials/template_writing.html) - -## Guides - -- [CSV Import](https://nrel.github.io/BuildingMOTIF/guides/csv-import.html) -- [Brick model from BACnet network guide](https://nrel.github.io/BuildingMOTIF/guides/bacnet-to-brick.html) - -## Explanations - -- [Ingresses](https://nrel.github.io/BuildingMOTIF/explainations/ingresses.html) - -## Appendix - -- [Bibiography](https://nrel.github.io/BuildingMOTIF/bibliography.html) \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml index c301bdcb7..7545c5ad0 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -3,7 +3,7 @@ # Book settings title : BuildingMOTIF Documentation author : NREL -copyright : "2023" +copyright : "2025" logo : BuildingMOTIF-logo-rev.svg # Execution settings @@ -17,7 +17,7 @@ execute: # HTML-specific settings html: favicon : BuildingMOTIF-icon-rev.svg - announcement : "⚠️ This is an BETA release for testing purposes only ⚠️" + announcement : "" use_issues_button : true use_repository_button : true diff --git a/docs/conf.py b/docs/conf.py index 8d447d2d9..fbc36cf94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ autosummary_generate = True bibtex_bibfiles = ['bibliography.bib'] comments_config = {'hypothesis': False, 'utterances': False} -copyright = '2023' +copyright = '2025' exclude_patterns = ['**.ipynb_checkpoints', '.DS_Store', 'Thumbs.db', '_build'] extensions = ['sphinx_togglebutton', 'sphinx_copybutton', 'myst_nb', 'jupyter_book', 'sphinx_thebe', 'sphinx_comments', 'sphinx_external_toc', 'sphinx.ext.intersphinx', 'sphinx_design', 'sphinx_book_theme', 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.viewcode', 'sphinxcontrib.bibtex', 'sphinx_jupyterbook_latex'] external_toc_exclude_missing = False @@ -19,7 +19,7 @@ html_logo = 'BuildingMOTIF-logo-rev.svg' html_sourcelink_suffix = '' html_theme = 'sphinx_book_theme' -html_theme_options = {'search_bar_text': 'Search this book...', 'launch_buttons': {'notebook_interface': 'classic', 'binderhub_url': '', 'jupyterhub_url': '', 'thebe': False, 'colab_url': ''}, 'path_to_docs': 'docs', 'repository_url': 'https://github.com/NREL/BuildingMOTIF', 'repository_branch': 'main', 'extra_footer': '', 'home_page_in_toc': True, 'announcement': '⚠️ This is an BETA release for testing purposes only ⚠️', 'analytics': {'google_analytics_id': ''}, 'use_repository_button': True, 'use_edit_page_button': False, 'use_issues_button': True} +html_theme_options = {'search_bar_text': 'Search this book...', 'launch_buttons': {'notebook_interface': 'classic', 'binderhub_url': '', 'jupyterhub_url': '', 'thebe': False, 'colab_url': ''}, 'path_to_docs': 'docs', 'repository_url': 'https://github.com/NREL/BuildingMOTIF', 'repository_branch': 'main', 'extra_footer': '', 'home_page_in_toc': True, 'announcement': '', 'analytics': {'google_analytics_id': ''}, 'use_repository_button': True, 'use_edit_page_button': False, 'use_issues_button': True} html_title = 'BuildingMOTIF Documentation' latex_engine = 'pdflatex' myst_enable_extensions = ['colon_fence', 'dollarmath', 'linkify', 'substitution', 'tasklist'] diff --git a/docs/explanations/shapes-and-templates.md b/docs/explanations/shapes-and-templates.md index 412ae75c5..1933540f1 100644 --- a/docs/explanations/shapes-and-templates.md +++ b/docs/explanations/shapes-and-templates.md @@ -21,7 +21,9 @@ a **Template** is a function that generates an RDF graph. ## Converting Shapes to Templates -BuildingMOTIF automatically converts shapes to templates. +### When Loading a Library + +BuildingMOTIF can automatically convert shapes to templates when loading a Library. Evaluating the resulting template will generate a graph that validates against the shape. When BuildingMOTIF loads a Library, it makes an attempt to find any shapes defined within it. @@ -49,6 +51,51 @@ BuildingMOTIF currently uses the name of the SHACL shape as the name of the gene All other parameters (i.e., nodes corresponding to `sh:property`) are given invented names *unless* there is a `sh:name` attribute on the property shape. +This feature can be disabled by setting `infer_templates=False` when calling `Library.load` + +### From Shape Collections + +It is also possible to convert the shapes defined in a Shape Collection to templates. +This is done by calling the `infer_templates` method on the Shape Collection. +If `infer_templates` is True when calling `Library.load`, then BuildingMOTIF will automatically call `infer_templates` on the Shape Collection +within that Library. + +Being able to call `infer_templates` on a Shape Collection is useful when you have +a graph of shapes that you programmatically created or loaded without packaging them +in a Library. + +```{code-cell} python3 +from buildingmotif import BuildingMOTIF +from buildingmotif.dataclasses import Library, ShapeCollection + +# in-memory instance +bm = BuildingMOTIF("sqlite://") + +my_shapes_source = """ +@prefix sh: . +@prefix owl: . +@prefix brick: . +@prefix ex: . + +ex:SimpleShape a sh:NodeShape, owl:Class ; + sh:property [ + sh:path ex:hasPoint ; + sh:qualifiedValueShape [ sh:class brick:Sensor ] ; + sh:qualifiedMinCount 1 ; + ] . +""" + +# create a ShapeCollection to hold the shapes +my_shapes = ShapeCollection.create() +my_shapes.graph.parse(data=my_shapes_source, format="ttl") + +# create a Library to hold the generated templates +lib = Library.create("my-library") +my_shapes.infer_templates(lib) + +print(lib.get_templates()) +``` + ### Example Consider the following shape which has been loaded into BuildingMOTIF as part of a Library: diff --git a/docs/reference/developer_documentation.md b/docs/reference/developer_documentation.md index fc95825f7..1fbb33f18 100644 --- a/docs/reference/developer_documentation.md +++ b/docs/reference/developer_documentation.md @@ -3,7 +3,7 @@ ## Installing 1. Install prerequisites: - - [Python >= 3.8.0](https://www.python.org/downloads/) + - [Python >= 3.10.0, < 3.13](https://www.python.org/downloads/) - [Poetry 1.4.0](https://python-poetry.org/docs/#installation) 2. Clone this repository. 3. Change directory to the new `/BuildingMOTIF` directory. @@ -15,7 +15,7 @@ ``` 5. Install dependencies and pre-commit. ``` - poetry install --with dev # includes development dependencies + poetry install --with dev # includes development dependencies poetry run pre-commit install ``` @@ -68,8 +68,8 @@ pre-commit run -a Pre-commit commands can be run individually with the following commands. Configuration of `isort`, `black`, and `mypy` are done in [pyproject.toml](https://github.com/NREL/BuildingMOTIF/blob/develop/pyproject.toml) and configuration of `flake8` is done in [.flake8](https://github.com/NREL/BuildingMOTIF/blob/develop/.flake8). ``` -poetry run isort -poetry run black +poetry run isort . +poetry run black . poetry run flake8 buildingmotif poetry run mypy --install-types --non-interactive --ignore-missing-imports ``` diff --git a/docs/tutorials/model_correction.md b/docs/tutorials/model_correction.md index 574b8a352..a2a3fb0da 100644 --- a/docs/tutorials/model_correction.md +++ b/docs/tutorials/model_correction.md @@ -51,7 +51,6 @@ constraints = Library.load(ontology_graph="constraints/constraints.ttl") brick = Library.load(ontology_graph="../../libraries/brick/Brick-subset.ttl") g36 = Library.load(directory="../../libraries/ashrae/guideline36") - # load tutorial 2 model and manifest model.graph.parse("tutorial2_model.ttl", format="ttl") manifest = Library.load(ontology_graph="tutorial2_manifest.ttl") @@ -123,13 +122,13 @@ ahu_name = "Core_ZN-PSC_AC" # lookup for the name of the template to the name of the point or part points_and_parts = { - "resolve_Core_ZN-PSC_ACMixed_Air_Temperature_Sensor": "-MAT", - "resolve_Core_ZN-PSC_ACFilter_Differential_Pressure_Sensor": "-FilterDPS", - "resolve_Core_ZN-PSC_ACCooling_Command": "-CCmd", - "resolve_Core_ZN-PSC_ACHeating_Command": "-HCmd", - "resolve_Core_ZN-PSC_ACOutside_Air_Temperature_Sensor": "-OAT", - "resolve_Core_ZN-PSC_ACSupply_Air_Temperature_Sensor": "-SAT", - "resolve_Core_ZN-PSC_ACReturn_Air_Temperature_Sensor": "-RAT", + "resolveCore_ZN-PSC_ACMixed_Air_Temperature_Sensor": "-MAT", + "resolveCore_ZN-PSC_ACFilter_Differential_Pressure_Sensor": "-FilterDPS", + "resolveCore_ZN-PSC_ACCooling_Command": "-CCmd", + "resolveCore_ZN-PSC_ACHeating_Command": "-HCmd", + "resolveCore_ZN-PSC_ACOutside_Air_Temperature_Sensor": "-OAT", + "resolveCore_ZN-PSC_ACSupply_Air_Temperature_Sensor": "-SAT", + "resolveCore_ZN-PSC_ACReturn_Air_Temperature_Sensor": "-RAT", "resolveCore_ZN-PSC_ACsa-fan": "-Fan", # this is an existing fan in the model! } diff --git a/docs/tutorials/model_creation.md b/docs/tutorials/model_creation.md index e1da0bd51..9be13dcc1 100644 --- a/docs/tutorials/model_creation.md +++ b/docs/tutorials/model_creation.md @@ -85,7 +85,7 @@ Currently, libraries in `../../buildingmotif/libraries/` are *included* and libr ```{code-cell} # load a library from buildingmotif.dataclasses import Library -brick = Library.load(ontology_graph="../../libraries/brick/Brick-full.ttl") +brick = Library.load(ontology_graph="../../libraries/brick/Brick-subset.ttl") # print the first 10 templates print("The Brick library contains the following templates:") @@ -120,7 +120,7 @@ You should not load ontologies, schemas, rules, etc. into a Model. These belong It is also possible to import RDF graphs into a `Model`. -If you already have an in-memory `RDFlib.Graph` object available (e.g. through an [Graph Ingress](/guides/ingresses) or loading in a Turtle file), just use `Model.add_graph`: +If you already have an in-memory `RDFlib.Graph` object available (e.g. through an [Graph Ingress](../explanations/ingresses) or loading in a Turtle file), just use `Model.add_graph`: ```{code-cell} import rdflib diff --git a/docs/tutorials/model_validation.md b/docs/tutorials/model_validation.md index e421bc64b..68bad07bf 100644 --- a/docs/tutorials/model_validation.md +++ b/docs/tutorials/model_validation.md @@ -106,7 +106,7 @@ Here is the header of a manifest file. This should also suffice for most of your @prefix : . : a owl:Ontology ; - owl:imports , + owl:imports , , . ``` @@ -183,7 +183,7 @@ with open("tutorial1_manifest.ttl", "w") as f: @prefix : . : a owl:Ontology ; - owl:imports , + owl:imports , , . diff --git a/docs/tutorials/tutorial1_manifest.ttl b/docs/tutorials/tutorial1_manifest.ttl index 74b29673a..7277289a2 100644 --- a/docs/tutorials/tutorial1_manifest.ttl +++ b/docs/tutorials/tutorial1_manifest.ttl @@ -6,7 +6,7 @@ @prefix : . : a owl:Ontology ; - owl:imports , + owl:imports , , . diff --git a/docs/tutorials/tutorial2_manifest.ttl b/docs/tutorials/tutorial2_manifest.ttl index 7a68c7376..0792e30e2 100644 --- a/docs/tutorials/tutorial2_manifest.ttl +++ b/docs/tutorials/tutorial2_manifest.ttl @@ -6,7 +6,7 @@ @prefix : . : a owl:Ontology ; - owl:imports , + owl:imports , , . diff --git a/libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl b/libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl index 18f5164cf..20d85482b 100644 --- a/libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl +++ b/libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl @@ -37,8 +37,8 @@ sh:qualifiedValueShape [ sh:class brick:Frequency_Sensor ] ; sh:qualifiedMinCount 1 ; ] ; - sh:qualifiedMinCount 1 ; ] ; + sh:qualifiedMinCount 1 ; ] . :fc-2 a sh:NodeShape, owl:Class, bmotif:Analytics_Application ; diff --git a/libraries/ashrae/guideline36/components.ttl b/libraries/ashrae/guideline36/components.ttl index de695f7e4..81aa3bd1d 100644 --- a/libraries/ashrae/guideline36/components.ttl +++ b/libraries/ashrae/guideline36/components.ttl @@ -47,3 +47,7 @@ sh:qualifiedMinCount 1 ; sh:qualifiedMaxCount 1 ; ] . + +:variable-speed-fan-vfd a sh:NodeShape, owl:Class ; + rdfs:label "Variable Speed Fan VFD" ; + sh:class brick:Variable_Speed_Drive . diff --git a/libraries/brick/Brick-subset.ttl b/libraries/brick/Brick-subset.ttl index 9a5983337..c9b571b61 100644 --- a/libraries/brick/Brick-subset.ttl +++ b/libraries/brick/Brick-subset.ttl @@ -4,7 +4,7 @@ @prefix sh: . @prefix skos: . - a owl:Ontology . + a owl:Ontology . brick:Acceleration_Time_Setpoint a owl:Class, sh:NodeShape ; @@ -4970,4 +4970,9 @@ brick:Valve_Position_Command a owl:Class, brick:Damper a owl:Class, sh:NodeShape ; rdfs:label "Damper" ; - rdfs:subClassOf brick:HVAC_Equipment . \ No newline at end of file + rdfs:subClassOf brick:HVAC_Equipment . + +brick:Outside_Damper a owl:Class, + sh:NodeShape ; + rdfs:label "Outside Damper" ; + rdfs:subClassOf brick:Damper . diff --git a/libraries/brick/Brick.ttl b/libraries/brick/Brick.ttl index d36ffce9d..fd294bb1f 100644 --- a/libraries/brick/Brick.ttl +++ b/libraries/brick/Brick.ttl @@ -163,46 +163,41 @@ rec:Architecture a rdfs:Class, rdfs:comment "A designed/landscaped (or potentially designed/landscaped) part of the physical world that has a 3D spatial extent. E.g., a building site, a building, levels within the building, rooms, etc."^^xsd:string ; rdfs:subClassOf rec:Space ; sh:property [ a sh:PropertyShape ; - sh:class rec:PostalAddress ; - sh:description "Physical address of the architecture (site, building, sub-building, entrance room, etc.) in question."^^xsd:string ; - sh:name "address"^^xsd:string ; + sh:class rec:ArchitectureArea ; + sh:maxCount 1 ; + sh:name "area"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:address ], + sh:path rec:area ], [ a sh:PropertyShape ; sh:class rec:Agent ; + sh:name "operated by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:constructedBy ], + sh:path rec:operatedBy ], [ a sh:PropertyShape ; - sh:class rec:ArchitectureCapacity ; - sh:maxCount 1 ; - sh:name "capacity"^^xsd:string ; + sh:class rec:Document ; + sh:name "documentation"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:capacity ], + sh:path rec:documentation ], [ a sh:PropertyShape ; - sh:name "is fed by"^^xsd:string ; + sh:class rec:BuildingElement ; + sh:name "adjacent element"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:isFedBy ], + sh:path rec:adjacentElement ], [ a sh:PropertyShape ; sh:class rec:Agent ; - sh:name "owned by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:ownedBy ], + sh:path rec:constructedBy ], [ a sh:PropertyShape ; sh:class rec:Agent ; - sh:name "operated by"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:operatedBy ], - [ a sh:PropertyShape ; - sh:class rec:Document ; - sh:name "documentation"^^xsd:string ; + sh:name "owned by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:documentation ], + sh:path rec:ownedBy ], [ a sh:PropertyShape ; - sh:class rec:ArchitectureArea ; - sh:maxCount 1 ; - sh:name "area"^^xsd:string ; + sh:class rec:PostalAddress ; + sh:description "Physical address of the architecture (site, building, sub-building, entrance room, etc.) in question."^^xsd:string ; + sh:name "address"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:area ], + sh:path rec:address ], [ a sh:PropertyShape ; sh:class rec:BuildingElement ; sh:name "intersecting element"^^xsd:string ; @@ -215,20 +210,25 @@ rec:Architecture a rdfs:Class, sh:nodeKind sh:IRI ; sh:path rec:containsElement ], [ a sh:PropertyShape ; - sh:class rec:BuildingElement ; - sh:name "adjacent element"^^xsd:string ; + sh:class rec:Agent ; + sh:name "architected by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:adjacentElement ], + sh:path rec:architectedBy ], [ a sh:PropertyShape ; - sh:class brick:Point ; - sh:name "has point"^^xsd:string ; + sh:name "is fed by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:hasPoint ], + sh:path rec:isFedBy ], [ a sh:PropertyShape ; - sh:class rec:Agent ; - sh:name "architected by"^^xsd:string ; + sh:class rec:ArchitectureCapacity ; + sh:maxCount 1 ; + sh:name "capacity"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:architectedBy ] . + sh:path rec:capacity ], + [ a sh:PropertyShape ; + sh:class brick:Point ; + sh:name "has point"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:hasPoint ] . rec:ArchitectureArea a , rdfs:Class, @@ -239,13 +239,13 @@ rec:ArchitectureArea a , sh:property [ a sh:PropertyShape ; sh:datatype xsd:float ; sh:maxCount 1 ; - sh:name "rentable area"^^xsd:string ; - sh:path rec:rentableArea ], + sh:name "gross area"^^xsd:string ; + sh:path rec:grossArea ], [ a sh:PropertyShape ; sh:datatype xsd:float ; sh:maxCount 1 ; - sh:name "gross area"^^xsd:string ; - sh:path rec:grossArea ], + sh:name "rentable area"^^xsd:string ; + sh:path rec:rentableArea ], [ a sh:PropertyShape ; sh:datatype xsd:float ; sh:maxCount 1 ; @@ -289,112 +289,112 @@ rec:Asset a rdfs:Class, rdfs:comment "Something which is placed inside of a building, but is not an integral part of that building's structure; e.g., furniture, equipment, systems, etc."^^xsd:string ; rdfs:subClassOf rdfs:Resource ; sh:property [ a sh:PropertyShape ; + sh:class rec:Space ; + sh:name "located in"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:locatedIn ], + [ a sh:PropertyShape ; sh:datatype xsd:string ; - sh:name "MAC address"^^xsd:string ; - sh:path rec:MACAddress ], + sh:name "IP address"^^xsd:string ; + sh:path rec:IPAddress ], + [ a sh:PropertyShape ; + sh:class rec:Agent ; + sh:name "manufactured by"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:manufacturedBy ], [ a sh:PropertyShape ; sh:class rec:Asset ; - sh:name "has part"^^xsd:string ; + sh:name "is part of"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:hasPart ], + sh:path rec:isPartOf ], [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:name "asset tag"^^xsd:string ; - sh:path rec:assetTag ], + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:name "weight"^^xsd:string ; + sh:path rec:weight ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:name "model number"^^xsd:string ; sh:path rec:modelNumber ], [ a sh:PropertyShape ; - sh:datatype xsd:date ; - sh:maxCount 1 ; - sh:name "installation date"^^xsd:string ; - sh:path rec:installationDate ], - [ a sh:PropertyShape ; - sh:class rec:Space ; - sh:name "located in"^^xsd:string ; + sh:class rec:Asset ; + sh:name "has part"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:locatedIn ], + sh:path rec:hasPart ], [ a sh:PropertyShape ; sh:maxCount 1 ; sh:name "initial cost"^^xsd:string ; sh:nodeKind sh:Literal ; sh:path rec:initialCost ], - [ a sh:PropertyShape ; - sh:class rec:Geometry ; - sh:description "A GeoJSON Geometry representing the position or extent of the asset."^^xsd:string ; - sh:maxCount 1 ; - sh:name "geometry"^^xsd:string ; - sh:path rec:geometry ], [ a sh:PropertyShape ; sh:class rec:Agent ; sh:name "commissioned by"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:commissionedBy ], [ a sh:PropertyShape ; - sh:class rec:Agent ; - sh:name "serviced by"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:servicedBy ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:name "IP address"^^xsd:string ; - sh:path rec:IPAddress ], - [ a sh:PropertyShape ; - sh:class rec:BuildingElement ; - sh:description "An asset may be mounted on some part of the building construction (e.g., a blind on a facade, a camera on a wall, etc)."^^xsd:string ; + sh:datatype xsd:date ; sh:maxCount 1 ; - sh:name "mounted on"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:mountedOn ], + sh:name "commissioning date"^^xsd:string ; + sh:path rec:commissioningDate ], [ a sh:PropertyShape ; - sh:class brick:Point ; - sh:name "has point"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:hasPoint ], + sh:datatype xsd:date ; + sh:maxCount 1 ; + sh:name "turnover date"^^xsd:string ; + sh:path rec:turnoverDate ], [ a sh:PropertyShape ; sh:class rec:Document ; sh:name "documentation"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:documentation ], [ a sh:PropertyShape ; - sh:datatype xsd:decimal ; - sh:maxCount 1 ; - sh:name "weight"^^xsd:string ; - sh:path rec:weight ], + sh:datatype xsd:duration ; + sh:name "maintenance interval"^^xsd:string ; + sh:path rec:maintenanceInterval ], [ a sh:PropertyShape ; - sh:datatype xsd:date ; + sh:class rec:BuildingElement ; + sh:description "An asset may be mounted on some part of the building construction (e.g., a blind on a facade, a camera on a wall, etc)."^^xsd:string ; sh:maxCount 1 ; - sh:name "commissioning date"^^xsd:string ; - sh:path rec:commissioningDate ], - [ a sh:PropertyShape ; - sh:class rec:Asset ; - sh:name "is part of"^^xsd:string ; + sh:name "mounted on"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:isPartOf ], - [ a sh:PropertyShape ; - sh:datatype xsd:date ; - sh:maxCount 1 ; - sh:name "turnover date"^^xsd:string ; - sh:path rec:turnoverDate ], + sh:path rec:mountedOn ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:name "serial number"^^xsd:string ; sh:path rec:serialNumber ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:name "asset tag"^^xsd:string ; + sh:path rec:assetTag ], [ a sh:PropertyShape ; sh:class rec:Agent ; sh:name "installed by"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:installedBy ], [ a sh:PropertyShape ; - sh:datatype xsd:duration ; - sh:name "maintenance interval"^^xsd:string ; - sh:path rec:maintenanceInterval ], + sh:datatype xsd:date ; + sh:maxCount 1 ; + sh:name "installation date"^^xsd:string ; + sh:path rec:installationDate ], + [ a sh:PropertyShape ; + sh:class brick:Point ; + sh:name "has point"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:hasPoint ], + [ a sh:PropertyShape ; + sh:class rec:Geometry ; + sh:description "A GeoJSON Geometry representing the position or extent of the asset."^^xsd:string ; + sh:maxCount 1 ; + sh:name "geometry"^^xsd:string ; + sh:path rec:geometry ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:name "MAC address"^^xsd:string ; + sh:path rec:MACAddress ], [ a sh:PropertyShape ; sh:class rec:Agent ; - sh:name "manufactured by"^^xsd:string ; + sh:name "serviced by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:manufacturedBy ] . + sh:path rec:servicedBy ] . rec:Atrium a rdfs:Class, sh:NodeShape ; @@ -405,7 +405,11 @@ rec:AudioVisualEquipment a rdfs:Class, sh:NodeShape ; rdfs:label "Audio Visual Equipment"^^xsd:string ; rdfs:comment "Audio visual equipment."^^xsd:string ; - rdfs:subClassOf rec:ICTEquipment . + rdfs:subClassOf rec:ICTEquipment ; + owl:deprecated true ; + brick:deprecatedInVersion "1.4.0" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Audio_Visual_Equipment" ; + brick:isReplacedBy brick:Audio_Visual_Equipment . rec:Auditorium a rdfs:Class, sh:NodeShape ; @@ -419,7 +423,7 @@ rec:BACnetController a rdfs:Class, rdfs:subClassOf rec:Controller ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:BACnetController" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:BACnet_Controller" ; brick:isReplacedBy brick:BACnet_Controller . rec:BackOffice a rdfs:Class, @@ -498,27 +502,27 @@ rec:BuildingElement a rdfs:Class, rdfs:subClassOf rdfs:Resource ; sh:property [ a sh:PropertyShape ; sh:class rec:BuildingElement ; - sh:name "has part"^^xsd:string ; + sh:maxCount 1 ; + sh:name "is part of"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:hasPart ], + sh:path rec:isPartOf ], [ a sh:PropertyShape ; sh:class rec:Document ; sh:name "documentation"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:documentation ], - [ a sh:PropertyShape ; - sh:class rec:BuildingElement ; - sh:maxCount 1 ; - sh:name "is part of"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:isPartOf ], [ a sh:PropertyShape ; sh:class rec:Architecture ; sh:description "Indicates the architected space (site, building, level, room...) in which this building element is placed."^^xsd:string ; sh:maxCount 1 ; sh:name "located in"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:locatedIn ] . + sh:path rec:locatedIn ], + [ a sh:PropertyShape ; + sh:class rec:BuildingElement ; + sh:name "has part"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:hasPart ] . rec:BulletinBoard a rdfs:Class, sh:NodeShape ; @@ -673,7 +677,7 @@ rec:DataNetworkEquipment a rdfs:Class, rdfs:subClassOf rec:ICTEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:DataNetworkEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Data_Network_Equipment" ; brick:isReplacedBy brick:Data_Network_Equipment . rec:DataRateObservation a , @@ -714,7 +718,7 @@ rec:DaylightSensorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:DaylightSensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Daylight_Sensor_Equipment" ; brick:isReplacedBy brick:Daylight_Sensor_Equipment . rec:DensityObservation a , @@ -862,8 +866,8 @@ rec:ElevatorTrip a rdfs:Class, sh:property [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; - sh:name "current level"^^xsd:string ; - sh:path rec:currentLevel ], + sh:name "start level"^^xsd:string ; + sh:path rec:startLevel ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:in ( "Up"^^xsd:string "Down"^^xsd:string ) ; @@ -873,13 +877,13 @@ rec:ElevatorTrip a rdfs:Class, [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; - sh:name "end level"^^xsd:string ; - sh:path rec:endLevel ], + sh:name "current level"^^xsd:string ; + sh:path rec:currentLevel ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; - sh:name "start level"^^xsd:string ; - sh:path rec:startLevel ] . + sh:name "end level"^^xsd:string ; + sh:path rec:endLevel ] . rec:EndTable a rdfs:Class, sh:NodeShape ; @@ -927,19 +931,19 @@ rec:EthernetPort a rdfs:Class, rdfs:subClassOf rec:DataNetworkEquipment ; owl:deprecated true ; sh:property [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:in ( "Type1"^^xsd:string "Type2"^^xsd:string "Type3"^^xsd:string "Type4"^^xsd:string ) ; - sh:maxCount 1 ; - sh:name "PoE Type"^^xsd:string ; - sh:path rec:poeType ], - [ a sh:PropertyShape ; sh:datatype xsd:float ; sh:description "The data rate of the port in Mib/s, i.e. mebibit (2^20 bit) per second."^^xsd:string ; sh:maxCount 1 ; sh:name "Port Speed"^^xsd:string ; - sh:path rec:portSpeed ] ; + sh:path rec:portSpeed ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:in ( "Type1"^^xsd:string "Type2"^^xsd:string "Type3"^^xsd:string "Type4"^^xsd:string ) ; + sh:maxCount 1 ; + sh:name "PoE Type"^^xsd:string ; + sh:path rec:poeType ] ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:EthernetPort" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Ethernet_Port" ; brick:isReplacedBy brick:Ethernet_Port . rec:EthernetSwitch a rdfs:Class, @@ -949,7 +953,7 @@ rec:EthernetSwitch a rdfs:Class, rdfs:subClassOf rec:DataNetworkEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:EthernetSwitch" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Ethernet_Switch" ; brick:isReplacedBy brick:Ethernet_Switch . rec:Event a rdfs:Class, @@ -958,16 +962,16 @@ rec:Event a rdfs:Class, rdfs:comment "A temporally indexed entity, e.g., an observation, a lease, a construction project, etc. Can be instantaneous (timestamp property assigned) or have temporal extent (start and end properties assigned). Subclasses may define specific behaviour and requirements, e.g., on spatial indexing, agent participation, etc."^^xsd:string ; rdfs:subClassOf rdfs:Resource ; sh:property [ a sh:PropertyShape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "timestamp"^^xsd:string ; - sh:path rec:timestamp ], - [ a sh:PropertyShape ; sh:datatype xsd:dateTime ; sh:description "Event start timestamp."^^xsd:string ; sh:maxCount 1 ; sh:name "start"^^xsd:string ; sh:path rec:start ], + [ a sh:PropertyShape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "timestamp"^^xsd:string ; + sh:path rec:timestamp ], [ a sh:PropertyShape ; sh:datatype xsd:dateTime ; sh:description "Event ending timestamp."^^xsd:string ; @@ -981,20 +985,20 @@ rec:ExceptionEvent a , rdfs:label "Exception event"^^xsd:string ; rdfs:subClassOf rec:PointEvent ; sh:property [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:description "The message of this exception event."^^xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "value"^^xsd:string ; + sh:path rec:value ], + [ a sh:PropertyShape ; sh:class brick:Point ; sh:description "The brick:Point that emitted this exception."^^xsd:string ; sh:maxCount 1 ; sh:minCount 1 ; sh:name "source point"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:sourcePoint ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:description "The message of this exception event."^^xsd:string ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "value"^^xsd:string ; - sh:path rec:value ] . + sh:path rec:sourcePoint ] . rec:ExerciseRoom a rdfs:Class, sh:NodeShape ; @@ -1102,7 +1106,11 @@ rec:Gateway a rdfs:Class, sh:NodeShape ; rdfs:label "Gateway"^^xsd:string ; rdfs:comment "Gateway."^^xsd:string ; - rdfs:subClassOf rec:ICTEquipment . + rdfs:subClassOf rec:ICTEquipment ; + owl:deprecated true ; + brick:deprecatedInVersion "1.4.0" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Gateway" ; + brick:isReplacedBy brick:Gateway . rec:Geometry a rdfs:Class, sh:NodeShape ; @@ -1129,36 +1137,36 @@ rec:Geotransform a rdfs:Class, rdfs:subClassOf rec:Georeference ; sh:property [ a sh:PropertyShape ; sh:datatype xsd:double ; - sh:description "Value will be zero if the local coordinate system is north-aligned."^^xsd:string ; sh:maxCount 1 ; - sh:name "y rotational scale factor"^^xsd:string ; - sh:path rec:yRotationalScaleFactor ], + sh:name "width scale factor"^^xsd:string ; + sh:path rec:widthScaleFactor ], [ a sh:PropertyShape ; sh:datatype xsd:double ; sh:maxCount 1 ; - sh:name "width scale factor"^^xsd:string ; - sh:path rec:widthScaleFactor ], + sh:name "origin y"^^xsd:string ; + sh:path rec:originY ], [ a sh:PropertyShape ; sh:datatype xsd:double ; sh:maxCount 1 ; - sh:name "height scale factor"^^xsd:string ; - sh:path rec:heightScaleFactor ], + sh:name "origin x"^^xsd:string ; + sh:path rec:originX ], [ a sh:PropertyShape ; sh:datatype xsd:double ; sh:maxCount 1 ; - sh:name "origin y"^^xsd:string ; - sh:path rec:originY ], + sh:name "height scale factor"^^xsd:string ; + sh:path rec:heightScaleFactor ], [ a sh:PropertyShape ; sh:datatype xsd:double ; sh:description "Value will be zero if the local coordinate system is north-aligned."^^xsd:string ; sh:maxCount 1 ; - sh:name "x rotational scale factor"^^xsd:string ; - sh:path rec:xRotationalScaleFactor ], + sh:name "y rotational scale factor"^^xsd:string ; + sh:path rec:yRotationalScaleFactor ], [ a sh:PropertyShape ; sh:datatype xsd:double ; + sh:description "Value will be zero if the local coordinate system is north-aligned."^^xsd:string ; sh:maxCount 1 ; - sh:name "origin x"^^xsd:string ; - sh:path rec:originX ] . + sh:name "x rotational scale factor"^^xsd:string ; + sh:path rec:xRotationalScaleFactor ] . rec:GroupRoom a rdfs:Class, sh:NodeShape ; @@ -1192,7 +1200,7 @@ rec:IAQSensorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:IAQSensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:IAQ_Sensor_Equipment" ; brick:isReplacedBy brick:IAQ_Sensor_Equipment . rec:ICTEquipment a rdfs:Class, @@ -1201,18 +1209,18 @@ rec:ICTEquipment a rdfs:Class, rdfs:comment "Equipment and devices that are part of a building's ICT infrastructure."^^xsd:string ; rdfs:subClassOf brick:Equipment ; sh:property [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:description "The standard the equipment or device adheres to, e.g. IEEE 802.11."^^xsd:string ; - sh:name "Standard"^^xsd:string ; - sh:path rec:standard ], - [ a sh:PropertyShape ; sh:datatype xsd:integer ; sh:name "Number of Ports"^^xsd:string ; sh:path rec:numberOfPorts ], [ a sh:PropertyShape ; sh:datatype xsd:integer ; sh:name "Height (RUs)"^^xsd:string ; - sh:path rec:heightRUs ] . + sh:path rec:heightRUs ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:description "The standard the equipment or device adheres to, e.g. IEEE 802.11."^^xsd:string ; + sh:name "Standard"^^xsd:string ; + sh:path rec:standard ] . rec:ICTHardware a rdfs:Class, sh:NodeShape ; @@ -1307,7 +1315,7 @@ rec:LeakDetectorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:LeakDetectorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Leak_Detector_Equipment" ; brick:isReplacedBy brick:Leak_Detector_Equipment . rec:Lease a rdfs:Class, @@ -1320,6 +1328,13 @@ rec:Lease a rdfs:Class, sh:name "lease of"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:leaseOf ], + [ a sh:PropertyShape ; + sh:class rec:Agent ; + sh:description "The agent leasing out some leasable object, i.e., the owner of the asset."^^xsd:string ; + sh:minCount 1 ; + sh:name "leasor"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:leasor ], [ a sh:PropertyShape ; sh:class rec:Agent ; sh:description "The agent leasing some leasable object, i.e., the user of the asset."^^xsd:string ; @@ -1332,14 +1347,7 @@ rec:Lease a rdfs:Class, sh:description "Indicates the contract regulating the terms of the lease in question. "^^xsd:string ; sh:name "regulated by"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:regulatedBy ], - [ a sh:PropertyShape ; - sh:class rec:Agent ; - sh:description "The agent leasing out some leasable object, i.e., the owner of the asset."^^xsd:string ; - sh:minCount 1 ; - sh:name "leasor"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:leasor ] . + sh:path rec:regulatedBy ] . rec:LeaseContract a rdfs:Class, sh:NodeShape ; @@ -1512,7 +1520,7 @@ rec:ModbusController a rdfs:Class, rdfs:subClassOf rec:Controller ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:ModbusController" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Modbus_Controller" ; brick:isReplacedBy brick:Modbus_Controller . rec:Morgue a rdfs:Class, @@ -1570,7 +1578,7 @@ rec:NetworkSecurityEquipment a rdfs:Class, rdfs:subClassOf rec:DataNetworkEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:NetworkSecurityEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Network_Security_Equipment" ; brick:isReplacedBy brick:Network_Security_Equipment . rec:NotificationObject a rdfs:Class, @@ -1598,7 +1606,7 @@ rec:OccupancySensorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:OccupancySensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Occupancy_Sensor_Equipment" ; brick:isReplacedBy brick:Occupancy_Sensor_Equipment . rec:OccupancyZone a rdfs:Class, @@ -1638,28 +1646,28 @@ rec:Organization a rdfs:Class, rdfs:comment "An organization of any sort (e.g., a business, association, project, consortium, tribe, etc.)"^^xsd:string ; rdfs:subClassOf rec:Agent ; sh:property [ a sh:PropertyShape ; - sh:class rec:Agent ; - sh:description "Indicates membership in an organization. Note that componency (e.g., departments of a corporation) are expressed using the more generic hasPart property."^^xsd:string ; - sh:name "has member"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:hasMember ], - [ a sh:PropertyShape ; sh:class rec:Organization ; sh:description "Indicates parthood relations in organizations (e.g., departments of a corporation). Note that membership in an organization is expressed using the Agent.isMemberOf property."^^xsd:string ; sh:name "is part of"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:isPartOf ], - [ a sh:PropertyShape ; - sh:datatype xsd:anyURI ; - sh:description "URL link to an image/logo that represents the organization."^^xsd:string ; - sh:name "logo"^^xsd:string ; - sh:path rec:logo ], [ a sh:PropertyShape ; sh:class rec:Organization ; sh:description "Indicates parthood relations in organizations (e.g., departments of a corporation). Note that membership in an organization is expressed using the more specific hasMember property."^^xsd:string ; sh:name "has part"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:hasPart ] . + sh:path rec:hasPart ], + [ a sh:PropertyShape ; + sh:class rec:Agent ; + sh:description "Indicates membership in an organization. Note that componency (e.g., departments of a corporation) are expressed using the more generic hasPart property."^^xsd:string ; + sh:name "has member"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:hasMember ], + [ a sh:PropertyShape ; + sh:datatype xsd:anyURI ; + sh:description "URL link to an image/logo that represents the organization."^^xsd:string ; + sh:name "logo"^^xsd:string ; + sh:path rec:logo ] . rec:OutdoorSpace a rdfs:Class, sh:NodeShape ; @@ -1693,7 +1701,7 @@ rec:PeopleCountSensorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:PeopleCountSensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:People_Count_Sensor_Equipment" ; brick:isReplacedBy brick:People_Count_Sensor_Equipment . rec:Person a rdfs:Class, @@ -1786,6 +1794,11 @@ rec:PostalAddress a rdfs:Class, rdfs:label "Postal address"^^xsd:string ; rdfs:subClassOf rec:Information ; sh:property [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:name "postal code"^^xsd:string ; + sh:path rec:postalCode ], + [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; sh:name "region"^^xsd:string ; @@ -1793,19 +1806,14 @@ rec:PostalAddress a rdfs:Class, [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; - sh:name "city"^^xsd:string ; - sh:path rec:city ], + sh:name "address line 2"^^xsd:string ; + sh:path rec:addressLine2 ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:description "The country, e.g., USA, Sweden, Argentina, or optionally a two-letter ISO 3166-1 alpha-2 country code, e.g., \"SE\", \"US\", etc."^^xsd:string ; sh:maxCount 1 ; sh:name "country"^^xsd:string ; sh:path rec:country ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:name "address line 2"^^xsd:string ; - sh:path rec:addressLine2 ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; @@ -1814,8 +1822,8 @@ rec:PostalAddress a rdfs:Class, [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:maxCount 1 ; - sh:name "postal code"^^xsd:string ; - sh:path rec:postalCode ] . + sh:name "city"^^xsd:string ; + sh:path rec:city ] . rec:PowerObservation a , rdfs:Class, @@ -1987,14 +1995,14 @@ rec:SensorEquipment a rdfs:Class, owl:deprecated true ; sh:property [ a sh:PropertyShape ; sh:datatype xsd:double ; - sh:name "Wi-Fi Signal Strength"^^xsd:string ; - sh:path rec:wifiSignalStrength ], + sh:name "Battery Percentage"^^xsd:string ; + sh:path rec:batteryPercentage ], [ a sh:PropertyShape ; sh:datatype xsd:double ; - sh:name "Battery Percentage"^^xsd:string ; - sh:path rec:batteryPercentage ] ; + sh:name "Wi-Fi Signal Strength"^^xsd:string ; + sh:path rec:wifiSignalStrength ] ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:SensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Sensor_Equipment" ; brick:isReplacedBy brick:Sensor_Equipment . rec:Server a rdfs:Class, @@ -2019,36 +2027,24 @@ rec:ServiceObject a rdfs:Class, sh:property [ a sh:PropertyShape ; sh:datatype xsd:dateTime ; sh:maxCount 1 ; - sh:name "created time"^^xsd:string ; - sh:path rec:createdTime ], + sh:name "closed time"^^xsd:string ; + sh:path rec:closedTime ], [ a sh:PropertyShape ; sh:class rec:Agent ; sh:maxCount 1 ; sh:name "closed by"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:closedBy ], - [ a sh:PropertyShape ; - sh:datatype xsd:string ; - sh:in ( "Severe"^^xsd:string "Major"^^xsd:string "Minor"^^xsd:string ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "severity"^^xsd:string ; - sh:path rec:severity ], - [ a sh:PropertyShape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "acknowledged time"^^xsd:string ; - sh:path rec:acknowledgedTime ], - [ a sh:PropertyShape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "closed time"^^xsd:string ; - sh:path rec:closedTime ], [ a sh:PropertyShape ; sh:class brick:Point ; sh:name "produced by"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:producedBy ], + [ a sh:PropertyShape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "created time"^^xsd:string ; + sh:path rec:createdTime ], [ a sh:PropertyShape ; sh:datatype xsd:string ; sh:in ( "Unacknowledged"^^xsd:string "Acknowledged"^^xsd:string "Closed"^^xsd:string ) ; @@ -2062,6 +2058,18 @@ rec:ServiceObject a rdfs:Class, sh:name "created by"^^xsd:string ; sh:nodeKind sh:IRI ; sh:path rec:createdBy ], + [ a sh:PropertyShape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "acknowledged time"^^xsd:string ; + sh:path rec:acknowledgedTime ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:in ( "Severe"^^xsd:string "Major"^^xsd:string "Minor"^^xsd:string ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "severity"^^xsd:string ; + sh:path rec:severity ], [ a sh:PropertyShape ; sh:minCount 1 ; sh:name "related to"^^xsd:string ; @@ -2149,17 +2157,6 @@ rec:Space a rdfs:Class, sh:maxCount 1 ; sh:name "geometry"^^xsd:string ; sh:path rec:geometry ], - [ a sh:PropertyShape ; - sh:class rec:Georeference ; - sh:description "A georeference creates a relationship between the local coordinate system used within a building (e.g., measured in meters) and a geographic coordinate system (e.g., lat, long, alt), such that locally placed Spaces can be resolved and rendered in that geographic coordinate system (e.g., for mapping purposes)."^^xsd:string ; - sh:maxCount 1 ; - sh:name "georeference"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:georeference ], - [ a sh:PropertyShape ; - sh:name "is location of"^^xsd:string ; - sh:nodeKind sh:IRI ; - sh:path rec:isLocationOf ], [ a sh:PropertyShape ; sh:class rec:Space ; sh:maxCount 1 ; @@ -2170,7 +2167,18 @@ rec:Space a rdfs:Class, sh:class rec:Space ; sh:name "has part"^^xsd:string ; sh:nodeKind sh:IRI ; - sh:path rec:hasPart ] . + sh:path rec:hasPart ], + [ a sh:PropertyShape ; + sh:class rec:Georeference ; + sh:description "A georeference creates a relationship between the local coordinate system used within a building (e.g., measured in meters) and a geographic coordinate system (e.g., lat, long, alt), such that locally placed Spaces can be resolved and rendered in that geographic coordinate system (e.g., for mapping purposes)."^^xsd:string ; + sh:maxCount 1 ; + sh:name "georeference"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:georeference ], + [ a sh:PropertyShape ; + sh:name "is location of"^^xsd:string ; + sh:nodeKind sh:IRI ; + sh:path rec:isLocationOf ] . rec:SprinklerRoom a rdfs:Class, sh:NodeShape ; @@ -2257,7 +2265,7 @@ rec:ThermostatEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:ThermostatEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Thermostat" ; brick:isReplacedBy brick:Thermostat . rec:ThrustObservation a , @@ -2339,7 +2347,7 @@ rec:VibrationSensorEquipment a rdfs:Class, rdfs:subClassOf rec:SensorEquipment ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:VibrationSensorEquipment" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Vibration_Sensor_Equipment" ; brick:isReplacedBy brick:Vibration_Sensor_Equipment . rec:VirtualBuilding a rdfs:Class, @@ -2424,7 +2432,7 @@ rec:WirelessAccessPoint a rdfs:Class, sh:name "Generation"^^xsd:string ; sh:path rec:generation ] ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:WirelessAccessPoint" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Wireless_Access_Point" ; brick:isReplacedBy brick:Wireless_Access_Point . rec:WorkOrder a rdfs:Class, @@ -2450,6 +2458,7 @@ rec:Zone a rdfs:Class, brick:Ablutions_Room a owl:Class, sh:NodeShape ; + rdfs:label "Ablutions Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room for performing cleansing rituals before prayer"@en ; @@ -2479,6 +2488,7 @@ brick:Ablutions_Room a owl:Class, brick:Absolute_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Absolute Humidity Sensor"@en ; rdfs:subClassOf brick:Humidity_Sensor ; skos:definition "Measures the present state of absolute humidity"@en ; sh:property [ a sh:PropertyShape ; @@ -2517,6 +2527,7 @@ brick:Absolute_Humidity_Sensor a owl:Class, brick:Absorption_Chiller a owl:Class, sh:NodeShape ; + rdfs:label "Absorption Chiller"@en ; rdfs:subClassOf brick:Chiller ; skos:definition "A chiller that utilizes a thermal or/and chemical process to produce the refrigeration effect necessary to provide chilled water. There is no mechanical compression of the refrigerant taking place within the machine, as occurs within more traditional vapor compression type chillers."@en ; sh:rule [ a sh:TripleRule ; @@ -2537,6 +2548,7 @@ brick:Absorption_Chiller a owl:Class, brick:Acceleration_Time_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Acceleration Time Setpoint"@en ; rdfs:subClassOf brick:Time_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Acceleration ; @@ -2558,10 +2570,11 @@ brick:Acceleration_Time_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Time ; - brick:hasQuantity brick:Time . + brick:hasQuantity qudtqk:Time . brick:Access_Reader a owl:Class, sh:NodeShape ; + rdfs:label "Access Reader"@en ; rdfs:subClassOf brick:Access_Control_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Access ; @@ -2591,6 +2604,7 @@ brick:Access_Reader a owl:Class, brick:Active_Chilled_Beam a owl:Class, sh:NodeShape ; + rdfs:label "Active Chilled Beam"@en ; rdfs:subClassOf brick:Chilled_Beam ; skos:definition "A Chilled Beam with an integral primary air connection that induces air flow through the device."@en ; sh:rule [ a sh:TripleRule ; @@ -2616,6 +2630,7 @@ brick:Active_Chilled_Beam a owl:Class, brick:Active_Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Active Power Sensor"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Electric_Power_Sensor ; skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, results in net transfer of energy in one direction"@en ; @@ -2648,6 +2663,7 @@ brick:Active_Power_Sensor a owl:Class, brick:Air_Cooled_Chiller a owl:Class, sh:NodeShape ; + rdfs:label "Air Cooled Chiller"@en ; rdfs:subClassOf brick:Chiller ; skos:definition "A chiller that uses air to cool the refrigerant, used in various commercial and industrial cooling applications"@en ; sh:rule [ a sh:TripleRule ; @@ -2673,6 +2689,7 @@ brick:Air_Cooled_Chiller a owl:Class, brick:Air_Flow_Loss_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Loss Alarm"@en ; rdfs:subClassOf brick:Air_Flow_Alarm ; skos:definition "An alarm that indicates loss in air flow."@en ; sh:rule [ a sh:TripleRule ; @@ -2703,6 +2720,7 @@ brick:Air_Flow_Loss_Alarm a owl:Class, brick:Air_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Air Loop"@en ; rdfs:subClassOf brick:Loop ; skos:definition "The set of connected equipment serving one path of air"@en ; sh:rule [ a sh:TripleRule ; @@ -2718,6 +2736,7 @@ brick:Air_Loop a owl:Class, brick:Alarm_Delay_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Alarm Delay Parameter"@en ; rdfs:subClassOf brick:Delay_Parameter ; skos:definition "A parameter determining how long to delay an alarm after sufficient conditions have been met"@en ; sh:rule [ a sh:TripleRule ; @@ -2741,8 +2760,21 @@ brick:Alarm_Delay_Parameter a owl:Class, tag:Parameter, tag:Point . +brick:Alternating_Current_Frequency a brick:Quantity ; + rdfs:label "Alternating Current Frequency"@en ; + qudt:applicableUnit unit:GigaHZ, + unit:HZ, + unit:KiloHZ, + unit:MegaHZ ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Frequency ; + skos:definition "The frequency of the oscillations of alternating current", + "The frequency of the oscillations of alternating current"@en . + brick:Ammonia_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Ammonia Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Ammonia ; @@ -2764,6 +2796,7 @@ brick:Ammonia_Sensor a owl:Class, brick:Atrium a owl:Class, sh:NodeShape ; + rdfs:label "Atrium"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; @@ -2792,33 +2825,9 @@ brick:Atrium a owl:Class, tag:Space ; brick:isReplacedBy rec:Atrium . -brick:Audio_Visual_Equipment a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:ICT_Equipment ; - skos:definition "Equipment related to sound and visual components such as speakers and displays."@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Audio ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:ICT ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Visual ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Audio, - tag:Equipment, - tag:ICT, - tag:Visual . - brick:Auditorium a owl:Class, sh:NodeShape ; + rdfs:label "Auditorium"@en ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; skos:definition "A space for performances or larger gatherings"@en ; @@ -2848,6 +2857,7 @@ brick:Auditorium a owl:Class, brick:Automatic_Mode_Command a owl:Class, sh:NodeShape ; + rdfs:label "Automatic Mode Command"@en ; rdfs:subClassOf brick:Mode_Command ; skos:definition "Controls whether or not a device or controller is operating in \"Automatic\" mode"@en ; sh:rule [ a sh:TripleRule ; @@ -2873,6 +2883,7 @@ brick:Automatic_Mode_Command a owl:Class, brick:Automatic_Tint_Window a owl:Class, sh:NodeShape ; + rdfs:label "Automatic Tint Window"@en ; rdfs:subClassOf brick:Shading_Equipment ; skos:definition "A window with tint control."@en ; sh:rule [ a sh:TripleRule ; @@ -2903,6 +2914,7 @@ brick:Automatic_Tint_Window a owl:Class, brick:Automatic_Tint_Window_Array a owl:Class, sh:NodeShape ; + rdfs:label "Automatic Tint Window Array"@en ; rdfs:subClassOf brick:System ; skos:definition "An array of Automatic Tint Windows."@en ; sh:rule [ a sh:TripleRule ; @@ -2928,6 +2940,7 @@ brick:Automatic_Tint_Window_Array a owl:Class, brick:Automatic_Transfer_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Automatic Transfer Switch"@en ; rdfs:subClassOf brick:Automatic_Switch, brick:Transfer_Switch ; skos:definition "An automatic transfer switch (ATS) is a device that automatically transfers a power supply from its primary source to a backup source when it senses a failure or outage in the primary source."@en ; @@ -2954,6 +2967,7 @@ brick:Automatic_Transfer_Switch a owl:Class, brick:Availability_Status a owl:Class, sh:NodeShape ; + rdfs:label "Availability Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a piece of equipment, system, or functionality is available for operation"@en ; sh:rule [ a sh:TripleRule ; @@ -2974,6 +2988,7 @@ brick:Availability_Status a owl:Class, brick:Average_Cooling_Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Cooling Demand Sensor"@en ; rdfs:subClassOf brick:Cooling_Demand_Sensor ; skos:definition "Measures the average power consumed by a cooling process as the amount of power consumed over some interval"@en ; sh:rule [ a sh:TripleRule ; @@ -3005,6 +3020,7 @@ brick:Average_Cooling_Demand_Sensor a owl:Class, brick:Average_Exhaust_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Exhaust Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ; skos:definition "The computed average static pressure of air in exhaust regions of an HVAC system over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -3042,10 +3058,11 @@ brick:Average_Exhaust_Air_Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Static_Pressure . + brick:hasQuantity qudtqk:StaticPressure . brick:Average_Heating_Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Heating Demand Sensor"@en ; rdfs:subClassOf brick:Heating_Demand_Sensor ; skos:definition "Measures the average power consumed by a heating process as the amount of power consumed over some interval"@en ; sh:rule [ a sh:TripleRule ; @@ -3077,6 +3094,7 @@ brick:Average_Heating_Demand_Sensor a owl:Class, brick:Average_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Zone Air Temperature Sensor"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; skos:definition "The computed average temperature of air in a zone, over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -3109,10 +3127,11 @@ brick:Average_Zone_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Backflow_Preventer_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Backflow Preventer Valve"@en ; rdfs:subClassOf brick:Check_Valve ; skos:definition "Valve designed to prevent the reverse flow of fluid, typically water, thereby protecting potable water supplies from contamination or pollution."@en ; sh:rule [ a sh:TripleRule ; @@ -3133,6 +3152,7 @@ brick:Backflow_Preventer_Valve a owl:Class, brick:Basement a owl:Class, sh:NodeShape ; + rdfs:label "Basement"@en ; rdfs:subClassOf brick:Floor ; owl:deprecated true ; skos:definition "The floor of a building which is partly or entirely below ground level."@en ; @@ -3157,6 +3177,7 @@ brick:Basement a owl:Class, brick:Battery a owl:Class, sh:NodeShape ; + rdfs:label "Battery"@en ; rdfs:subClassOf brick:Energy_Storage ; skos:definition "A container that stores chemical energy that can be converted into electricity and used as a source of power"@en ; sh:rule [ a sh:TripleRule ; @@ -3182,6 +3203,7 @@ brick:Battery a owl:Class, brick:Battery_Energy_Storage_System a owl:Class, sh:NodeShape ; + rdfs:label "Battery Energy Storage System"@en ; rdfs:subClassOf brick:Energy_Storage_System ; skos:definition "A collection of batteries that provides energy storage, along with their supporting equipment"@en ; sh:rule [ a sh:TripleRule ; @@ -3207,6 +3229,7 @@ brick:Battery_Energy_Storage_System a owl:Class, brick:Battery_Room a owl:Class, sh:NodeShape ; + rdfs:label "Battery Room"@en ; rdfs:subClassOf brick:Electrical_Room ; owl:deprecated true ; skos:definition "A room used to hold batteries for backup power"@en ; @@ -3246,6 +3269,7 @@ brick:Battery_Room a owl:Class, brick:Battery_Voltage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Battery Voltage Sensor"@en ; rdfs:subClassOf brick:Voltage_Sensor ; skos:definition "Measures the capacity of a battery"@en ; sh:rule [ a sh:TripleRule ; @@ -3272,6 +3296,7 @@ brick:Battery_Voltage_Sensor a owl:Class, brick:Bench_Space a owl:Class, sh:NodeShape ; + rdfs:label "Bench Space"@en ; rdfs:subClassOf brick:Outdoor_Area ; owl:deprecated true ; skos:definition "For areas of play in a stadium, the area for partcipants and referees by the side of the field"@en ; @@ -3301,6 +3326,7 @@ brick:Bench_Space a owl:Class, brick:Blind a owl:Class, sh:NodeShape ; + rdfs:label "Blind"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Shading_Equipment ; skos:definition "A window covering."@en ; @@ -3322,6 +3348,7 @@ brick:Blind a owl:Class, brick:Blind_Group a owl:Class, sh:NodeShape ; + rdfs:label "Blind Group"@en ; rdfs:subClassOf brick:Shading_System ; skos:definition "A group of Blinds commonly attached to a single controller."@en ; sh:rule [ a sh:TripleRule ; @@ -3347,6 +3374,7 @@ brick:Blind_Group a owl:Class, brick:Boiler_Command a owl:Class, sh:NodeShape ; + rdfs:label "Boiler Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "A command to control a boiler"@en ; sh:rule [ a sh:TripleRule ; @@ -3367,6 +3395,7 @@ brick:Boiler_Command a owl:Class, brick:Booster_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Booster Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "Fan activated to increase airflow beyond what is provided by the default configuration"@en ; sh:rule [ a sh:TripleRule ; @@ -3387,6 +3416,7 @@ brick:Booster_Fan a owl:Class, brick:Box_Mode_Command a owl:Class, sh:NodeShape ; + rdfs:label "Box Mode Command"@en ; rdfs:subClassOf brick:Mode_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Box ; @@ -3411,6 +3441,7 @@ brick:Box_Mode_Command a owl:Class, brick:Branch_Selector a owl:Class, sh:NodeShape ; + rdfs:label "Branch Selector"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A device in VRF systems that regulates the flow of refrigerant to different indoor units or branches, ensuring optimal distribution of heating or cooling according to the specific requirements of each zone or area in the building."@en ; sh:rule [ a sh:TripleRule ; @@ -3436,6 +3467,7 @@ brick:Branch_Selector a owl:Class, brick:Breaker_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Breaker Panel"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "Breaker Panel distributes power into various end-uses."@en ; sh:rule [ a sh:TripleRule ; @@ -3451,6 +3483,7 @@ brick:Breaker_Panel a owl:Class, brick:Broadcast_Room a owl:Class, sh:NodeShape ; + rdfs:label "Broadcast Room"@en ; rdfs:subClassOf brick:Media_Room ; owl:deprecated true ; skos:definition "A space to organize and manage a broadcast. Separate from studio"@en ; @@ -3485,6 +3518,7 @@ brick:Broadcast_Room a owl:Class, brick:Building_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Building Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Setpoint for humidity in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -3517,6 +3551,7 @@ brick:Building_Air_Humidity_Setpoint a owl:Class, brick:Building_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Building Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Sensor ; skos:definition "The static pressure of air within a building"@en ; sh:rule [ a sh:TripleRule ; @@ -3549,11 +3584,12 @@ brick:Building_Air_Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Building_Air . brick:Building_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Building Air Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Air_Pressure_Setpoint, brick:Static_Pressure_Setpoint ; skos:definition "Sets static pressure of the entire building"@en ; @@ -3587,11 +3623,12 @@ brick:Building_Air_Static_Pressure_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Static ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Building_Air . brick:Building_Chilled_Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Chilled Water Meter"@en ; rdfs:subClassOf brick:Building_Meter, brick:Chilled_Water_Meter ; skos:definition "A meter that measures the usage or consumption of chilled water of a whole building"@en ; @@ -3624,6 +3661,7 @@ brick:Building_Chilled_Water_Meter a owl:Class, brick:Building_Disconnect_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Building Disconnect Switch"@en ; rdfs:subClassOf brick:Disconnect_Switch ; sh:rule [ a sh:TripleRule ; sh:object tag:Building ; @@ -3648,6 +3686,7 @@ brick:Building_Disconnect_Switch a owl:Class, brick:Building_Electrical_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Electrical Meter"@en ; rdfs:subClassOf brick:Building_Meter, brick:Electrical_Meter ; skos:definition "A meter that measures the usage or consumption of electricity of a whole building"@en ; @@ -3674,6 +3713,7 @@ brick:Building_Electrical_Meter a owl:Class, brick:Building_Gas_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Gas Meter"@en ; rdfs:subClassOf brick:Building_Meter, brick:Gas_Meter ; skos:definition "A meter that measures the usage or consumption of gas of a whole building"@en ; @@ -3701,6 +3741,7 @@ brick:Building_Gas_Meter a owl:Class, brick:Building_Hot_Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Hot Water Meter"@en ; rdfs:subClassOf brick:Building_Meter, brick:Hot_Water_Meter ; skos:definition "A meter that measures the usage or consumption of hot water of a whole building"@en ; @@ -3733,6 +3774,7 @@ brick:Building_Hot_Water_Meter a owl:Class, brick:Building_Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Water Meter"@en ; rdfs:subClassOf brick:Building_Meter, brick:Water_Meter ; skos:definition "A meter that measures the usage or consumption of water of a whole building"@en ; @@ -3760,6 +3802,7 @@ brick:Building_Water_Meter a owl:Class, brick:Bus_Riser a owl:Class, sh:NodeShape ; + rdfs:label "Bus Riser"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "Bus Risers are commonly fed from a switchgear and rise up through a series of floors to the main power distribution source for each floor."@en ; sh:rule [ a sh:TripleRule ; @@ -3775,6 +3818,7 @@ brick:Bus_Riser a owl:Class, brick:Bypass_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of bypass air"@en ; sh:rule [ a sh:TripleRule ; @@ -3807,6 +3851,7 @@ brick:Bypass_Air_Flow_Sensor a owl:Class, brick:Bypass_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for bypass air"@en ; sh:rule [ a sh:TripleRule ; @@ -3839,6 +3884,7 @@ brick:Bypass_Air_Humidity_Setpoint a owl:Class, brick:Bypass_Command a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Command"@en ; rdfs:subClassOf brick:Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Bypass ; @@ -3858,6 +3904,7 @@ brick:Bypass_Command a owl:Class, brick:Bypass_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A bypass damper is a type of damper that is employed in forced-air bypass applications to reduce the buildup of static pressure, usually when certain zone dampers are closed."@en ; sh:rule [ a sh:TripleRule ; @@ -3878,6 +3925,7 @@ brick:Bypass_Damper a owl:Class, brick:Bypass_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the rate of flow of bypass water"@en ; sh:rule [ a sh:TripleRule ; @@ -3910,6 +3958,7 @@ brick:Bypass_Water_Flow_Sensor a owl:Class, brick:Bypass_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of bypass water"@en ; sh:rule [ a sh:TripleRule ; @@ -3942,6 +3991,7 @@ brick:Bypass_Water_Flow_Setpoint a owl:Class, brick:CO2_Alarm_Sensitivity_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Alarm Sensitivity Parameter"@en ; rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ; skos:definition "A parameter indicates the sensitivity to activate a CO2 alarm."@en ; sh:rule [ a sh:TripleRule ; @@ -3972,6 +4022,7 @@ brick:CO2_Alarm_Sensitivity_Parameter a owl:Class, brick:CO2_Differential_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Differential Sensor"@en ; rdfs:subClassOf brick:CO2_Sensor ; skos:definition "Measures the difference between CO2 levels of inside and outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -3999,6 +4050,7 @@ brick:CO2_Differential_Sensor a owl:Class, brick:CO_Differential_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO Differential Sensor"@en ; rdfs:subClassOf brick:CO_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:CO ; @@ -4025,6 +4077,7 @@ brick:CO_Differential_Sensor a owl:Class, brick:CO_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO Level Sensor"@en ; rdfs:subClassOf brick:CO_Sensor ; skos:definition "Measures the concentration of CO"@en ; sh:rule [ a sh:TripleRule ; @@ -4051,6 +4104,7 @@ brick:CO_Level_Sensor a owl:Class, brick:Cafeteria a owl:Class, sh:NodeShape ; + rdfs:label "Cafeteria"@en ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; skos:definition "A space to serve food and beverages"@en ; @@ -4080,6 +4134,7 @@ brick:Cafeteria a owl:Class, brick:Capacity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Capacity Sensor"@en ; rdfs:subClassOf brick:Sensor ; sh:property [ a sh:PropertyShape ; sh:class rec:DoubleValueObservation ; @@ -4106,6 +4161,7 @@ brick:Capacity_Sensor a owl:Class, brick:Capillary_Tube_Metering_Device a owl:Class, sh:NodeShape ; + rdfs:label "Capillary Tube Metering Device"@en ; rdfs:subClassOf brick:Refrigerant_Metering_Device ; skos:definition "A fixed orifice device in refrigeration systems that controls refrigerant flow based on its diameter and length, without moving parts"@en ; sh:rule [ a sh:TripleRule ; @@ -4136,6 +4192,7 @@ brick:Capillary_Tube_Metering_Device a owl:Class, brick:Cassette_Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Cassette Fan Coil Unit"@en ; rdfs:subClassOf brick:Fan_Coil_Unit ; skos:definition "A type of fan coil unit installed within the ceiling void, typically using a cassette for air delivery"@en ; sh:rule [ a sh:TripleRule ; @@ -4176,6 +4233,7 @@ brick:Cassette_Fan_Coil_Unit a owl:Class, brick:Ceiling_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Ceiling Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "A fan installed on the ceiling of a room for the purpose of air circulation"@en ; sh:rule [ a sh:TripleRule ; @@ -4196,6 +4254,7 @@ brick:Ceiling_Fan a owl:Class, brick:Centrifugal_Chiller a owl:Class, sh:NodeShape ; + rdfs:label "Centrifugal Chiller"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Chiller ; skos:definition "A chiller that uses the vapor compression cycle to chill water. It throws off the heat collected from the chilled water plus the heat from the compressor to a water loop"@en ; @@ -4217,6 +4276,7 @@ brick:Centrifugal_Chiller a owl:Class, brick:Change_Filter_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Change Filter Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates that a filter must be changed"@en ; sh:rule [ a sh:TripleRule ; @@ -4242,6 +4302,7 @@ brick:Change_Filter_Alarm a owl:Class, brick:Chilled_Water_Booster_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Booster Pump"@en ; rdfs:subClassOf brick:Booster_Pump, brick:Chilled_Water_Pump ; skos:definition "Used to increase the pressure and flow of chilled water in a system to ensure adequate supply where needed."@en ; @@ -4273,6 +4334,7 @@ brick:Chilled_Water_Booster_Pump a owl:Class, brick:Chilled_Water_Circulator_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Circulator Pump"@en ; rdfs:subClassOf brick:Chilled_Water_Pump, brick:Circulator_Pump ; skos:definition "Used to move chilled water in a closed circuit, ensuring continuous flow."@en ; @@ -4304,6 +4366,7 @@ brick:Chilled_Water_Circulator_Pump a owl:Class, brick:Chilled_Water_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Coil"@en ; rdfs:subClassOf brick:Cooling_Coil ; skos:definition "A cooling element made of pipe or tube that removes heat from equipment, machines or airflows that is filled with chilled water."@en ; sh:rule [ a sh:TripleRule ; @@ -4334,6 +4397,7 @@ brick:Chilled_Water_Coil a owl:Class, brick:Chilled_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of differential pressure of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -4376,6 +4440,7 @@ brick:Chilled_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, brick:Chilled_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Chilled ; @@ -4425,6 +4490,7 @@ brick:Chilled_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, brick:Chilled_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Load Shed Reset Status"@en ; rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Chilled ; @@ -4474,6 +4540,7 @@ brick:Chilled_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, brick:Chilled_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Load Shed Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Setpoint, brick:Load_Shed_Differential_Pressure_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -4520,6 +4587,7 @@ brick:Chilled_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class, brick:Chilled_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -4569,6 +4637,7 @@ brick:Chilled_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Clas brick:Chilled_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Water_Differential_Pressure_Sensor ; skos:definition "Measures the difference in water pressure on either side of a chilled water valve"@en ; sh:rule [ a sh:TripleRule ; @@ -4606,6 +4675,7 @@ brick:Chilled_Water_Differential_Pressure_Sensor a owl:Class, brick:Chilled_Water_Differential_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Step Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Step_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Chilled ; @@ -4645,6 +4715,7 @@ brick:Chilled_Water_Differential_Pressure_Step_Parameter a owl:Class, brick:Chilled_Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Water_Differential_Temperature_Sensor ; skos:definition "Measures the difference in temperature between the entering water to the chiller or other water cooling device and leaving water from the same chiller or other water cooling device"@en ; @@ -4682,6 +4753,7 @@ brick:Chilled_Water_Differential_Temperature_Sensor a owl:Class, brick:hasSubstance brick:Chilled_Water . brick:Chilled_Water_Discharge_Flow_Sensor a owl:Class ; + rdfs:label "Chilled Water Discharge Flow Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Discharge_Water_Flow_Sensor ; owl:deprecated true ; @@ -4690,6 +4762,7 @@ brick:Chilled_Water_Discharge_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Chilled_Water_Flow_Sensor . brick:Chilled_Water_Discharge_Flow_Setpoint a owl:Class ; + rdfs:label "Chilled Water Discharge Flow Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, brick:Discharge_Water_Flow_Setpoint ; owl:deprecated true ; @@ -4698,6 +4771,7 @@ brick:Chilled_Water_Discharge_Flow_Setpoint a owl:Class ; brick:isReplacedBy brick:Leaving_Chilled_Water_Flow_Setpoint . brick:Chilled_Water_Discharge_Temperature_Sensor a owl:Class ; + rdfs:label "Chilled Water Discharge Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Discharge_Water_Temperature_Sensor ; owl:deprecated true ; @@ -4707,6 +4781,7 @@ brick:Chilled_Water_Discharge_Temperature_Sensor a owl:Class ; brick:Chilled_Water_Gauge_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Gauge Pressure Sensor"@en ; rdfs:subClassOf brick:Gauge_Pressure_Sensor ; skos:definition "Sensor measuring the gauge pressure (zero-referenced against ambient air pressure) of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -4739,10 +4814,11 @@ brick:Chilled_Water_Gauge_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Water ; - brick:hasQuantity brick:Gauge_Pressure . + brick:hasQuantity qudtqk:GaugePressure . brick:Chilled_Water_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Loop"@en ; rdfs:subClassOf brick:Water_Loop ; skos:definition "A collection of equipment that transport and regulate chilled water among each other"@en ; sh:rule [ a sh:TripleRule ; @@ -4762,6 +4838,7 @@ brick:Chilled_Water_Loop a owl:Class, tag:Water . brick:Chilled_Water_Return_Flow_Sensor a owl:Class ; + rdfs:label "Chilled Water Return Flow Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Return_Water_Flow_Sensor ; owl:deprecated true ; @@ -4770,6 +4847,7 @@ brick:Chilled_Water_Return_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_Chilled_Water_Flow_Sensor . brick:Chilled_Water_Return_Temperature_Sensor a owl:Class ; + rdfs:label "Chilled Water Return Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Return_Water_Temperature_Sensor ; owl:deprecated true ; @@ -4779,6 +4857,7 @@ brick:Chilled_Water_Return_Temperature_Sensor a owl:Class ; brick:Chilled_Water_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; skos:definition "Sets static pressure of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -4811,11 +4890,12 @@ brick:Chilled_Water_Static_Pressure_Setpoint a owl:Class, tag:Setpoint, tag:Static, tag:Water ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Chilled_Water . brick:Chilled_Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Storage Tank"@en ; rdfs:subClassOf brick:Water_Storage_Tank ; skos:definition "A tank specifically designed to store chilled water in HVAC systems."@en ; sh:rule [ a sh:TripleRule ; @@ -4840,6 +4920,7 @@ brick:Chilled_Water_Storage_Tank a owl:Class, tag:Water . brick:Chilled_Water_Supply_Flow_Sensor a owl:Class ; + rdfs:label "Chilled Water Supply Flow Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Supply_Water_Flow_Sensor ; owl:deprecated true ; @@ -4848,6 +4929,7 @@ brick:Chilled_Water_Supply_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Chilled_Water_Flow_Sensor . brick:Chilled_Water_Supply_Flow_Setpoint a owl:Class ; + rdfs:label "Chilled Water Supply Flow Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, brick:Supply_Water_Flow_Setpoint ; owl:deprecated true ; @@ -4856,6 +4938,7 @@ brick:Chilled_Water_Supply_Flow_Setpoint a owl:Class ; brick:isReplacedBy brick:Leaving_Chilled_Water_Flow_Setpoint . brick:Chilled_Water_Supply_Temperature_Sensor a owl:Class ; + rdfs:label "Chilled Water Supply Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor, brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; @@ -4865,6 +4948,7 @@ brick:Chilled_Water_Supply_Temperature_Sensor a owl:Class ; brick:Chilled_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water System"@en ; rdfs:subClassOf brick:Water_System ; skos:definition "The equipment, devices and conduits that handle the production and distribution of chilled water in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -4885,6 +4969,7 @@ brick:Chilled_Water_System a owl:Class, brick:Chilled_Water_System_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water System Enable Command"@en ; rdfs:subClassOf brick:System_Enable_Command ; skos:definition "Enables operation of the chilled water system"@en ; sh:rule [ a sh:TripleRule ; @@ -4920,6 +5005,7 @@ brick:Chilled_Water_System_Enable_Command a owl:Class, brick:Chilled_Water_Thermal_Energy_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Thermal Energy Storage Tank"@en ; rdfs:subClassOf brick:Thermal_Energy_Storage_Tank ; skos:definition "A Thermal Energy Storage (TES) tank is a specialized container for storing thermal energy, enabling more efficient cooling by balancing supply and demand. It helps reduce operational costs and minimizes the need for larger equipment."@en ; sh:rule [ a sh:TripleRule ; @@ -4960,6 +5046,7 @@ brick:Chilled_Water_Thermal_Energy_Storage_Tank a owl:Class, brick:Chilled_Water_Thermal_Expansion_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Thermal Expansion Tank"@en ; rdfs:subClassOf brick:Thermal_Expansion_Tank ; skos:definition "A thermal expansion tank designed specifically for chilled water systems."@en ; sh:rule [ a sh:TripleRule ; @@ -4990,6 +5077,7 @@ brick:Chilled_Water_Thermal_Expansion_Tank a owl:Class, brick:Chilled_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Valve"@en ; rdfs:subClassOf brick:HVAC_Valve, brick:Water_Valve ; skos:definition "A valve that modulates the flow of chilled water"@en ; @@ -5016,6 +5104,7 @@ brick:Chilled_Water_Valve a owl:Class, brick:Close_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Close Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Close_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -5041,6 +5130,8 @@ brick:Close_Limit a owl:Class, brick:Cloudage a brick:Quantity ; rdfs:label "Cloudage"@en ; + qudt:applicableUnit unit:OKTA ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader qudtqk:Dimensionless ; skos:definition "The fraction of the sky obscured by clouds when observed from a particular location", @@ -5048,6 +5139,7 @@ brick:Cloudage a brick:Quantity ; brick:Cold_Box a owl:Class, sh:NodeShape ; + rdfs:label "Cold Box"@en ; rdfs:subClassOf brick:Laboratory ; owl:deprecated true ; skos:definition "in a gas separation unit, the insulated section that contains the low-temperature heat exchangers and distillation columns."@en ; @@ -5082,6 +5174,7 @@ brick:Cold_Box a owl:Class, brick:Cold_Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Cold Water Storage Tank"@en ; rdfs:subClassOf brick:Water_Storage_Tank ; skos:definition "A tank used to store cold water, usually in a building's water supply system."@en ; sh:rule [ a sh:TripleRule ; @@ -5107,6 +5200,7 @@ brick:Cold_Water_Storage_Tank a owl:Class, brick:Coldest_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Coldest Zone Air Temperature Sensor"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; skos:definition "The zone temperature that is coldest; drives the supply temperature of hot air. A computed value rather than a physical sensor. Also referred to as a 'Lowest Zone Air Temperature Sensor'"@en ; sh:rule [ a sh:TripleRule ; @@ -5139,10 +5233,11 @@ brick:Coldest_Zone_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Collection_Basin_Water_Heater a owl:Class, sh:NodeShape ; + rdfs:label "Collection Basin Water Heater"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Water_Heater ; skos:definition "Basin heaters prevent cold water basin freeze-up, e.g. in cooling towers, closed circuit fluid coolers, or evaporative condensers"@en ; @@ -5174,6 +5269,7 @@ brick:Collection_Basin_Water_Heater a owl:Class, brick:Collection_Basin_Water_Level_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Collection Basin Water Level Alarm"@en ; rdfs:subClassOf brick:Water_Level_Alarm ; skos:definition "An alarm that indicates a high or low level of water in the collection basin, e.g. within a Cooling_Tower"@en ; sh:rule [ a sh:TripleRule ; @@ -5209,6 +5305,7 @@ brick:Collection_Basin_Water_Level_Alarm a owl:Class, brick:Collection_Basin_Water_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Collection Basin Water Level Sensor"@en ; rdfs:subClassOf brick:Water_Level_Sensor ; skos:definition "Measures the level of the water in the collection basin, e.g. within a Cooling_Tower"@en ; sh:rule [ a sh:TripleRule ; @@ -5246,6 +5343,7 @@ brick:Collection_Basin_Water_Level_Sensor a owl:Class, brick:Collection_Basin_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Collection Basin Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of the water in the collection basin, e.g. within a Cooling_Tower"@en ; sh:rule [ a sh:TripleRule ; @@ -5278,11 +5376,12 @@ brick:Collection_Basin_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Collection_Basin_Water . brick:Communication_Loss_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Communication Loss Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates a loss of communication e.g. with a device or controller"@en ; sh:rule [ a sh:TripleRule ; @@ -5308,6 +5407,7 @@ brick:Communication_Loss_Alarm a owl:Class, brick:Compressor a owl:Class, sh:NodeShape ; + rdfs:label "Compressor"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "(1) device for mechanically increasing the pressure of a gas. (2) often described as being either open, hermetic, or semihermetic to describe how the compressor and motor drive is situated in relation to the gas or vapor being compressed. Types include centrifugal, axial flow, reciprocating, rotary screw, rotary vane, scroll, or diaphragm. 1. device for mechanically increasing the pressure of a gas. 2. specific machine, with or without accessories, for compressing refrigerant vapor."@en ; sh:rule [ a sh:TripleRule ; @@ -5323,6 +5423,7 @@ brick:Compressor a owl:Class, brick:Concession a owl:Class, sh:NodeShape ; + rdfs:label "Concession"@en ; rdfs:subClassOf brick:Food_Service_Room ; owl:deprecated true ; skos:definition "A space to sell food and beverages. Usually embedded in a larger space and does not include a space where people consume their purchases"@en ; @@ -5362,6 +5463,7 @@ brick:Concession a owl:Class, brick:Condensate_Leak_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Condensate Leak Alarm"@en ; rdfs:subClassOf brick:Leak_Alarm ; skos:definition "An alarm that indicates a leak of condensate from a cooling system"@en ; sh:rule [ a sh:TripleRule ; @@ -5392,6 +5494,7 @@ brick:Condenser owl:deprecated true ; brick:Condenser_Heat_Exchanger a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Heat Exchanger"@en ; rdfs:subClassOf brick:Heat_Exchanger ; skos:definition "A heat exchanger in which the primary heat transfer vapor changes its state to a liquid phase."@en ; sh:rule [ a sh:TripleRule ; @@ -5417,6 +5520,7 @@ brick:Condenser_Heat_Exchanger a owl:Class, brick:Condenser_Water_Booster_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Booster Pump"@en ; rdfs:subClassOf brick:Booster_Pump, brick:Condenser_Water_Pump ; skos:definition "Used to increase the pressure and flow of condenser water in a system to ensure adequate supply where needed."@en ; @@ -5448,6 +5552,7 @@ brick:Condenser_Water_Booster_Pump a owl:Class, brick:Condenser_Water_Bypass_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Bypass Valve"@en ; rdfs:subClassOf brick:Bypass_Valve ; skos:definition "A valve installed in a bypass line of a condenser water loop"@en ; sh:rule [ a sh:TripleRule ; @@ -5478,6 +5583,7 @@ brick:Condenser_Water_Bypass_Valve a owl:Class, brick:Condenser_Water_Circulator_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Circulator Pump"@en ; rdfs:subClassOf brick:Circulator_Pump, brick:Condenser_Water_Pump ; skos:definition "Used to move chilled water in a closed circuit, ensuring continuous flow."@en ; @@ -5509,6 +5615,7 @@ brick:Condenser_Water_Circulator_Pump a owl:Class, brick:Condenser_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -5540,6 +5647,7 @@ brick:Condenser_Water_Flow_Setpoint a owl:Class, brick:Condenser_Water_Isolation_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Isolation Valve"@en ; rdfs:subClassOf brick:Isolation_Valve ; skos:definition "An isolation valve installed in the condenser water loop"@en ; sh:rule [ a sh:TripleRule ; @@ -5570,6 +5678,7 @@ brick:Condenser_Water_Isolation_Valve a owl:Class, brick:Condenser_Water_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Loop"@en ; rdfs:subClassOf brick:Water_Loop ; skos:definition "A collection of equipment that transport and regulate condenser water among each other"@en ; sh:rule [ a sh:TripleRule ; @@ -5590,6 +5699,7 @@ brick:Condenser_Water_Loop a owl:Class, brick:Condenser_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water System"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Water_System ; skos:definition "A heat rejection system consisting of (typically) cooling towers, condenser water pumps, chillers and the piping connecting the components"@en ; @@ -5611,6 +5721,7 @@ brick:Condenser_Water_System a owl:Class, brick:Condenser_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Valve"@en ; rdfs:subClassOf brick:HVAC_Valve, brick:Water_Valve ; skos:definition "A valve that modulates the flow of condenser water"@en ; @@ -5637,6 +5748,7 @@ brick:Condenser_Water_Valve a owl:Class, brick:Condensing_Natural_Gas_Boiler a owl:Class, sh:NodeShape ; + rdfs:label "Condensing Natural Gas Boiler"@en ; rdfs:subClassOf brick:Natural_Gas_Boiler ; skos:definition "A closed, pressure vessel that uses natural gas and heat exchanger that capture and reuse any latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; sh:rule [ a sh:TripleRule ; @@ -5667,6 +5779,7 @@ brick:Condensing_Natural_Gas_Boiler a owl:Class, brick:Conference_Room a owl:Class, sh:NodeShape ; + rdfs:label "Conference Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space dedicated in which to hold a meetings"@en ; @@ -5696,6 +5809,7 @@ brick:Conference_Room a owl:Class, brick:Contact_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Contact Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Senses or detects contact, such as for determining if a door is closed."@en ; sh:property [ a sh:PropertyShape ; @@ -5723,6 +5837,7 @@ brick:Contact_Sensor a owl:Class, brick:Control_Room a owl:Class, sh:NodeShape ; + rdfs:label "Control Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space from which operations are managed"@en ; @@ -5752,6 +5867,7 @@ brick:Control_Room a owl:Class, brick:Cooling_Command a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the amount of cooling to be delivered (typically as a proportion of total cooling output)"@en ; sh:rule [ a sh:TripleRule ; @@ -5772,6 +5888,7 @@ brick:Cooling_Command a owl:Class, brick:Cooling_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Demand Setpoint"@en ; rdfs:subClassOf brick:Demand_Setpoint ; skos:definition "Sets the rate required for cooling"@en ; sh:rule [ a sh:TripleRule ; @@ -5798,6 +5915,7 @@ brick:Cooling_Demand_Setpoint a owl:Class, brick:Cooling_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Command that enables cooling functionality in equipment but certain condition(s) must be met first before actively cooling. For the actively cooling control, see Cooling_Command."@en ; sh:rule [ a sh:TripleRule ; @@ -5823,6 +5941,7 @@ brick:Cooling_Enable_Command a owl:Class, brick:Cooling_Only_Air_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Only Air Source Condensing Unit"@en ; rdfs:subClassOf brick:Cooling_Only_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -5862,6 +5981,7 @@ brick:Cooling_Only_Air_Source_Condensing_Unit a owl:Class, brick:Cooling_Only_Ground_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Only Ground Source Condensing Unit"@en ; rdfs:subClassOf brick:Cooling_Only_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -5901,6 +6021,7 @@ brick:Cooling_Only_Ground_Source_Condensing_Unit a owl:Class, brick:Cooling_Only_Water_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Only Water Source Condensing Unit"@en ; rdfs:subClassOf brick:Cooling_Only_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -5940,6 +6061,7 @@ brick:Cooling_Only_Water_Source_Condensing_Unit a owl:Class, brick:Cooling_Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Start Stop Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Cool ; @@ -5969,6 +6091,7 @@ brick:Cooling_Start_Stop_Status a owl:Class, brick:Cooling_Tower a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Tower"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A cooling tower is a heat rejection device that rejects waste heat to the atmosphere through the cooling of a water stream to a lower temperature. Cooling towers may either use the evaporation of water to remove process heat and cool the working fluid to near the wet-bulb air temperature or, in the case of closed circuit dry cooling towers, rely solely on air to cool the working fluid to near the dry-bulb air temperature."@en ; @@ -5990,6 +6113,7 @@ brick:Cooling_Tower a owl:Class, brick:Cooling_Tower_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Tower Fan"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Fan ; skos:definition "A fan that pulls air through a cooling tower and across the louvers where the water falls to aid in heat exchange by the process of evaporation"@en ; @@ -6016,7 +6140,9 @@ brick:Cooling_Tower_Fan a owl:Class, brick:Cooling_Valve a owl:Class, sh:NodeShape ; - rdfs:subClassOf brick:HVAC_Equipment ; + rdfs:label "Cooling Valve"@en ; + rdfs:subClassOf brick:HVAC_Equipment, + brick:Valve ; skos:definition "A valve that controls air temperature by modulating the amount of cold water flowing through a cooling coil"@en ; sh:rule [ a sh:TripleRule ; sh:object tag:Cool ; @@ -6036,6 +6162,7 @@ brick:Cooling_Valve a owl:Class, brick:Copy_Room a owl:Class, sh:NodeShape ; + rdfs:label "Copy Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room set aside for common office equipment, including printers and copiers"@en ; @@ -6065,6 +6192,7 @@ brick:Copy_Room a owl:Class, brick:Core_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Core Temperature Sensor"@en ; rdfs:subClassOf brick:Embedded_Temperature_Sensor ; skos:definition "Measures the internal temperature of the radiant layer at the heat source or sink level of the radiant heating and cooling HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -6087,10 +6215,11 @@ brick:Core_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Core_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Core Temperature Setpoint"@en ; rdfs:subClassOf brick:Embedded_Temperature_Setpoint ; skos:definition "Sets temperature for the core, i.e. the temperature at the heat source or sink level, of the radiant panel."@en ; sh:rule [ a sh:TripleRule ; @@ -6113,10 +6242,11 @@ brick:Core_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Cubicle a owl:Class, sh:NodeShape ; + rdfs:label "Cubicle"@en ; rdfs:subClassOf brick:Office ; owl:deprecated true ; skos:definition "A smaller space set aside for an individual, but not with a door and without full-height walls"@en ; @@ -6149,8 +6279,28 @@ brick:Cubicle a owl:Class, tag:Space ; brick:isReplacedBy rec:Workspace . +brick:Current_Angle a brick:Quantity ; + rdfs:label "Current Angle"@en ; + qudt:applicableUnit unit:ARCMIN, + unit:ARCSEC, + unit:DEG, + unit:GON, + unit:GRAD, + unit:MIL, + unit:MicroRAD, + unit:MilliARCSEC, + unit:MilliRAD, + unit:RAD, + unit:REV ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader brick:Phasor_Angle ; + skos:definition "Angle of current phasor", + "Angle of current phasor"@en . + brick:Current_Imbalance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Current Imbalance Sensor"@en ; rdfs:subClassOf brick:Imbalance_Sensor ; skos:definition "A sensor which measures the current difference (imbalance) between phases of an electrical system"@en ; sh:rule [ a sh:TripleRule ; @@ -6177,6 +6327,7 @@ brick:Current_Imbalance_Sensor a owl:Class, brick:Current_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Current Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Current_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -6202,6 +6353,7 @@ brick:Current_Limit a owl:Class, brick:Current_Ratio_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Current Ratio Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets the ratio of currents in a transformer"@en ; sh:rule [ a sh:TripleRule ; @@ -6229,10 +6381,21 @@ brick:Current_Ratio_Setpoint a owl:Class, tag:Point, tag:Ratio, tag:Setpoint ; - brick:hasQuantity brick:Electric_Current . + brick:hasQuantity qudtqk:ElectricCurrent . + +brick:Current_Total_Harmonic_Distortion a brick:Quantity ; + rdfs:label "Current Total Harmonic Distortion"@en ; + qudt:applicableUnit unit:DeciB_M, + unit:PERCENT ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Dimensionless ; + skos:definition "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)", + "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)"@en . brick:Curtailment_Override_Command a owl:Class, sh:NodeShape ; + rdfs:label "Curtailment Override Command"@en ; rdfs:subClassOf brick:Override_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -6257,6 +6420,7 @@ brick:Curtailment_Override_Command a owl:Class, brick:DC_Bus_Voltage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "DC Bus Voltage Sensor"@en ; rdfs:subClassOf brick:Voltage_Sensor ; skos:definition "Measures the voltage across a DC bus"@en ; sh:rule [ a sh:TripleRule ; @@ -6288,6 +6452,7 @@ brick:DC_Bus_Voltage_Sensor a owl:Class, brick:Damper_Position_Command a owl:Class, sh:NodeShape ; + rdfs:label "Damper Position Command"@en ; rdfs:subClassOf brick:Damper_Command, brick:Position_Command ; skos:definition "Controls the position (the degree of openness) of a damper"@en ; @@ -6315,6 +6480,7 @@ brick:Damper_Position_Command a owl:Class, brick:Damper_Position_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Damper Position Sensor"@en ; rdfs:subClassOf brick:Position_Sensor ; skos:definition "Measures the current position of a damper in terms of the percent of fully open"@en ; sh:rule [ a sh:TripleRule ; @@ -6341,6 +6507,7 @@ brick:Damper_Position_Sensor a owl:Class, brick:Damper_Position_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Damper Position Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets the position of damper"@en ; sh:rule [ a sh:TripleRule ; @@ -6367,6 +6534,7 @@ brick:Damper_Position_Setpoint a owl:Class, brick:Damper_Position_Status a owl:Class, sh:NodeShape ; + rdfs:label "Damper Position Status"@en ; rdfs:subClassOf brick:Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Damper ; @@ -6392,6 +6560,7 @@ brick:Damper_Position_Status a owl:Class, brick:Deceleration_Time_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Deceleration Time Setpoint"@en ; rdfs:subClassOf brick:Time_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Deceleration ; @@ -6413,10 +6582,11 @@ brick:Deceleration_Time_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Time ; - brick:hasQuantity brick:Time . + brick:hasQuantity qudtqk:Time . brick:Dehumidification_Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "Dehumidification Start Stop Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Dehumidification ; @@ -6446,6 +6616,7 @@ brick:Dehumidification_Start_Stop_Status a owl:Class, brick:Dehumidify_Command a owl:Class, sh:NodeShape ; + rdfs:label "Dehumidify Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Triggers the dehumidification process, actively removing moisture from the air to achieve desired humidity levels"@en ; sh:rule [ a sh:TripleRule ; @@ -6467,6 +6638,7 @@ brick:Dehumidify_Command a owl:Class, brick:Deionised_Water_Conductivity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Deionised Water Conductivity Sensor"@en ; rdfs:subClassOf brick:Conductivity_Sensor ; skos:definition "Measures the electrical conductance of deionised water"@en ; sh:rule [ a sh:TripleRule ; @@ -6499,6 +6671,7 @@ brick:Deionised_Water_Conductivity_Sensor a owl:Class, brick:Deionised_Water_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Deionised Water Level Sensor"@en ; rdfs:subClassOf brick:Water_Level_Sensor ; skos:definition "Measures the height/level of deionised water in some container"@en ; sh:rule [ a sh:TripleRule ; @@ -6531,6 +6704,7 @@ brick:Deionised_Water_Level_Sensor a owl:Class, brick:Deionized_Water_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Deionized Water Alarm"@en ; rdfs:subClassOf brick:Water_Alarm ; skos:definition "An alarm that indicates deionized water leaks."@en ; sh:rule [ a sh:TripleRule ; @@ -6556,6 +6730,7 @@ brick:Deionized_Water_Alarm a owl:Class, brick:Derivative_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Derivative Gain Parameter"@en ; rdfs:subClassOf brick:Gain_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Derivative ; @@ -6585,6 +6760,7 @@ brick:Derivative_Gain_Parameter a owl:Class, brick:Derivative_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Derivative Time Parameter"@en ; rdfs:subClassOf brick:Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Derivative ; @@ -6614,6 +6790,7 @@ brick:Derivative_Time_Parameter a owl:Class, brick:Detention_Room a owl:Class, sh:NodeShape ; + rdfs:label "Detention Room"@en ; rdfs:subClassOf brick:Security_Service_Room ; owl:deprecated true ; skos:definition "A space for the temporary involuntary confinement of people"@en ; @@ -6643,6 +6820,7 @@ brick:Detention_Room a owl:Class, brick:Dewpoint_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Dewpoint Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets dew point"@en ; sh:rule [ a sh:TripleRule ; @@ -6664,6 +6842,7 @@ brick:Dewpoint_Setpoint a owl:Class, brick:Differential_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Differential Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Differential_Temperature_Setpoint ; skos:definition "Sets temperature of diffrential air"@en ; sh:rule [ a sh:TripleRule ; @@ -6694,6 +6873,7 @@ brick:Differential_Air_Temperature_Setpoint a owl:Class, brick:hasQuantity brick:Differential_Temperature . brick:Differential_Discharge_Return_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Differential Discharge Return Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Differential_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -6702,6 +6882,7 @@ brick:Differential_Discharge_Return_Water_Temperature_Sensor a owl:Class ; brick:Differential_Pressure_Bypass_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Bypass Valve"@en ; rdfs:subClassOf brick:Bypass_Valve ; skos:definition "A 2-way, self contained proportional valve with an integral differential pressure adjustment setting."@en ; sh:rule [ a sh:TripleRule ; @@ -6732,6 +6913,7 @@ brick:Differential_Pressure_Bypass_Valve a owl:Class, brick:Differential_Speed_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Differential Speed Sensor"@en ; rdfs:subClassOf brick:Speed_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -6757,6 +6939,7 @@ brick:Differential_Speed_Sensor a owl:Class, brick:Differential_Speed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Differential Speed Setpoint"@en ; rdfs:subClassOf brick:Differential_Setpoint ; skos:definition "Sets differential speed"@en ; sh:rule [ a sh:TripleRule ; @@ -6782,6 +6965,7 @@ brick:Differential_Speed_Setpoint a owl:Class, brick:hasQuantity brick:Speed . brick:Differential_Supply_Return_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Differential Supply Return Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Differential_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -6790,6 +6974,7 @@ brick:Differential_Supply_Return_Water_Temperature_Sensor a owl:Class ; brick:Dimmer a owl:Class, sh:NodeShape ; + rdfs:label "Dimmer"@en ; rdfs:subClassOf brick:Switch ; skos:definition "A switch providing continuous control over all or part of a lighting installation; typically potentiometer-based"@en ; sh:rule [ a sh:TripleRule ; @@ -6815,6 +7000,7 @@ brick:Dimmer a owl:Class, brick:Direct_Expansion_Cooling_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Direct Expansion Cooling Coil"@en ; rdfs:subClassOf brick:Cooling_Coil ; sh:rule [ a sh:TripleRule ; sh:object tag:Coil ; @@ -6844,6 +7030,7 @@ brick:Direct_Expansion_Cooling_Coil a owl:Class, brick:Direct_Expansion_Heating_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Direct Expansion Heating Coil"@en ; rdfs:subClassOf brick:Heating_Coil ; sh:rule [ a sh:TripleRule ; sh:object tag:Coil ; @@ -6873,6 +7060,7 @@ brick:Direct_Expansion_Heating_Coil a owl:Class, brick:Direction_Command a owl:Class, sh:NodeShape ; + rdfs:label "Direction Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Commands that affect the direction of some phenomenon"@en ; sh:rule [ a sh:TripleRule ; @@ -6894,6 +7082,7 @@ brick:Direction_Command a owl:Class, brick:Disable_Differential_Enthalpy_Command a owl:Class, sh:NodeShape ; + rdfs:label "Disable Differential Enthalpy Command"@en ; rdfs:subClassOf brick:Disable_Command ; skos:definition "Disables the use of differential enthalpy control"@en ; sh:rule [ a sh:TripleRule ; @@ -6924,6 +7113,7 @@ brick:Disable_Differential_Enthalpy_Command a owl:Class, brick:Disable_Differential_Temperature_Command a owl:Class, sh:NodeShape ; + rdfs:label "Disable Differential Temperature Command"@en ; rdfs:subClassOf brick:Disable_Command ; skos:definition "Disables the use of differential temperature control"@en ; sh:rule [ a sh:TripleRule ; @@ -6954,6 +7144,7 @@ brick:Disable_Differential_Temperature_Command a owl:Class, brick:Disable_Fixed_Enthalpy_Command a owl:Class, sh:NodeShape ; + rdfs:label "Disable Fixed Enthalpy Command"@en ; rdfs:subClassOf brick:Disable_Command ; skos:definition "Disables the use of fixed enthalpy control"@en ; sh:rule [ a sh:TripleRule ; @@ -6984,6 +7175,7 @@ brick:Disable_Fixed_Enthalpy_Command a owl:Class, brick:Disable_Fixed_Temperature_Command a owl:Class, sh:NodeShape ; + rdfs:label "Disable Fixed Temperature Command"@en ; rdfs:subClassOf brick:Disable_Command ; skos:definition "Disables the use of fixed temperature temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -7014,6 +7206,7 @@ brick:Disable_Fixed_Temperature_Command a owl:Class, brick:Disable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Disable Hot Water System Outside Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; skos:definition "Disables hot water system when outside air temperature reaches the indicated value"@en ; sh:rule [ a sh:TripleRule ; @@ -7061,10 +7254,11 @@ brick:Disable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, tag:System, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Disable_Status a owl:Class, sh:NodeShape ; + rdfs:label "Disable Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if functionality has been disabled"@en ; sh:rule [ a sh:TripleRule ; @@ -7091,6 +7285,7 @@ brick:Discharge_Chilled_Water a brick:Substance ; brick:isReplacedBy brick:Leaving_Chilled_Water . brick:Discharge_Chilled_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Discharge Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7105,6 +7300,7 @@ brick:Discharge_Condenser_Water a brick:Substance ; brick:isReplacedBy brick:Leaving_Condenser_Water . brick:Discharge_Condenser_Water_Flow_Sensor a owl:Class ; + rdfs:label "Discharge Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, brick:Discharge_Water_Flow_Sensor ; owl:deprecated true ; @@ -7113,6 +7309,7 @@ brick:Discharge_Condenser_Water_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Condenser_Water_Flow_Sensor . brick:Discharge_Condenser_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Discharge Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor, brick:Discharge_Water_Temperature_Sensor ; owl:deprecated true ; @@ -7121,6 +7318,7 @@ brick:Discharge_Condenser_Water_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Condenser_Water_Temperature_Sensor . brick:Discharge_Condenser_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Discharge Condenser Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7143,6 +7341,7 @@ brick:Discharge_Water a brick:Substance ; brick:Displacement_Flow_Air_Diffuser a owl:Class, sh:NodeShape ; + rdfs:label "Displacement Flow Air Diffuser"@en ; rdfs:subClassOf brick:Air_Diffuser ; skos:definition "An air diffuser that is designed for low discharge air speeds to minimize turbulence and induction of room air. This diffuser is used with displacement ventilation systems."@en ; sh:rule [ a sh:TripleRule ; @@ -7173,6 +7372,7 @@ brick:Displacement_Flow_Air_Diffuser a owl:Class, brick:Domestic_Hot_Water_Circulator_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Circulator Pump"@en ; rdfs:subClassOf brick:Hot_Water_Circulator_Pump ; skos:definition "Used to move domestic hot water in a closed circuit, ensuring continuous flow."@en ; sh:rule [ a sh:TripleRule ; @@ -7208,6 +7408,7 @@ brick:Domestic_Hot_Water_Circulator_Pump a owl:Class, brick:Domestic_Hot_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Sensor ; skos:definition "Measures the pressure difference in domestic hot water systems."@en ; sh:rule [ a sh:TripleRule ; @@ -7249,6 +7450,7 @@ brick:Domestic_Hot_Water_Differential_Pressure_Sensor a owl:Class, brick:Domestic_Hot_Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Setpoint ; skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe used to carry domestic hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -7294,6 +7496,7 @@ brick:Domestic_Hot_Water_Differential_Pressure_Setpoint a owl:Class, brick:hasQuantity brick:Differential_Pressure . brick:Domestic_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; + rdfs:label "Domestic Hot Water Discharge Temperature Sensor"@en ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7301,6 +7504,7 @@ brick:Domestic_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Domestic_Hot_Water_Temperature_Sensor . brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint a owl:Class ; + rdfs:label "Domestic Hot Water Discharge Temperature Setpoint"@en ; rdfs:subClassOf brick:Discharge_Hot_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7308,6 +7512,7 @@ brick:Domestic_Hot_Water_Discharge_Temperature_Setpoint a owl:Class ; brick:isReplacedBy brick:Leaving_Domestic_Hot_Water_Temperature_Setpoint . brick:Domestic_Hot_Water_Supply_Temperature_Sensor a owl:Class ; + rdfs:label "Domestic Hot Water Supply Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7315,6 +7520,7 @@ brick:Domestic_Hot_Water_Supply_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Domestic_Hot_Water_Temperature_Sensor . brick:Domestic_Hot_Water_Supply_Temperature_Setpoint a owl:Class ; + rdfs:label "Domestic Hot Water Supply Temperature Setpoint"@en ; rdfs:subClassOf brick:Supply_Hot_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7323,6 +7529,7 @@ brick:Domestic_Hot_Water_Supply_Temperature_Setpoint a owl:Class ; brick:Domestic_Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water System"@en ; rdfs:subClassOf brick:System ; skos:definition "The equipment, devices and conduits that handle the production and distribution of domestic hot water in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -7348,6 +7555,7 @@ brick:Domestic_Hot_Water_System a owl:Class, brick:Domestic_Hot_Water_System_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water System Enable Command"@en ; rdfs:subClassOf brick:Hot_Water_System_Enable_Command ; skos:definition "Enables operation of the domestic hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -7388,6 +7596,7 @@ brick:Domestic_Hot_Water_System_Enable_Command a owl:Class, brick:Domestic_Hot_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Valve"@en ; rdfs:subClassOf brick:Hot_Water_Valve ; skos:definition "A valve regulating the flow of domestic hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -7423,6 +7632,7 @@ brick:Domestic_Hot_Water_Valve a owl:Class, brick:Domestic_Water_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Water Loop"@en ; rdfs:subClassOf brick:Water_Loop ; sh:rule [ a sh:TripleRule ; sh:object tag:Domestic ; @@ -7442,6 +7652,7 @@ brick:Domestic_Water_Loop a owl:Class, brick:Drench_Hose a owl:Class, sh:NodeShape ; + rdfs:label "Drench Hose"@en ; rdfs:subClassOf brick:Emergency_Wash_Station ; sh:rule [ a sh:TripleRule ; sh:object tag:Drench ; @@ -7481,6 +7692,7 @@ brick:Drench_Hose a owl:Class, brick:Drive_Ready_Status a owl:Class, sh:NodeShape ; + rdfs:label "Drive Ready Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a hard drive or other storage device is ready to be used, e.g. in the context of RAID"@en ; sh:rule [ a sh:TripleRule ; @@ -7506,6 +7718,7 @@ brick:Drive_Ready_Status a owl:Class, brick:Dry_Cooler a owl:Class, sh:NodeShape ; + rdfs:label "Dry Cooler"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A dry cooler is a fluid cooler that uses air, a relatively dry, non-liquid fluid to accomplish process cooling. (https://submer.com/submer-academy/library/dry-cooler/)"@en ; sh:rule [ a sh:TripleRule ; @@ -7531,6 +7744,7 @@ brick:Dry_Cooler a owl:Class, brick:Duct_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Duct Air Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -7562,11 +7776,12 @@ brick:Duct_Air_Static_Pressure_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Static ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Air . brick:EconCycle_Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "EconCycle Start Stop Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Econcycle ; @@ -7596,6 +7811,7 @@ brick:EconCycle_Start_Stop_Status a owl:Class, brick:Economizer a owl:Class, sh:NodeShape ; + rdfs:label "Economizer"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Device that, on proper variable sensing, initiates control signals or actions to conserve energy. A control system that reduces the mechanical heating and cooling requirement."@en ; sh:rule [ a sh:TripleRule ; @@ -7611,6 +7827,7 @@ brick:Economizer a owl:Class, brick:Economizer_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Economizer Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that is part of an economizer that is used to module the flow of air"@en ; sh:rule [ a sh:TripleRule ; @@ -7630,6 +7847,7 @@ brick:Economizer_Damper a owl:Class, tag:Equipment . brick:Effective_Air_Temperature_Cooling_Setpoint a owl:Class ; + rdfs:label "Effective Air Temperature Cooling Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7637,6 +7855,7 @@ brick:Effective_Air_Temperature_Cooling_Setpoint a owl:Class ; brick:isReplacedBy brick:Effective_Cooling_Zone_Air_Temperature_Setpoint . brick:Effective_Air_Temperature_Heating_Setpoint a owl:Class ; + rdfs:label "Effective Air Temperature Heating Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -7645,6 +7864,7 @@ brick:Effective_Air_Temperature_Heating_Setpoint a owl:Class ; brick:Effective_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Return Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Return_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -7682,10 +7902,11 @@ brick:Effective_Return_Air_Temperature_Setpoint a owl:Class, tag:Return, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Effective_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Room Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Room_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -7723,47 +7944,19 @@ brick:Effective_Room_Air_Temperature_Setpoint a owl:Class, tag:Room, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Effective_Zone_Air_Temperature_Setpoint a owl:Class ; + rdfs:label "Effective Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "The class 'Effective_Zone_Air_Temperature_Setpoint' is deprecated and replaced to better represent its function as a target setpoint" ; brick:isReplacedBy brick:Effective_Target_Zone_Air_Temperature_Setpoint . -brick:ElectricVehicleChargingDirectionalityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "unidirectional"^^xsd:string "bidirectional"^^xsd:string "unidirectional" "bidirectional" ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -brick:ElectricVehicleChargingTypeShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "Level 1"^^xsd:string "Level 2"^^xsd:string "Level 3"^^xsd:string "Level 1" "Level 2" "Level 3" ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - -brick:ElectricVehicleConnectorTypeShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( "Type 1 (CSS)"^^xsd:string "Type 2 (CSS)"^^xsd:string "GB/T"^^xsd:string "Type 1 (SAE J1772)"^^xsd:string "Type 2 (IEC 62196)"^^xsd:string "CHAdeMO"^^xsd:string "CCS (Combined Charging System)"^^xsd:string "Tesla Supercharger"^^xsd:string "Wireless"^^xsd:string "Type 1 (CSS)" "Type 2 (CSS)" "GB/T" "Type 1 (SAE J1772)" "Type 2 (IEC 62196)" "CHAdeMO" "CCS (Combined Charging System)" "Tesla Supercharger" "Wireless" ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . - brick:Electric_Baseboard_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Electric Baseboard Radiator"@en ; rdfs:subClassOf brick:Baseboard_Radiator, brick:Electric_Radiator ; skos:definition "Electric heating device located at or near the floor"@en ; @@ -7790,6 +7983,7 @@ brick:Electric_Baseboard_Radiator a owl:Class, brick:Electric_Boiler a owl:Class, sh:NodeShape ; + rdfs:label "Electric Boiler"@en ; rdfs:subClassOf brick:Boiler ; skos:definition "A closed, pressure vessel that uses electricity for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; sh:rule [ a sh:TripleRule ; @@ -7810,6 +8004,7 @@ brick:Electric_Boiler a owl:Class, brick:Electrical_Energy_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Electrical Energy Usage Sensor"@en ; rdfs:subClassOf brick:Energy_Usage_Sensor ; skos:definition "A sensor that records the quantity of electrical energy consumed in a given period"@en ; sh:rule [ a sh:TripleRule ; @@ -7832,16 +8027,16 @@ brick:Electrical_Energy_Usage_Sensor a owl:Class, sh:object tag:Usage ; sh:predicate brick:hasTag ; sh:subject sh:this ] ; - brick:Quantity brick:Electric_Energy ; brick:hasAssociatedTag tag:Electric, tag:Energy, tag:Point, tag:Sensor, tag:Usage ; - brick:hasQuantity brick:Energy . + brick:hasQuantity brick:Electric_Energy . brick:Electronic_Expansion_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Electronic Expansion Valve"@en ; rdfs:subClassOf brick:Refrigerant_Metering_Device ; skos:definition "A digitally controlled valve in HVAC systems that precisely regulates refrigerant flow."@en ; sh:rule [ a sh:TripleRule ; @@ -7882,6 +8077,7 @@ brick:Electronic_Expansion_Valve a owl:Class, brick:Electronic_Mixing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Electronic Mixing Valve"@en ; rdfs:subClassOf brick:Mixing_Valve ; skos:definition "Electronically controlled valve for precise mixing of hot and cold fluid."@en ; sh:rule [ a sh:TripleRule ; @@ -7907,6 +8103,7 @@ brick:Electronic_Mixing_Valve a owl:Class, brick:Elevator a owl:Class, sh:NodeShape ; + rdfs:label "Elevator"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "A device that provides vertical transportation between floors, levels or decks of a building, vessel or other structure"@en ; @@ -7923,6 +8120,7 @@ brick:Elevator a owl:Class, brick:Emergency_Air_Flow_System a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Air Flow System"@en ; rdfs:subClassOf brick:Safety_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -7947,6 +8145,7 @@ brick:Emergency_Air_Flow_System a owl:Class, brick:Emergency_Air_Flow_System_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Air Flow System Status"@en ; rdfs:subClassOf brick:System_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -7981,6 +8180,7 @@ brick:Emergency_Air_Flow_System_Status a owl:Class, brick:Emergency_Generator_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Generator Alarm"@en ; rdfs:subClassOf brick:Emergency_Alarm ; skos:definition "An alarm that indicates off-normal conditions associated with an emergency generator"@en ; sh:rule [ a sh:TripleRule ; @@ -8006,6 +8206,7 @@ brick:Emergency_Generator_Alarm a owl:Class, brick:Emergency_Generator_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Generator Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if an emergency generator is active"@en ; sh:rule [ a sh:TripleRule ; @@ -8031,6 +8232,7 @@ brick:Emergency_Generator_Status a owl:Class, brick:Emergency_Phone a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Phone"@en ; rdfs:subClassOf brick:Intercom_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Emergency ; @@ -8060,6 +8262,7 @@ brick:Emergency_Phone a owl:Class, brick:Emergency_Power_Off_System a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Power Off System"@en ; rdfs:subClassOf brick:Safety_System ; skos:definition "A system that can power down a single piece of equipment or a single system from a single point"@en ; sh:rule [ a sh:TripleRule ; @@ -8085,6 +8288,7 @@ brick:Emergency_Power_Off_System a owl:Class, brick:Emergency_Power_Off_System_Activated_By_High_Temperature_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Power Off System Activated By High Temperature Status"@en ; rdfs:subClassOf brick:Emergency_Power_Off_System_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Emergency ; @@ -8129,6 +8333,7 @@ brick:Emergency_Power_Off_System_Activated_By_High_Temperature_Status a owl:Clas brick:Emergency_Power_Off_System_Activated_By_Leak_Detection_System_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Power Off System Activated By Leak Detection System Status"@en ; rdfs:subClassOf brick:Emergency_Power_Off_System_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Detection ; @@ -8173,6 +8378,7 @@ brick:Emergency_Power_Off_System_Activated_By_Leak_Detection_System_Status a owl brick:Emergency_Push_Button_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Push Button Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if an emergency button has been pushed"@en ; sh:rule [ a sh:TripleRule ; @@ -8203,6 +8409,7 @@ brick:Emergency_Push_Button_Status a owl:Class, brick:Employee_Entrance_Lobby a owl:Class, sh:NodeShape ; + rdfs:label "Employee Entrance Lobby"@en ; rdfs:subClassOf brick:Lobby ; owl:deprecated true ; skos:definition "An open space near an entrance that is typicaly only used for employees"@en ; @@ -8242,6 +8449,7 @@ brick:Employee_Entrance_Lobby a owl:Class, brick:Enable_Differential_Enthalpy_Command a owl:Class, sh:NodeShape ; + rdfs:label "Enable Differential Enthalpy Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables the use of differential enthalpy control"@en ; sh:rule [ a sh:TripleRule ; @@ -8272,6 +8480,7 @@ brick:Enable_Differential_Enthalpy_Command a owl:Class, brick:Enable_Differential_Temperature_Command a owl:Class, sh:NodeShape ; + rdfs:label "Enable Differential Temperature Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables the use of differential temperature control"@en ; sh:rule [ a sh:TripleRule ; @@ -8302,6 +8511,7 @@ brick:Enable_Differential_Temperature_Command a owl:Class, brick:Enable_Fixed_Enthalpy_Command a owl:Class, sh:NodeShape ; + rdfs:label "Enable Fixed Enthalpy Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables the use of fixed enthalpy control"@en ; sh:rule [ a sh:TripleRule ; @@ -8332,6 +8542,7 @@ brick:Enable_Fixed_Enthalpy_Command a owl:Class, brick:Enable_Fixed_Temperature_Command a owl:Class, sh:NodeShape ; + rdfs:label "Enable Fixed Temperature Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables the use of fixed temperature control"@en ; sh:rule [ a sh:TripleRule ; @@ -8362,6 +8573,7 @@ brick:Enable_Fixed_Temperature_Command a owl:Class, brick:Enable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Enable Hot Water System Outside Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; skos:definition "Enables hot water system when outside air temperature reaches the indicated value"@en ; sh:rule [ a sh:TripleRule ; @@ -8409,10 +8621,11 @@ brick:Enable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class, tag:System, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Energy_Generation_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Energy Generation Sensor"@en ; rdfs:subClassOf brick:Generation_Sensor ; skos:definition "A sensor measuring the amount of generated energy."@en ; sh:rule [ a sh:TripleRule ; @@ -8435,10 +8648,11 @@ brick:Energy_Generation_Sensor a owl:Class, tag:Generation, tag:Point, tag:Sensor ; - brick:hasQuantity brick:Energy . + brick:hasQuantity qudtqk:Energy . brick:Energy_Zone a owl:Class, sh:NodeShape ; + rdfs:label "Energy Zone"@en ; rdfs:subClassOf brick:Zone ; owl:deprecated true ; skos:definition "A space or group of spaces that are managed or monitored as one unit for energy purposes"@en ; @@ -8463,6 +8677,7 @@ brick:Energy_Zone a owl:Class, brick:Entering_Chilled_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Chilled Water Flow Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, brick:Entering_Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of chilled entering water"@en ; @@ -8501,6 +8716,7 @@ brick:Entering_Chilled_Water_Flow_Setpoint a owl:Class, brick:Entering_Domestic_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Domestic Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor, brick:Entering_Hot_Water_Temperature_Sensor ; sh:rule [ a sh:TripleRule ; @@ -8538,10 +8754,11 @@ brick:Entering_Domestic_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Domestic_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Domestic Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint, brick:Entering_Water_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -8579,48 +8796,11 @@ brick:Entering_Domestic_Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . - -brick:Entering_Hot_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Entering_Water_Flow_Sensor, - brick:Hot_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot entering water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Entering ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Entering, - tag:Flow, - tag:Hot, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity qudtqk:VolumeFlowRate ; - brick:hasSubstance brick:Entering_Hot_Water . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Hot_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Flow Setpoint"@en ; rdfs:subClassOf brick:Entering_Water_Flow_Setpoint, brick:Hot_Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of hot entering water"@en ; @@ -8659,6 +8839,7 @@ brick:Entering_Hot_Water_Flow_Setpoint a owl:Class, brick:Entering_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Medium Temperature Hot Water Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Entering_Hot_Water_Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -8705,10 +8886,11 @@ brick:Entering_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a ow tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Setpoint"@en ; rdfs:subClassOf brick:Load_Shed_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -8764,6 +8946,7 @@ brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Status"@en ; rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -8813,6 +8996,7 @@ brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:C brick:Entering_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Medium Temperature Hot Water Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -8859,10 +9043,11 @@ brick:Entering_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Differential Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of differential pressure of entering water"@en ; sh:rule [ a sh:TripleRule ; @@ -8905,6 +9090,7 @@ brick:Entering_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, brick:Entering_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Differential Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -8954,6 +9140,7 @@ brick:Entering_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, brick:Entering_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Differential Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -9003,6 +9190,7 @@ brick:Entering_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Cla brick:Entering_Water_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Pressure Sensor"@en ; rdfs:subClassOf brick:Water_Pressure_Sensor ; skos:definition "Measures the water pressure at the entry point of a system."@en ; sh:rule [ a sh:TripleRule ; @@ -9030,10 +9218,11 @@ brick:Entering_Water_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Water ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Entering_Water_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Alarm"@en ; rdfs:subClassOf brick:Water_Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the entering water."@en ; sh:rule [ a sh:TripleRule ; @@ -9064,6 +9253,7 @@ brick:Entering_Water_Temperature_Alarm a owl:Class, brick:Entering_Water_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of temperature of entering water"@en ; @@ -9097,11 +9287,12 @@ brick:Entering_Water_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Water . brick:Entering_Water_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -9147,6 +9338,7 @@ brick:Entering_Water_Temperature_Integral_Time_Parameter a owl:Class, brick:Entering_Water_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -9192,6 +9384,7 @@ brick:Entering_Water_Temperature_Proportional_Band_Parameter a owl:Class, brick:Enthalpy_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Enthalpy Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets enthalpy"@en ; sh:rule [ a sh:TripleRule ; @@ -9213,6 +9406,7 @@ brick:Enthalpy_Setpoint a owl:Class, brick:Entrance a owl:Class, sh:NodeShape ; + rdfs:label "Entrance"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "The location and space of a building where people enter and exit the building"@en ; @@ -9237,6 +9431,7 @@ brick:Entrance a owl:Class, brick:Environment_Box a owl:Class, sh:NodeShape ; + rdfs:label "Environment Box"@en ; rdfs:subClassOf brick:Laboratory ; owl:deprecated true ; skos:definition "(also known as climatic chamber), enclosed space designed to create a particular environment."@en ; @@ -9271,6 +9466,7 @@ brick:Environment_Box a owl:Class, brick:Equipment_Room a owl:Class, sh:NodeShape ; + rdfs:label "Equipment Room"@en ; rdfs:subClassOf brick:Telecom_Room ; owl:deprecated true ; skos:definition "A telecommunications room where equipment that serves the building is stored"@en ; @@ -9305,6 +9501,7 @@ brick:Equipment_Room a owl:Class, brick:Evaporative_Heat_Exchanger a owl:Class, sh:NodeShape ; + rdfs:label "Evaporative Heat Exchanger"@en ; rdfs:subClassOf brick:Heat_Exchanger ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -9329,6 +9526,7 @@ brick:Evaporative_Heat_Exchanger a owl:Class, brick:Even_Month_Status a owl:Class, sh:NodeShape ; + rdfs:label "Even Month Status"@en ; rdfs:subClassOf brick:Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Even ; @@ -9353,6 +9551,7 @@ brick:Even_Month_Status a owl:Class, brick:Exercise_Room a owl:Class, sh:NodeShape ; + rdfs:label "Exercise Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "An indoor room used for exercise and physical activities"@en ; @@ -9382,6 +9581,7 @@ brick:Exercise_Room a owl:Class, brick:Exhaust_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; skos:definition "Measures dewpoint of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9414,6 +9614,7 @@ brick:Exhaust_Air_Dewpoint_Sensor a owl:Class, brick:Exhaust_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to exhaust air from the building"@en ; sh:rule [ a sh:TripleRule ; @@ -9451,6 +9652,7 @@ brick:Exhaust_Air_Differential_Pressure_Sensor a owl:Class, brick:Exhaust_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; skos:definition "Sets the target air differential pressure between an upstream and downstream point in a exhaust air duct or conduit"@en ; sh:rule [ a sh:TripleRule ; @@ -9488,6 +9690,7 @@ brick:Exhaust_Air_Differential_Pressure_Setpoint a owl:Class, brick:Exhaust_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; skos:definition "Measures the relative humidity of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9525,6 +9728,7 @@ brick:Exhaust_Air_Humidity_Sensor a owl:Class, brick:Exhaust_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9557,6 +9761,7 @@ brick:Exhaust_Air_Humidity_Setpoint a owl:Class, brick:Exhaust_Air_Stack_Flow_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Deadband Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Deadband_Setpoint, brick:Exhaust_Air_Stack_Flow_Setpoint ; skos:definition "Sets the size of a deadband of exhaust air stack flow"@en ; @@ -9599,6 +9804,7 @@ brick:Exhaust_Air_Stack_Flow_Deadband_Setpoint a owl:Class, brick:Exhaust_Air_Stack_Flow_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Integral Time Parameter"@en ; rdfs:subClassOf brick:Exhaust_Air_Flow_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -9648,6 +9854,7 @@ brick:Exhaust_Air_Stack_Flow_Integral_Time_Parameter a owl:Class, brick:Exhaust_Air_Stack_Flow_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Proportional Band Parameter"@en ; rdfs:subClassOf brick:Exhaust_Air_Flow_Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -9697,6 +9904,7 @@ brick:Exhaust_Air_Stack_Flow_Proportional_Band_Parameter a owl:Class, brick:Exhaust_Air_Stack_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Sensor"@en ; rdfs:subClassOf brick:Exhaust_Air_Flow_Sensor ; skos:definition "Measures the rate of flow of air in the exhaust air stack"@en ; sh:rule [ a sh:TripleRule ; @@ -9733,6 +9941,7 @@ brick:Exhaust_Air_Stack_Flow_Sensor a owl:Class, brick:Exhaust_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Static Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -9782,6 +9991,7 @@ brick:Exhaust_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, brick:Exhaust_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; skos:definition "Sets static pressure of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9814,11 +10024,12 @@ brick:Exhaust_Air_Static_Pressure_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Static ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Exhaust_Air . brick:Exhaust_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "Measures the temperature of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9846,11 +10057,12 @@ brick:Exhaust_Air_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Exhaust_Air . brick:Exhaust_Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Velocity Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Velocity_Pressure_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -9882,11 +10094,12 @@ brick:Exhaust_Air_Velocity_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure ; + brick:hasQuantity qudtqk:DynamicPressure ; brick:hasSubstance brick:Exhaust_Air . brick:Exhaust_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that modulates the flow of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -9906,6 +10119,7 @@ brick:Exhaust_Damper a owl:Class, tag:Exhaust . brick:Exhaust_Fan_Disable_Command a owl:Class ; + rdfs:label "Exhaust Fan Disable Command"@en ; rdfs:subClassOf brick:Command ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -9919,6 +10133,7 @@ brick:Exhaust_Fan_Enable_Command owl:deprecated true ; brick:Eye_Wash_Station a owl:Class, sh:NodeShape ; + rdfs:label "Eye Wash Station"@en ; rdfs:subClassOf brick:Emergency_Wash_Station ; sh:rule [ a sh:TripleRule ; sh:object tag:Emergency ; @@ -9953,6 +10168,7 @@ brick:Eye_Wash_Station a owl:Class, brick:Fan_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Fan On Off Status"@en ; rdfs:subClassOf brick:Fan_Status, brick:On_Off_Status ; sh:rule [ a sh:TripleRule ; @@ -9983,6 +10199,7 @@ brick:Fan_On_Off_Status a owl:Class, brick:Fan_Speed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Fan Speed Command"@en ; rdfs:subClassOf brick:Fan_Command ; skos:definition "Controls the speed of fans"@en ; sh:rule [ a sh:TripleRule ; @@ -10008,6 +10225,7 @@ brick:Fan_Speed_Command a owl:Class, brick:Fan_VFD a owl:Class, sh:NodeShape ; + rdfs:label "Fan VFD"@en ; rdfs:subClassOf brick:Variable_Frequency_Drive ; skos:definition "Variable-frequency drive for fans"@en ; sh:rule [ a sh:TripleRule ; @@ -10028,6 +10246,7 @@ brick:Fan_VFD a owl:Class, brick:Fault_Reset_Command a owl:Class, sh:NodeShape ; + rdfs:label "Fault Reset Command"@en ; rdfs:subClassOf brick:Reset_Command ; skos:definition "Clears a fault status"@en ; sh:rule [ a sh:TripleRule ; @@ -10053,6 +10272,7 @@ brick:Fault_Reset_Command a owl:Class, brick:Field_Of_Play a owl:Class, sh:NodeShape ; + rdfs:label "Field Of Play"@en ; rdfs:subClassOf brick:Outdoor_Area ; owl:deprecated true ; skos:definition "The area of a stadium where athletic events occur, e.g. the soccer pitch"@en ; @@ -10087,6 +10307,7 @@ brick:Field_Of_Play a owl:Class, brick:Filter_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Filter Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor, brick:Filter_Differential_Pressure_Sensor ; skos:definition "Measures the difference in air pressure before and after an air filter."@en ; @@ -10124,6 +10345,7 @@ brick:Filter_Air_Differential_Pressure_Sensor a owl:Class, brick:Filter_Reset_Command a owl:Class, sh:NodeShape ; + rdfs:label "Filter Reset Command"@en ; rdfs:subClassOf brick:Reset_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -10148,6 +10370,7 @@ brick:Filter_Reset_Command a owl:Class, brick:Filter_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Filter Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Filter_Differential_Pressure_Sensor, brick:Water_Differential_Pressure_Sensor ; skos:definition "Measures the difference in water pressure before and after a water filter."@en ; @@ -10185,6 +10408,7 @@ brick:Filter_Water_Differential_Pressure_Sensor a owl:Class, brick:Final_Filter a owl:Class, sh:NodeShape ; + rdfs:label "Final Filter"@en ; rdfs:subClassOf brick:Filter ; skos:definition "The last, high-efficiency filter installed in a sequence to remove the finest particulates from the substance being filtered"@en ; sh:rule [ a sh:TripleRule ; @@ -10205,6 +10429,7 @@ brick:Final_Filter a owl:Class, brick:Fire_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Fire Alarm"@en ; rdfs:subClassOf brick:Fire_Safety_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Alarm ; @@ -10229,6 +10454,7 @@ brick:Fire_Alarm a owl:Class, brick:Fire_Alarm_Control_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Fire Alarm Control Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Fire_Safety_Equipment ; skos:definition "Fire alarm panel is the controlling component of a fire alarm system."@en ; @@ -10265,6 +10491,7 @@ brick:Fire_Alarm_Control_Panel a owl:Class, brick:Fire_Alarm_Manual_Call_Point a owl:Class, sh:NodeShape ; + rdfs:label "Fire Alarm Manual Call Point"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ; skos:definition "Manual alarm call points are designed for the purpose of raising an alarm manually once verification of a fire or emergency condition exists. by operating the push button or break glass the alarm signal can be raised."@en ; @@ -10306,6 +10533,7 @@ brick:Fire_Alarm_Manual_Call_Point a owl:Class, brick:Fire_Alarm_Pull_Station a owl:Class, sh:NodeShape ; + rdfs:label "Fire Alarm Pull Station"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ; skos:definition "An active fire protection device (usually wall-mounted) that when activated initiates an alarm on a fire alarm system. In its simplest form the user activates the alarm by pulling the handle down."@en ; @@ -10347,6 +10575,7 @@ brick:Fire_Alarm_Pull_Station a owl:Class, brick:Fire_Control_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Fire Control Panel"@en ; rdfs:subClassOf brick:Fire_Safety_Equipment ; skos:definition "A panel-mounted device that provides status and control of a fire safety system"@en ; sh:rule [ a sh:TripleRule ; @@ -10377,6 +10606,7 @@ brick:Fire_Control_Panel a owl:Class, brick:Fire_Safety_System a owl:Class, sh:NodeShape ; + rdfs:label "Fire Safety System"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Safety_System ; skos:definition "A system containing devices and equipment that monitor, detect and suppress fire hazards"@en ; @@ -10398,6 +10628,7 @@ brick:Fire_Safety_System a owl:Class, brick:Fire_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Fire Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the presence of fire"@en ; sh:property [ a sh:PropertyShape ; @@ -10425,6 +10656,7 @@ brick:Fire_Sensor a owl:Class, brick:Fire_Sprinkler_Thermal_Expansion_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Fire Sprinkler Thermal Expansion Tank"@en ; rdfs:subClassOf brick:Thermal_Expansion_Tank ; skos:definition "A specialized thermal expansion tank that is part of a building's fire suppression system."@en ; sh:rule [ a sh:TripleRule ; @@ -10455,6 +10687,7 @@ brick:Fire_Sprinkler_Thermal_Expansion_Tank a owl:Class, brick:Fire_Sprinkler_Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Fire Sprinkler Water Storage Tank"@en ; rdfs:subClassOf brick:Water_Storage_Tank ; skos:definition "A specialized tank intended to store water that can be quickly accessed for fire suppression."@en ; sh:rule [ a sh:TripleRule ; @@ -10480,6 +10713,7 @@ brick:Fire_Sprinkler_Water_Storage_Tank a owl:Class, brick:Fire_Zone a owl:Class, sh:NodeShape ; + rdfs:label "Fire Zone"@en ; rdfs:subClassOf brick:Zone ; owl:deprecated true ; skos:definition "A logical subdivision of a building that is monitored for fire; may also have a classification for the type of fire hazard that can occur"@en ; @@ -10504,6 +10738,7 @@ brick:Fire_Zone a owl:Class, brick:First_Aid_Kit a owl:Class, sh:NodeShape ; + rdfs:label "First Aid Kit"@en ; rdfs:subClassOf brick:Safety_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Aid ; @@ -10528,6 +10763,7 @@ brick:First_Aid_Kit a owl:Class, brick:First_Aid_Room a owl:Class, sh:NodeShape ; + rdfs:label "First Aid Room"@en ; rdfs:subClassOf brick:Medical_Room ; owl:deprecated true ; skos:definition "A room for a person with minor injuries can be treated or temporarily treated until transferred to a more advanced medical facility"@en ; @@ -10567,6 +10803,7 @@ brick:First_Aid_Room a owl:Class, brick:Floor_Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Floor Fan Coil Unit"@en ; rdfs:subClassOf brick:Fan_Coil_Unit ; skos:definition "A fan coil unit installed on the floor, typically against a wall, for providing heating and cooling in residential or small office spaces"@en ; sh:rule [ a sh:TripleRule ; @@ -10602,6 +10839,7 @@ brick:Floor_Fan_Coil_Unit a owl:Class, brick:Formaldehyde_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Formaldehyde Level Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures the concentration of formaldehyde in air"@en ; sh:rule [ a sh:TripleRule ; @@ -10629,6 +10867,7 @@ brick:Formaldehyde_Level_Sensor a owl:Class, brick:Freeze_Status a owl:Class, sh:NodeShape ; + rdfs:label "Freeze Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a substance contained within a vessel has frozen"@en ; sh:rule [ a sh:TripleRule ; @@ -10649,6 +10888,7 @@ brick:Freeze_Status a owl:Class, brick:Freezer a owl:Class, sh:NodeShape ; + rdfs:label "Freezer"@en ; rdfs:subClassOf brick:Laboratory ; owl:deprecated true ; skos:definition "cold chamber usually kept at a temperature of 22°F to 31°F (–5°C to –1°C), with high-volume air circulation."@en ; @@ -10678,6 +10918,7 @@ brick:Freezer a owl:Class, brick:Frequency_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Frequency Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets frequency"@en ; sh:rule [ a sh:TripleRule ; @@ -10695,9 +10936,10 @@ brick:Frequency_Setpoint a owl:Class, brick:hasAssociatedTag tag:Frequency, tag:Point, tag:Setpoint ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Fresh_Air_Fan a owl:Class ; + rdfs:label "Fresh Air Fan"@en ; rdfs:subClassOf brick:Fan ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -10706,6 +10948,7 @@ brick:Fresh_Air_Fan a owl:Class ; brick:Frost_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Frost Sensor"@en ; rdfs:subClassOf brick:Sensor, brick:Temperature_Sensor ; skos:definition "Senses the presence of frost or conditions that may cause frost"@en ; @@ -10730,11 +10973,12 @@ brick:Frost_Sensor a owl:Class, brick:hasAssociatedTag tag:Frost, tag:Point, tag:Sensor ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Frost . brick:Fume_Hood a owl:Class, sh:NodeShape ; + rdfs:label "Fume Hood"@en ; rdfs:subClassOf brick:Exhaust_Fan ; skos:definition "A fume hood is a type of local exhaust ventilation device designed to protect users from exposure to hazardous fumes, vapors, and dust. It is typically mounted over a workspace, table, or shelf to capture and conduct unwanted gases away from the enclosed area."@en ; sh:rule [ a sh:TripleRule ; @@ -10755,6 +10999,7 @@ brick:Fume_Hood a owl:Class, brick:Fume_Hood_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Fume Hood Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of air in a fume hood"@en ; sh:rule [ a sh:TripleRule ; @@ -10791,6 +11036,7 @@ brick:Fume_Hood_Air_Flow_Sensor a owl:Class, brick:Gas_Distribution a owl:Class, sh:NodeShape ; + rdfs:label "Gas Distribution"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "Utilize a gas distribution source to represent how gas is distributed across multiple destinations"@en ; sh:rule [ a sh:TripleRule ; @@ -10811,6 +11057,7 @@ brick:Gas_Distribution a owl:Class, brick:Gas_Pressure_Regulator_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Gas Pressure Regulator Valve"@en ; rdfs:subClassOf brick:Gas_Valve, brick:Pressure_Regulator_Valve ; skos:definition "Valve designed to maintain controlled downstream gas pressure with varying upstream pressure."@en ; @@ -10837,6 +11084,7 @@ brick:Gas_Pressure_Regulator_Valve a owl:Class, brick:Gas_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Gas Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures gas concentration (other than CO2)"@en ; sh:property [ a sh:PropertyShape ; @@ -10864,6 +11112,7 @@ brick:Gas_Sensor a owl:Class, brick:Gas_System a owl:Class, sh:NodeShape ; + rdfs:label "Gas System"@en ; rdfs:subClassOf brick:System ; sh:rule [ a sh:TripleRule ; sh:object tag:Gas ; @@ -10878,6 +11127,7 @@ brick:Gas_System a owl:Class, brick:Gatehouse a owl:Class, sh:NodeShape ; + rdfs:label "Gatehouse"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "The standalone building used to manage the entrance to a campus or building grounds"@en ; @@ -10900,27 +11150,9 @@ brick:Gatehouse a owl:Class, tag:Space ; brick:isReplacedBy rec:Building . -brick:Gateway a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:ICT_Equipment ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Gateway ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:ICT ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Gateway, - tag:ICT . - brick:Generator_Room a owl:Class, sh:NodeShape ; + rdfs:label "Generator Room"@en ; rdfs:subClassOf brick:Electrical_Room ; owl:deprecated true ; skos:definition "A room for electrical equipment, specifically electrical generators."@en ; @@ -10960,6 +11192,7 @@ brick:Generator_Room a owl:Class, brick:Grease_Interceptor a owl:Class, sh:NodeShape ; + rdfs:label "Grease Interceptor"@en ; rdfs:subClassOf brick:Separation_Tank ; skos:definition "A larger, more industrial version of a grease trap designed to handle higher volumes of wastewater and more efficiently separate grease and fats."@en ; sh:rule [ a sh:TripleRule ; @@ -10980,6 +11213,7 @@ brick:Grease_Interceptor a owl:Class, brick:HVAC_Zone a owl:Class, sh:NodeShape ; + rdfs:label "HVAC Zone"@en ; rdfs:subClassOf brick:Zone ; owl:deprecated true ; skos:definition "a space or group of spaces, within a building with heating, cooling, and ventilating requirements, that are sufficiently similar so that desired conditions (e.g., temperature) can be maintained throughout using a single sensor (e.g., thermostat or temperature sensor)."@en ; @@ -11004,6 +11238,7 @@ brick:HVAC_Zone a owl:Class, brick:Hail_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hail Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures hail in terms of its size and damage potential"@en ; sh:property [ a sh:PropertyShape ; @@ -11032,6 +11267,7 @@ brick:Hail_Sensor a owl:Class, brick:Hallway a owl:Class, sh:NodeShape ; + rdfs:label "Hallway"@en ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; skos:definition "A common space, used to connect other parts of a building"@en ; @@ -11061,6 +11297,7 @@ brick:Hallway a owl:Class, brick:Hazardous_Materials_Storage a owl:Class, sh:NodeShape ; + rdfs:label "Hazardous Materials Storage"@en ; rdfs:subClassOf brick:Storage_Room ; owl:deprecated true ; skos:definition "A storage space set aside (usually with restricted access) for the storage of materials that can be hazardous to living beings or the environment"@en ; @@ -11100,6 +11337,7 @@ brick:Hazardous_Materials_Storage a owl:Class, brick:Heat_Detector a owl:Class, sh:NodeShape ; + rdfs:label "Heat Detector"@en ; rdfs:subClassOf brick:Fire_Safety_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Detector ; @@ -11128,6 +11366,7 @@ brick:Heat_Detector a owl:Class, tag:Safety . brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Heat Exchanger Discharge Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -11135,6 +11374,7 @@ brick:Heat_Exchanger_Discharge_Water_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Heat_Exchanger_Leaving_Water_Temperature_Sensor . brick:Heat_Exchanger_Supply_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Heat Exchanger Supply Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -11143,6 +11383,7 @@ brick:Heat_Exchanger_Supply_Water_Temperature_Sensor a owl:Class ; brick:Heat_Exchanger_System_Enable_Status a owl:Class, sh:NodeShape ; + rdfs:label "Heat Exchanger System Enable Status"@en ; rdfs:subClassOf brick:Enable_Status, brick:System_Status ; skos:definition "Indicates if the heat exchanger system has been enabled"@en ; @@ -11179,6 +11420,7 @@ brick:Heat_Exchanger_System_Enable_Status a owl:Class, brick:Heat_Pump_Air_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Pump Air Source Condensing Unit"@en ; rdfs:subClassOf brick:Heat_Pump_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -11208,6 +11450,7 @@ brick:Heat_Pump_Air_Source_Condensing_Unit a owl:Class, brick:Heat_Pump_Ground_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Pump Ground Source Condensing Unit"@en ; rdfs:subClassOf brick:Heat_Pump_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -11237,6 +11480,7 @@ brick:Heat_Pump_Ground_Source_Condensing_Unit a owl:Class, brick:Heat_Pump_Water_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Pump Water Source Condensing Unit"@en ; rdfs:subClassOf brick:Heat_Pump_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -11266,6 +11510,7 @@ brick:Heat_Pump_Water_Source_Condensing_Unit a owl:Class, brick:Heat_Recovery_Air_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Recovery Air Source Condensing Unit"@en ; rdfs:subClassOf brick:Heat_Recovery_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -11315,6 +11560,7 @@ brick:Heat_Recovery_Air_Source_Condensing_Unit a owl:Class, brick:Heat_Recovery_Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Heat Recovery Hot Water System"@en ; rdfs:subClassOf brick:Hot_Water_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Heat ; @@ -11344,6 +11590,7 @@ brick:Heat_Recovery_Hot_Water_System a owl:Class, brick:Heat_Recovery_Water_Source_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Recovery Water Source Condensing Unit"@en ; rdfs:subClassOf brick:Heat_Recovery_Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -11392,6 +11639,7 @@ brick:Heat_Recovery_Water_Source_Condensing_Unit a owl:Class, tag:Water . brick:Heat_Sensor a owl:Class ; + rdfs:label "Heat Sensor"@en ; rdfs:subClassOf brick:Sensor ; owl:deprecated true ; sh:property [ a sh:PropertyShape ; @@ -11406,6 +11654,7 @@ brick:Heat_Sensor a owl:Class ; brick:Heat_Sink_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Heat Sink Temperature Sensor"@en ; rdfs:subClassOf brick:Temperature_Sensor ; skos:definition "Measure temperature of the heat sink on a device such as a VFD."@en ; sh:rule [ a sh:TripleRule ; @@ -11428,10 +11677,11 @@ brick:Heat_Sink_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Heat_Wheel a owl:Class, sh:NodeShape ; + rdfs:label "Heat Wheel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Heat_Exchanger ; skos:definition "A rotary heat exchanger positioned within the supply and exhaust air streams of an air handling system in order to recover heat energy"@en ; @@ -11453,6 +11703,7 @@ brick:Heat_Wheel a owl:Class, brick:Heat_Wheel_VFD a owl:Class, sh:NodeShape ; + rdfs:label "Heat Wheel VFD"@en ; rdfs:subClassOf brick:Variable_Frequency_Drive ; skos:definition "A VFD that drives a heat wheel"@en ; sh:rule [ a sh:TripleRule ; @@ -11478,6 +11729,7 @@ brick:Heat_Wheel_VFD a owl:Class, brick:Heating_Command a owl:Class, sh:NodeShape ; + rdfs:label "Heating Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the amount of heating to be delivered (typically as a proportion of total heating output)"@en ; sh:rule [ a sh:TripleRule ; @@ -11498,6 +11750,7 @@ brick:Heating_Command a owl:Class, brick:Heating_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Demand Setpoint"@en ; rdfs:subClassOf brick:Demand_Setpoint ; skos:definition "Sets the rate required for heating"@en ; sh:rule [ a sh:TripleRule ; @@ -11524,6 +11777,7 @@ brick:Heating_Demand_Setpoint a owl:Class, brick:Heating_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Heating Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Command that enables heating functionality in equipment but certain condition(s) must be met first before actively heating. For the actively heating control, see Heating_Command."@en ; sh:rule [ a sh:TripleRule ; @@ -11549,6 +11803,7 @@ brick:Heating_Enable_Command a owl:Class, brick:Heating_Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "Heating Start Stop Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Heat ; @@ -11578,6 +11833,7 @@ brick:Heating_Start_Stop_Status a owl:Class, brick:Heating_Thermal_Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Heating Thermal Power Sensor"@en ; rdfs:subClassOf brick:Thermal_Power_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Heat ; @@ -11608,6 +11864,7 @@ brick:Heating_Thermal_Power_Sensor a owl:Class, brick:High_Air_Flow_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Air Flow Alarm"@en ; rdfs:subClassOf brick:Air_Flow_Alarm ; skos:definition "An alarm that indicates that the air flow is higher than normal."@en ; sh:rule [ a sh:TripleRule ; @@ -11638,6 +11895,7 @@ brick:High_Air_Flow_Alarm a owl:Class, brick:High_CO2_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High CO2 Alarm"@en ; rdfs:subClassOf brick:CO2_Alarm ; skos:definition "A device that indicates high concentration of carbon dioxide."@en ; sh:rule [ a sh:TripleRule ; @@ -11663,6 +11921,7 @@ brick:High_CO2_Alarm a owl:Class, brick:High_Head_Pressure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Head Pressure Alarm"@en ; rdfs:subClassOf brick:Pressure_Alarm ; skos:definition "An alarm that indicates a high pressure generated on the output side of a gas compressor in a refrigeration or air conditioning system."@en ; sh:rule [ a sh:TripleRule ; @@ -11693,6 +11952,7 @@ brick:High_Head_Pressure_Alarm a owl:Class, brick:High_Humidity_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Humidity Alarm"@en ; rdfs:subClassOf brick:Humidity_Alarm ; skos:definition "An alarm that indicates high concentration of water vapor in the air."@en ; sh:rule [ a sh:TripleRule ; @@ -11718,6 +11978,7 @@ brick:High_Humidity_Alarm a owl:Class, brick:High_Humidity_Alarm_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "High Humidity Alarm Parameter"@en ; rdfs:subClassOf brick:Humidity_Parameter ; skos:definition "A parameter determining the humidity level at which to trigger a high humidity alarm"@en ; sh:rule [ a sh:TripleRule ; @@ -11748,6 +12009,7 @@ brick:High_Humidity_Alarm_Parameter a owl:Class, brick:High_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "High Outside Air Lockout Temperature Differential Parameter"@en ; rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ; skos:definition "The upper bound of the outside air temperature lockout range"@en ; sh:rule [ a sh:TripleRule ; @@ -11793,6 +12055,7 @@ brick:High_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, brick:High_Return_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Return Air Temperature Alarm"@en ; rdfs:subClassOf brick:High_Temperature_Alarm, brick:Return_Air_Temperature_Alarm ; skos:definition "An alarm that indicates that return air temperature is too high"@en ; @@ -11829,6 +12092,7 @@ brick:High_Return_Air_Temperature_Alarm a owl:Class, brick:High_Static_Pressure_Cutout_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "High Static Pressure Cutout Setpoint Limit"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint_Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a High_Static_Pressure_Cutout_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -11869,6 +12133,7 @@ brick:High_Static_Pressure_Cutout_Setpoint_Limit a owl:Class, brick:High_Temperature_Alarm_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "High Temperature Alarm Parameter"@en ; rdfs:subClassOf brick:Temperature_Parameter ; skos:definition "A parameter determining the temperature level at which to trigger a high temperature alarm"@en ; sh:rule [ a sh:TripleRule ; @@ -11898,6 +12163,7 @@ brick:High_Temperature_Alarm_Parameter a owl:Class, tag:Temperature . brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; + rdfs:label "High Temperature Hot Water Discharge Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -11905,6 +12171,7 @@ brick:High_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_High_Temperature_Hot_Water_Temperature_Sensor . brick:High_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ; + rdfs:label "High Temperature Hot Water Return Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -11912,6 +12179,7 @@ brick:High_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_High_Temperature_Hot_Water_Temperature_Sensor . brick:High_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ; + rdfs:label "High Temperature Hot Water Supply Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -11920,6 +12188,7 @@ brick:High_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ; brick:Hold_Status a owl:Class, sh:NodeShape ; + rdfs:label "Hold Status"@en ; rdfs:subClassOf brick:Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Hold ; @@ -11939,6 +12208,7 @@ brick:Hold_Status a owl:Class, brick:Hospitality_Box a owl:Class, sh:NodeShape ; + rdfs:label "Hospitality Box"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room at a stadium, usually overlooking the field of play, that is physical separate from the other seating at the venue"@en ; @@ -11973,6 +12243,7 @@ brick:Hospitality_Box a owl:Class, brick:Hot_Box a owl:Class, sh:NodeShape ; + rdfs:label "Hot Box"@en ; rdfs:subClassOf brick:Laboratory ; owl:deprecated true ; skos:definition "hot air chamber forming part of an air handler."@en ; @@ -12007,6 +12278,7 @@ brick:Hot_Box a owl:Class, brick:Hot_Water_Baseboard_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Baseboard Radiator"@en ; rdfs:subClassOf brick:Baseboard_Radiator, brick:Hot_Water_Radiator ; skos:definition "Hydronic heating device located at or near the floor"@en ; @@ -12038,6 +12310,7 @@ brick:Hot_Water_Baseboard_Radiator a owl:Class, brick:Hot_Water_Booster_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Booster Pump"@en ; rdfs:subClassOf brick:Booster_Pump, brick:Hot_Water_Pump ; skos:definition "Used to increase the pressure and flow of hot water in a system to ensure adequate supply where needed."@en ; @@ -12069,6 +12342,7 @@ brick:Hot_Water_Booster_Pump a owl:Class, brick:Hot_Water_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Coil"@en ; rdfs:subClassOf brick:Heating_Coil ; skos:definition "A heating element typically made of pipe, tube or wire that emits heat that is filled with hot water."@en ; sh:rule [ a sh:TripleRule ; @@ -12099,6 +12373,7 @@ brick:Hot_Water_Coil a owl:Class, brick:Hot_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of differential pressure of hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -12141,6 +12416,7 @@ brick:Hot_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, brick:Hot_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -12190,6 +12466,7 @@ brick:Hot_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, brick:Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Load Shed Reset Status"@en ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -12239,6 +12516,7 @@ brick:Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, brick:Hot_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -12288,6 +12566,7 @@ brick:Hot_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, brick:Hot_Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Differential_Temperature_Sensor ; skos:definition "Measures the difference in temperature between the entering water to the boiler or other water heating device and leaving water from the same boiler or other water heating device"@en ; sh:rule [ a sh:TripleRule ; @@ -12323,23 +12602,26 @@ brick:Hot_Water_Differential_Temperature_Sensor a owl:Class, brick:hasQuantity brick:Differential_Temperature . brick:Hot_Water_Discharge_Flow_Sensor a owl:Class ; + rdfs:label "Hot Water Discharge Flow Sensor"@en ; rdfs:subClassOf brick:Discharge_Water_Flow_Sensor, brick:Hot_Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; - brick:isReplacedBy brick:Hot_Water_Leaving_Flow_Sensor . + brick:isReplacedBy brick:Leaving_Hot_Water_Flow_Sensor . brick:Hot_Water_Discharge_Flow_Setpoint a owl:Class ; + rdfs:label "Hot Water Discharge Flow Setpoint"@en ; rdfs:subClassOf brick:Discharge_Water_Flow_Setpoint, brick:Hot_Water_Flow_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; - brick:isReplacedBy brick:Hot_Water_Leaving_Flow_Setpoint . + brick:isReplacedBy brick:Leaving_Hot_Water_Flow_Setpoint . brick:Hot_Water_Gauge_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Gauge Pressure Sensor"@en ; rdfs:subClassOf brick:Gauge_Pressure_Sensor ; skos:definition "Sensor measuring the gauge pressure (zero-referenced against ambient air pressure) of hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -12372,10 +12654,11 @@ brick:Hot_Water_Gauge_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Water ; - brick:hasQuantity brick:Gauge_Pressure . + brick:hasQuantity qudtqk:GaugePressure . brick:Hot_Water_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Loop"@en ; rdfs:subClassOf brick:Water_Loop ; skos:definition "A collection of equipment that transport and regulate hot water among each other"@en ; sh:rule [ a sh:TripleRule ; @@ -12395,15 +12678,17 @@ brick:Hot_Water_Loop a owl:Class, tag:Water . brick:Hot_Water_Return_Flow_Sensor a owl:Class ; + rdfs:label "Hot Water Return Flow Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Flow_Sensor, brick:Return_Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; - brick:isReplacedBy brick:Hot_Water_Entering_Flow_Sensor . + brick:isReplacedBy brick:Entering_Hot_Water_Flow_Sensor . brick:Hot_Water_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; skos:definition "Sets static pressure of hot air"@en ; sh:rule [ a sh:TripleRule ; @@ -12436,11 +12721,12 @@ brick:Hot_Water_Static_Pressure_Setpoint a owl:Class, tag:Setpoint, tag:Static, tag:Water ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Hot_Water . brick:Hot_Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Storage Tank"@en ; rdfs:subClassOf brick:Water_Storage_Tank ; skos:definition "A tank designed to store hot water in an HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -12465,22 +12751,25 @@ brick:Hot_Water_Storage_Tank a owl:Class, tag:Water . brick:Hot_Water_Supply_Flow_Sensor a owl:Class ; + rdfs:label "Hot Water Supply Flow Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Flow_Sensor, brick:Supply_Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; - brick:isReplacedBy brick:Hot_Water_Leaving_Flow_Sensor . + brick:isReplacedBy brick:Leaving_Hot_Water_Flow_Sensor . brick:Hot_Water_Supply_Flow_Setpoint a owl:Class ; + rdfs:label "Hot Water Supply Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; - brick:isReplacedBy brick:Hot_Water_Leaving_Flow_Setpoint . + brick:isReplacedBy brick:Leaving_Hot_Water_Flow_Setpoint . brick:Hot_Water_Thermal_Energy_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Thermal Energy Storage Tank"@en ; rdfs:subClassOf brick:Thermal_Energy_Storage_Tank ; skos:definition "A Thermal Energy Storage (TES) tank is a specialized container for storing thermal energy, enabling more efficient heating by balancing supply and demand. It helps reduce operational costs and minimizes the need for larger equipment."@en ; sh:rule [ a sh:TripleRule ; @@ -12521,6 +12810,7 @@ brick:Hot_Water_Thermal_Energy_Storage_Tank a owl:Class, brick:Hot_Water_Thermal_Expansion_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Thermal Expansion Tank"@en ; rdfs:subClassOf brick:Thermal_Expansion_Tank ; skos:definition "A thermal expansion tank used in hot water heating systems."@en ; sh:rule [ a sh:TripleRule ; @@ -12551,6 +12841,7 @@ brick:Hot_Water_Thermal_Expansion_Tank a owl:Class, brick:Hot_Water_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Usage Sensor"@en ; rdfs:subClassOf brick:Water_Usage_Sensor ; skos:definition "Measures the amount of hot water that is consumed, over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -12582,6 +12873,7 @@ brick:Hot_Water_Usage_Sensor a owl:Class, brick:Humidification_Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "Humidification Start Stop Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Humidification ; @@ -12611,6 +12903,7 @@ brick:Humidification_Start_Stop_Status a owl:Class, brick:Humidifier a owl:Class, sh:NodeShape ; + rdfs:label "Humidifier"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A device that adds moisture to air or other gases"@en ; sh:rule [ a sh:TripleRule ; @@ -12626,6 +12919,7 @@ brick:Humidifier a owl:Class, brick:Humidifier_Fault_Status a owl:Class, sh:NodeShape ; + rdfs:label "Humidifier Fault Status"@en ; rdfs:subClassOf brick:Fault_Status ; skos:definition "Indicates the presence of a fault in a humidifier"@en ; sh:rule [ a sh:TripleRule ; @@ -12651,6 +12945,7 @@ brick:Humidifier_Fault_Status a owl:Class, brick:Humidify_Command a owl:Class, sh:NodeShape ; + rdfs:label "Humidify Command"@en ; rdfs:subClassOf brick:Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -12671,6 +12966,7 @@ brick:Humidify_Command a owl:Class, brick:Humidity_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Deadband Setpoint"@en ; rdfs:subClassOf brick:Deadband_Setpoint ; skos:definition "Sets the size of a deadband of humidity"@en ; sh:rule [ a sh:TripleRule ; @@ -12697,6 +12993,7 @@ brick:Humidity_Deadband_Setpoint a owl:Class, brick:Humidity_Tolerance_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Tolerance Parameter"@en ; rdfs:subClassOf brick:Humidity_Parameter, brick:Tolerance_Parameter ; skos:definition "A parameter determining the difference between upper and lower limits of humidity."@en ; @@ -12723,6 +13020,7 @@ brick:Humidity_Tolerance_Parameter a owl:Class, brick:IDF a owl:Class, sh:NodeShape ; + rdfs:label "IDF"@en ; rdfs:subClassOf brick:Distribution_Frame ; owl:deprecated true ; skos:definition "An room for an intermediate distribution frame, where cables carrying signals from the main distrubtion frame terminate and then feed out to endpoints"@en ; @@ -12767,6 +13065,7 @@ brick:IDF a owl:Class, brick:Ice_Tank_Leaving_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Ice Tank Leaving Water Temperature Sensor"@en ; rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ; skos:definition "Measures the temperature of water leaving an ice tank"@en ; sh:rule [ a sh:TripleRule ; @@ -12804,10 +13103,11 @@ brick:Ice_Tank_Leaving_Water_Temperature_Sensor a owl:Class, tag:Tank, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Illuminance_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Illuminance Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Target Illuminance of the zone."@en ; sh:rule [ a sh:TripleRule ; @@ -12829,6 +13129,7 @@ brick:Illuminance_Setpoint a owl:Class, brick:Induction_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Induction Unit"@en ; rdfs:subClassOf brick:Terminal_Unit ; skos:definition "A device with an primary air connection and integrated coil and condensate pan that performs sensible and latent cooling of a space. Essentially an Active Chilled Beam with a built in condensate pan."@en ; sh:rule [ a sh:TripleRule ; @@ -12849,6 +13150,7 @@ brick:Induction_Unit a owl:Class, brick:Information_Area a owl:Class, sh:NodeShape ; + rdfs:label "Information Area"@en ; rdfs:subClassOf brick:Outdoor_Area ; owl:deprecated true ; skos:definition "An information booth or kiosk where visitors would look for information"@en ; @@ -12878,6 +13180,7 @@ brick:Information_Area a owl:Class, brick:Inside_Face_Surface_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Inside Face Surface Temperature Sensor"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; skos:definition "Measures the inside surface (relative to the space) of the radiant panel of the radiant heating and cooling HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -12910,10 +13213,11 @@ brick:Inside_Face_Surface_Temperature_Sensor a owl:Class, tag:Sensor, tag:Surface, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Inside_Face_Surface_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Inside Face Surface Temperature Setpoint"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; skos:definition "Sets temperature for the inside face surface temperature of the radiant panel."@en ; sh:rule [ a sh:TripleRule ; @@ -12946,10 +13250,11 @@ brick:Inside_Face_Surface_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Surface, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Intake_Air_Filter a owl:Class, sh:NodeShape ; + rdfs:label "Intake Air Filter"@en ; rdfs:subClassOf brick:Filter ; skos:definition "Filters air intake"@en ; sh:rule [ a sh:TripleRule ; @@ -12975,6 +13280,7 @@ brick:Intake_Air_Filter a owl:Class, brick:Intake_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Intake Air Temperature Sensor"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Sensor ; skos:definition "Measures air at the interface between the building and the outside"@en ; sh:rule [ a sh:TripleRule ; @@ -13007,10 +13313,11 @@ brick:Intake_Air_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Intrusion_Detection_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Intrusion Detection Equipment"@en ; rdfs:subClassOf brick:Security_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Detection ; @@ -13035,6 +13342,7 @@ brick:Intrusion_Detection_Equipment a owl:Class, brick:Isolation_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Isolation Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that isolates a section of ductwork or other air handling system."@en ; sh:rule [ a sh:TripleRule ; @@ -13055,6 +13363,7 @@ brick:Isolation_Damper a owl:Class, brick:Janitor_Room a owl:Class, sh:NodeShape ; + rdfs:label "Janitor Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room set aside for the storage of cleaning equipment and supplies"@en ; @@ -13084,6 +13393,7 @@ brick:Janitor_Room a owl:Class, brick:Jet_Nozzle_Air_Diffuser a owl:Class, sh:NodeShape ; + rdfs:label "Jet Nozzle Air Diffuser"@en ; rdfs:subClassOf brick:Air_Diffuser ; skos:definition "An air diffuser that is designed to produce high velocity discharge air stream to throw the air over a large distance or target the air stream to a localize area"@en ; sh:rule [ a sh:TripleRule ; @@ -13114,6 +13424,7 @@ brick:Jet_Nozzle_Air_Diffuser a owl:Class, brick:Laminar_Flow_Air_Diffuser a owl:Class, sh:NodeShape ; + rdfs:label "Laminar Flow Air Diffuser"@en ; rdfs:subClassOf brick:Air_Diffuser ; skos:definition "An air diffuser that is designed for low discharge air speeds to provide uniform and unidirectional air pattern which minimizes room air entrainment"@en ; sh:rule [ a sh:TripleRule ; @@ -13144,6 +13455,7 @@ brick:Laminar_Flow_Air_Diffuser a owl:Class, brick:Last_Fault_Code_Status a owl:Class, sh:NodeShape ; + rdfs:label "Last Fault Code Status"@en ; rdfs:subClassOf brick:Fault_Status ; skos:definition "Indicates the last fault code that occurred"@en ; sh:rule [ a sh:TripleRule ; @@ -13174,6 +13486,7 @@ brick:Last_Fault_Code_Status a owl:Class, brick:Lead_Lag_Command a owl:Class, sh:NodeShape ; + rdfs:label "Lead Lag Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Enables lead/lag operation"@en ; sh:rule [ a sh:TripleRule ; @@ -13199,6 +13512,7 @@ brick:Lead_Lag_Command a owl:Class, brick:Lead_Lag_Status a owl:Class, sh:NodeShape ; + rdfs:label "Lead Lag Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if lead/lag operation is enabled"@en ; sh:rule [ a sh:TripleRule ; @@ -13224,6 +13538,7 @@ brick:Lead_Lag_Status a owl:Class, brick:Lead_On_Off_Command a owl:Class, sh:NodeShape ; + rdfs:label "Lead On Off Command"@en ; rdfs:subClassOf brick:On_Off_Command ; skos:definition "Controls the active/inactive status of the \"lead\" part of a lead/lag system"@en ; sh:rule [ a sh:TripleRule ; @@ -13252,84 +13567,9 @@ brick:Lead_On_Off_Command a owl:Class, tag:On, tag:Point . -brick:Leaving_Hot_Water_Flow_Sensor a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Hot_Water_Flow_Sensor, - brick:Leaving_Water_Flow_Sensor ; - skos:definition "Measures the rate of flow of hot leaving water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Leaving, - tag:Point, - tag:Sensor, - tag:Water ; - brick:hasQuantity qudtqk:VolumeFlowRate ; - brick:hasSubstance brick:Leaving_Hot_Water . - -brick:Leaving_Hot_Water_Flow_Setpoint a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Hot_Water_Flow_Setpoint, - brick:Leaving_Water_Flow_Setpoint ; - skos:definition "Sets the target flow rate of hot leaving water"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Flow ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Hot ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Leaving ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Setpoint ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Water ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Flow, - tag:Hot, - tag:Leaving, - tag:Point, - tag:Setpoint, - tag:Water ; - brick:hasQuantity qudtqk:VolumeFlowRate ; - brick:hasSubstance brick:Leaving_Hot_Water . - brick:Leaving_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Medium Temperature Hot Water Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:High ; @@ -13376,10 +13616,11 @@ brick:Leaving_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Medium Temperature Hot Water Temperature Load Shed Setpoint"@en ; rdfs:subClassOf brick:Load_Shed_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -13435,6 +13676,7 @@ brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl: brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Medium Temperature Hot Water Temperature Load Shed Status"@en ; rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -13484,6 +13726,7 @@ brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Cl brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Medium Temperature Hot Water Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -13530,10 +13773,11 @@ brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl: tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Differential Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of differential pressure of leaving water"@en ; sh:rule [ a sh:TripleRule ; @@ -13576,6 +13820,7 @@ brick:Leaving_Water_Differential_Pressure_Deadband_Setpoint a owl:Class, brick:Leaving_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Differential Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -13625,6 +13870,7 @@ brick:Leaving_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class, brick:Leaving_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Differential Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -13674,6 +13920,7 @@ brick:Leaving_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Clas brick:Leaving_Water_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Pressure Sensor"@en ; rdfs:subClassOf brick:Water_Pressure_Sensor ; skos:definition "Measures the water pressure at the exit point of a system."@en ; sh:rule [ a sh:TripleRule ; @@ -13701,10 +13948,11 @@ brick:Leaving_Water_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Water ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Leaving_Water_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Alarm"@en ; rdfs:subClassOf brick:Water_Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the leaving water."@en ; sh:rule [ a sh:TripleRule ; @@ -13735,6 +13983,7 @@ brick:Leaving_Water_Temperature_Alarm a owl:Class, brick:Leaving_Water_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of temperature of leaving water"@en ; @@ -13768,11 +14017,12 @@ brick:Leaving_Water_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Water . brick:Leaving_Water_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -13818,6 +14068,7 @@ brick:Leaving_Water_Temperature_Integral_Time_Parameter a owl:Class, brick:Leaving_Water_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -13863,6 +14114,7 @@ brick:Leaving_Water_Temperature_Proportional_Band_Parameter a owl:Class, brick:Level_Command a owl:Class, sh:NodeShape ; + rdfs:label "Level Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Adjusts the operational state to a specific level within a predefined range."@en ; sh:rule [ a sh:TripleRule ; @@ -13883,6 +14135,7 @@ brick:Level_Command a owl:Class, brick:Level_Status a owl:Class, sh:NodeShape ; + rdfs:label "Level Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "The current operational state of a specific level within a predefined range."@en ; sh:rule [ a sh:TripleRule ; @@ -13903,6 +14156,7 @@ brick:Level_Status a owl:Class, brick:Library a owl:Class, sh:NodeShape ; + rdfs:label "Library"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A place for the storage and/or consumption of physical media, e.g. books, periodicals, and DVDs/CDs"@en ; @@ -13931,6 +14185,7 @@ brick:Library a owl:Class, brick:isReplacedBy rec:Library . brick:Light_Command a owl:Class ; + rdfs:label "Light Command"@en ; rdfs:subClassOf brick:Command ; owl:deprecated true ; brick:deprecatedInVersion "1.3.1" ; @@ -13939,6 +14194,7 @@ brick:Light_Command a owl:Class ; brick:Lighting_Correlated_Color_Temperature_Command a owl:Class, sh:NodeShape ; + rdfs:label "Lighting Correlated Color Temperature Command"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Command ; skos:definition "A command to set correlated color temperature (CCT) which is the temperature of the Planckian radiator whose perceived color most closely resembles that of a given stimulus at the same brightness and under specified viewing conditions."@en ; @@ -13975,6 +14231,7 @@ brick:Lighting_Correlated_Color_Temperature_Command a owl:Class, brick:Lighting_Correlated_Color_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Lighting Correlated Color Temperature Sensor"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Sensor ; skos:definition "A sensor to measure correlated color temperature (CCT) which is the temperature of the Planckian radiator whose perceived color most closely resembles that of a given stimulus at the same brightness and under specified viewing conditions."@en ; @@ -14013,6 +14270,7 @@ brick:Lighting_Correlated_Color_Temperature_Sensor a owl:Class, brick:Lighting_System a owl:Class, sh:NodeShape ; + rdfs:label "Lighting System"@en ; rdfs:subClassOf brick:System ; skos:definition "The equipment, devices and interfaces that serve or are a part of the lighting subsystem in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -14028,6 +14286,7 @@ brick:Lighting_System a owl:Class, brick:Lighting_Zone a owl:Class, sh:NodeShape ; + rdfs:label "Lighting Zone"@en ; rdfs:subClassOf brick:Zone ; owl:deprecated true ; sh:rule [ a sh:TripleRule ; @@ -14051,6 +14310,7 @@ brick:Lighting_Zone a owl:Class, brick:Liquid_Detection_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Liquid Detection Alarm"@en ; rdfs:subClassOf brick:Alarm ; sh:rule [ a sh:TripleRule ; sh:object tag:Alarm ; @@ -14075,6 +14335,7 @@ brick:Liquid_Detection_Alarm a owl:Class, brick:Load_Current_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Load Current Sensor"@en ; rdfs:subClassOf brick:Current_Sensor ; skos:definition "Measures the current consumed by a load"@en ; sh:rule [ a sh:TripleRule ; @@ -14101,6 +14362,7 @@ brick:Load_Current_Sensor a owl:Class, brick:Loading_Dock a owl:Class, sh:NodeShape ; + rdfs:label "Loading Dock"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A part of a facility where delivery trucks can load and unload. Usually partially enclosed with specific traffic lanes leading to the dock"@en ; @@ -14135,6 +14397,7 @@ brick:Loading_Dock a owl:Class, brick:Locally_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Locally On Off Status"@en ; rdfs:subClassOf brick:On_Off_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Locally ; @@ -14164,6 +14427,7 @@ brick:Locally_On_Off_Status a owl:Class, brick:Lockout_Status a owl:Class, sh:NodeShape ; + rdfs:label "Lockout Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a piece of equipment, system, or functionality has been locked out from operation"@en ; sh:rule [ a sh:TripleRule ; @@ -14184,6 +14448,7 @@ brick:Lockout_Status a owl:Class, brick:Low_Battery_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Battery Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the battery is low."@en ; sh:rule [ a sh:TripleRule ; @@ -14209,6 +14474,7 @@ brick:Low_Battery_Alarm a owl:Class, brick:Low_Freeze_Protect_Temperature_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Low Freeze Protect Temperature Parameter"@en ; rdfs:subClassOf brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Freeze ; @@ -14243,6 +14509,7 @@ brick:Low_Freeze_Protect_Temperature_Parameter a owl:Class, brick:Low_Humidity_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Humidity Alarm"@en ; rdfs:subClassOf brick:Humidity_Alarm ; skos:definition "An alarm that indicates low concentration of water vapor in the air."@en ; sh:rule [ a sh:TripleRule ; @@ -14268,6 +14535,7 @@ brick:Low_Humidity_Alarm a owl:Class, brick:Low_Humidity_Alarm_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Low Humidity Alarm Parameter"@en ; rdfs:subClassOf brick:Humidity_Parameter ; skos:definition "A parameter determining the humidity level at which to trigger a low humidity alarm"@en ; sh:rule [ a sh:TripleRule ; @@ -14298,6 +14566,7 @@ brick:Low_Humidity_Alarm_Parameter a owl:Class, brick:Low_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Low Outside Air Lockout Temperature Differential Parameter"@en ; rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ; skos:definition "The lower bound of the outside air temperature lockout range"@en ; sh:rule [ a sh:TripleRule ; @@ -14343,6 +14612,7 @@ brick:Low_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, brick:Low_Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Low Outside Air Temperature Enable Differential Sensor"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Enable_Differential_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -14384,10 +14654,11 @@ brick:Low_Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Low_Outside_Air_Temperature_Enable_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Low Outside Air Temperature Enable Setpoint"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -14424,10 +14695,11 @@ brick:Low_Outside_Air_Temperature_Enable_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Low_Return_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Return Air Temperature Alarm"@en ; rdfs:subClassOf brick:Low_Temperature_Alarm, brick:Return_Air_Temperature_Alarm ; skos:definition "An alarm that indicates that return air temperature is too low"@en ; @@ -14464,6 +14736,7 @@ brick:Low_Return_Air_Temperature_Alarm a owl:Class, brick:Low_Suction_Pressure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Suction Pressure Alarm"@en ; rdfs:subClassOf brick:Pressure_Alarm ; skos:definition "An alarm that indicates a low suction pressure in the compressor in a refrigeration or air conditioning system."@en ; sh:rule [ a sh:TripleRule ; @@ -14494,6 +14767,7 @@ brick:Low_Suction_Pressure_Alarm a owl:Class, brick:Low_Temperature_Alarm_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Low Temperature Alarm Parameter"@en ; rdfs:subClassOf brick:Temperature_Parameter ; skos:definition "A parameter determining the temperature level at which to trigger a low temperature alarm"@en ; sh:rule [ a sh:TripleRule ; @@ -14524,6 +14798,7 @@ brick:Low_Temperature_Alarm_Parameter a owl:Class, brick:Low_Voltage_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Voltage Alarm"@en ; rdfs:subClassOf brick:Voltage_Alarm ; skos:definition "An alarm that indicates the voltage is lower than its normal state."@en ; sh:rule [ a sh:TripleRule ; @@ -14549,6 +14824,7 @@ brick:Low_Voltage_Alarm a owl:Class, brick:Lowest_Exhaust_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Lowest Exhaust Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ; skos:definition "The lowest observed static pressure of air in exhaust regions of an HVAC system over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -14586,10 +14862,11 @@ brick:Lowest_Exhaust_Air_Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Static_Pressure . + brick:hasQuantity qudtqk:StaticPressure . brick:Luminaire a owl:Class, sh:NodeShape ; + rdfs:label "Luminaire"@en ; rdfs:subClassOf brick:Lighting ; skos:definition "A complete lighting unit consisting of a lamp or lamps and ballast(s) (when applicable) together with the parts designed to distribute the light, to position and protect the lamps, and to connect the lamps to the power supply."@en ; sh:rule [ a sh:TripleRule ; @@ -14605,6 +14882,7 @@ brick:Luminaire a owl:Class, brick:Luminaire_Driver a owl:Class, sh:NodeShape ; + rdfs:label "Luminaire Driver"@en ; rdfs:subClassOf brick:Lighting ; skos:definition "A power source for a luminaire"@en ; sh:rule [ a sh:TripleRule ; @@ -14625,6 +14903,7 @@ brick:Luminaire_Driver a owl:Class, brick:Luminance_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Luminance Alarm"@en ; rdfs:subClassOf brick:Alarm ; sh:rule [ a sh:TripleRule ; sh:object tag:Alarm ; @@ -14644,6 +14923,7 @@ brick:Luminance_Alarm a owl:Class, brick:Luminance_Command a owl:Class, sh:NodeShape ; + rdfs:label "Luminance Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the amount of luminance delivered by a lighting system"@en ; sh:rule [ a sh:TripleRule ; @@ -14664,6 +14944,7 @@ brick:Luminance_Command a owl:Class, brick:Luminance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Luminance Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the luminous intensity per unit area of light travelling in a given direction"@en ; sh:property [ a sh:PropertyShape ; @@ -14691,6 +14972,7 @@ brick:Luminance_Sensor a owl:Class, brick:Luminance_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Luminance Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets luminance"@en ; sh:rule [ a sh:TripleRule ; @@ -14712,6 +14994,7 @@ brick:Luminance_Setpoint a owl:Class, brick:MDF a owl:Class, sh:NodeShape ; + rdfs:label "MDF"@en ; rdfs:subClassOf brick:Distribution_Frame ; owl:deprecated true ; skos:definition "A room for the Main Distribution Frame, the central place of a building where cables carrying signals meet and connect to the outside world"@en ; @@ -14756,6 +15039,7 @@ brick:MDF a owl:Class, brick:Mail_Room a owl:Class, sh:NodeShape ; + rdfs:label "Mail Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room where mail is recieved and sorted for distribution to the rest of the building"@en ; @@ -14785,6 +15069,7 @@ brick:Mail_Room a owl:Class, brick:Main_Circuit_Breaker a owl:Class, sh:NodeShape ; + rdfs:label "Main Circuit Breaker"@en ; rdfs:subClassOf brick:Circuit_Breaker ; skos:definition "All breaker panels generally have a main circuit breaker before the bus / MCBs. In some older panels there may be a Main Disconnect Switch instead. It is also possible to have a main disconnect switch, and a main circuit breaker in a panel."@en ; sh:rule [ a sh:TripleRule ; @@ -14810,6 +15095,7 @@ brick:Main_Circuit_Breaker a owl:Class, brick:Main_Disconnect_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Main Disconnect Switch"@en ; rdfs:subClassOf brick:Disconnect_Switch ; skos:definition "Building power is most commonly provided by utility company through a master disconnect switch (sometimes called a service disconnect) in the main electrical room of a building. The Utility Company provided master disconnect switch often owns or restricts access to this switch. There can also be other cases where a disconnect is placed into an electrical system to allow service cut-off to a portion of the building."@en ; sh:rule [ a sh:TripleRule ; @@ -14835,6 +15121,7 @@ brick:Main_Disconnect_Switch a owl:Class, brick:Maintenance_Mode_Command a owl:Class, sh:NodeShape ; + rdfs:label "Maintenance Mode Command"@en ; rdfs:subClassOf brick:Mode_Command ; skos:definition "Controls whether or not a device or controller is operating in \"Maintenance\" mode"@en ; sh:rule [ a sh:TripleRule ; @@ -14860,6 +15147,7 @@ brick:Maintenance_Mode_Command a owl:Class, brick:Maintenance_Required_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Maintenance Required Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates that repair/maintenance is required on an associated device or equipment"@en ; sh:rule [ a sh:TripleRule ; @@ -14885,6 +15173,7 @@ brick:Maintenance_Required_Alarm a owl:Class, brick:Majlis a owl:Class, sh:NodeShape ; + rdfs:label "Majlis"@en ; rdfs:subClassOf brick:Lounge ; owl:deprecated true ; skos:definition "In Arab countries, an Majlis is a private lounge where visitors are recieved and entertained"@en ; @@ -14919,6 +15208,7 @@ brick:Majlis a owl:Class, brick:Makeup_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Makeup Water Valve"@en ; rdfs:subClassOf brick:HVAC_Valve, brick:Water_Valve ; skos:definition "A valve regulating the flow of makeup water into a water holding tank, e.g. a cooling tower, hot water tank"@en ; @@ -14955,6 +15245,7 @@ brick:Makeup_Water_Valve a owl:Class, brick:Manual_Auto_Status a owl:Class, sh:NodeShape ; + rdfs:label "Manual Auto Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a system is under manual or automatic operation"@en ; sh:rule [ a sh:TripleRule ; @@ -14980,6 +15271,7 @@ brick:Manual_Auto_Status a owl:Class, brick:Massage_Room a owl:Class, sh:NodeShape ; + rdfs:label "Massage Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "Usually adjunct to an athletic facility, a private/semi-private space where massages are performed"@en ; @@ -15009,6 +15301,7 @@ brick:Massage_Room a owl:Class, brick:Max_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Max Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Setpoint for maximum air temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -15036,10 +15329,11 @@ brick:Max_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Max_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Chilled Water Differential Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Max_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ; @@ -15091,6 +15385,7 @@ brick:Max_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, brick:Max_Frequency_Command a owl:Class, sh:NodeShape ; + rdfs:label "Max Frequency Command"@en ; rdfs:subClassOf brick:Frequency_Command ; skos:definition "Sets the maximum permitted frequency"@en ; sh:rule [ a sh:TripleRule ; @@ -15113,10 +15408,11 @@ brick:Max_Frequency_Command a owl:Class, tag:Frequency, tag:Max, tag:Point ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Max_Fresh_Air_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Fresh Air Setpoint Limit"@en ; rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit, brick:Max_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; @@ -15153,6 +15449,7 @@ brick:Max_Fresh_Air_Setpoint_Limit a owl:Class, brick:Max_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Hot Water Differential Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Max_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ; @@ -15204,6 +15501,7 @@ brick:Max_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, brick:Max_Load_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Max Load Setpoint"@en ; rdfs:subClassOf brick:Load_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Load ; @@ -15233,6 +15531,7 @@ brick:Max_Load_Setpoint a owl:Class, brick:Max_Outside_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Outside Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -15278,6 +15577,7 @@ brick:Max_Outside_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Position_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Position Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Position_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Position_Setpoint."@en ; @@ -15309,6 +15609,7 @@ brick:Max_Position_Setpoint_Limit a owl:Class, brick:Max_Speed_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Speed Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Speed_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Speed_Setpoint."@en ; @@ -15345,6 +15646,7 @@ brick:Max_Speed_Setpoint_Limit a owl:Class, brick:Max_Water_Level_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Max Water Level Alarm"@en ; rdfs:subClassOf brick:Water_Level_Alarm ; skos:definition "Alarm indicating that the maximum water level was reached"@en ; sh:rule [ a sh:TripleRule ; @@ -15375,6 +15677,7 @@ brick:Max_Water_Level_Alarm a owl:Class, brick:Max_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Max Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Setpoint for max water temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -15402,11 +15705,12 @@ brick:Max_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Water . brick:Media_Hot_Desk a owl:Class, sh:NodeShape ; + rdfs:label "Media Hot Desk"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "A non-enclosed space used by members of the media temporarily to cover an event while they are present at a venue"@en ; @@ -15436,6 +15740,7 @@ brick:Media_Hot_Desk a owl:Class, brick:Media_Production_Room a owl:Class, sh:NodeShape ; + rdfs:label "Media Production Room"@en ; rdfs:subClassOf brick:Media_Room ; owl:deprecated true ; skos:definition "A enclosed space used by media professionals for the production of media"@en ; @@ -15470,6 +15775,7 @@ brick:Media_Production_Room a owl:Class, brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class, sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Reset Status"@en ; rdfs:subClassOf brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -15519,6 +15825,7 @@ brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Reset_Status brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Setpoint"@en ; rdfs:subClassOf brick:Differential_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -15574,6 +15881,7 @@ brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Setpoint a ow brick:Medium_Temperature_Hot_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Sensor ; skos:definition "Measures the difference in water pressure between sections of a medium temperature hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -15620,6 +15928,7 @@ brick:Medium_Temperature_Hot_Water_Differential_Pressure_Sensor a owl:Class, brick:Medium_Temperature_Hot_Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -15664,6 +15973,7 @@ brick:Medium_Temperature_Hot_Water_Differential_Pressure_Setpoint a owl:Class, brick:hasQuantity brick:Differential_Pressure . brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; + rdfs:label "Medium Temperature Hot Water Discharge Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Discharge_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -15671,6 +15981,7 @@ brick:Medium_Temperature_Hot_Water_Discharge_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Sensor . brick:Medium_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ; + rdfs:label "Medium Temperature Hot Water Return Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Return_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -15678,6 +15989,7 @@ brick:Medium_Temperature_Hot_Water_Return_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_Medium_Temperature_Hot_Water_Temperature_Sensor . brick:Medium_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ; + rdfs:label "Medium Temperature Hot Water Supply Temperature Sensor"@en ; rdfs:subClassOf brick:Hot_Water_Supply_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -15686,6 +15998,7 @@ brick:Medium_Temperature_Hot_Water_Supply_Temperature_Sensor a owl:Class ; brick:Methane_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Methane Level Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures the concentration of methane in air"@en ; sh:rule [ a sh:TripleRule ; @@ -15713,6 +16026,7 @@ brick:Methane_Level_Sensor a owl:Class, brick:Min_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Min Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Setpoint for minimum air temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -15740,10 +16054,11 @@ brick:Min_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Min_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Chilled Water Differential Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Min_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ; @@ -15795,6 +16110,7 @@ brick:Min_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class, brick:Min_Frequency_Command a owl:Class, sh:NodeShape ; + rdfs:label "Min Frequency Command"@en ; rdfs:subClassOf brick:Frequency_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -15816,10 +16132,11 @@ brick:Min_Frequency_Command a owl:Class, tag:Frequency, tag:Min, tag:Point ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Min_Fresh_Air_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Fresh Air Setpoint Limit"@en ; rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit, brick:Min_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; @@ -15856,6 +16173,7 @@ brick:Min_Fresh_Air_Setpoint_Limit a owl:Class, brick:Min_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Hot Water Differential Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit, brick:Min_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ; @@ -15907,6 +16225,7 @@ brick:Min_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class, brick:Min_Load_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Min Load Setpoint"@en ; rdfs:subClassOf brick:Load_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Load ; @@ -15936,6 +16255,7 @@ brick:Min_Load_Setpoint a owl:Class, brick:Min_Outside_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Outside Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -15981,6 +16301,7 @@ brick:Min_Outside_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Position_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Position Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Position_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Position_Setpoint."@en ; @@ -16012,6 +16333,7 @@ brick:Min_Position_Setpoint_Limit a owl:Class, brick:Min_Speed_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Speed Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Speed_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Speed_Setpoint."@en ; @@ -16048,6 +16370,7 @@ brick:Min_Speed_Setpoint_Limit a owl:Class, brick:Min_Water_Level_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Min Water Level Alarm"@en ; rdfs:subClassOf brick:Water_Level_Alarm ; skos:definition "Alarm indicating that the minimum water level was reached"@en ; sh:rule [ a sh:TripleRule ; @@ -16078,6 +16401,7 @@ brick:Min_Water_Level_Alarm a owl:Class, brick:Min_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Min Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Setpoint for min water temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -16105,11 +16429,12 @@ brick:Min_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Water . brick:Mixed_Air_Filter a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Filter"@en ; rdfs:subClassOf brick:Filter ; skos:definition "A filter that is applied to the mixture of recirculated and outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -16135,6 +16460,7 @@ brick:Mixed_Air_Filter a owl:Class, brick:Mixed_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of mixed air"@en ; sh:rule [ a sh:TripleRule ; @@ -16167,6 +16493,7 @@ brick:Mixed_Air_Flow_Sensor a owl:Class, brick:Mixed_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; skos:definition "Measures the humidity of mixed air"@en ; sh:rule [ a sh:TripleRule ; @@ -16204,6 +16531,7 @@ brick:Mixed_Air_Humidity_Sensor a owl:Class, brick:Mixed_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for mixed air"@en ; sh:rule [ a sh:TripleRule ; @@ -16236,6 +16564,7 @@ brick:Mixed_Air_Humidity_Setpoint a owl:Class, brick:Mixed_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "Measures the temperature of mixed air"@en ; sh:rule [ a sh:TripleRule ; @@ -16263,11 +16592,12 @@ brick:Mixed_Air_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Mixed_Air . brick:Mixed_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Sets temperature of mixed air"@en ; sh:rule [ a sh:TripleRule ; @@ -16295,11 +16625,12 @@ brick:Mixed_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Mixed_Air . brick:Mixed_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Mixed Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that modulates the flow of the mixed outside and return air streams"@en ; sh:rule [ a sh:TripleRule ; @@ -16320,6 +16651,7 @@ brick:Mixed_Damper a owl:Class, brick:Motor_Control_Center a owl:Class, sh:NodeShape ; + rdfs:label "Motor Control Center"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "The Motor Control Center is a specialized type of switchgear which provides electrical power to major mechanical systems in the building such as HVAC components."@en ; sh:rule [ a sh:TripleRule ; @@ -16340,6 +16672,7 @@ brick:Motor_Control_Center a owl:Class, brick:Motor_Current_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Motor Current Sensor"@en ; rdfs:subClassOf brick:Current_Sensor ; skos:definition "Measures the current consumed by a motor"@en ; sh:rule [ a sh:TripleRule ; @@ -16366,6 +16699,7 @@ brick:Motor_Current_Sensor a owl:Class, brick:Motor_Direction_Status a owl:Class, sh:NodeShape ; + rdfs:label "Motor Direction Status"@en ; rdfs:subClassOf brick:Direction_Status ; skos:definition "Indicates which direction a motor is operating in, e.g. forward or reverse"@en ; sh:rule [ a sh:TripleRule ; @@ -16392,6 +16726,7 @@ brick:Motor_Direction_Status a owl:Class, brick:Motor_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Motor On Off Status"@en ; rdfs:subClassOf brick:On_Off_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Motor ; @@ -16421,6 +16756,7 @@ brick:Motor_On_Off_Status a owl:Class, brick:Motor_Speed_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Motor Speed Sensor"@en ; rdfs:subClassOf brick:Speed_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Motor ; @@ -16446,6 +16782,7 @@ brick:Motor_Speed_Sensor a owl:Class, brick:Motor_Torque_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Motor Torque Sensor"@en ; rdfs:subClassOf brick:Torque_Sensor ; skos:definition "Measures the torque, or rotating power, of a motor"@en ; sh:rule [ a sh:TripleRule ; @@ -16472,6 +16809,7 @@ brick:Motor_Torque_Sensor a owl:Class, brick:NO2_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "NO2 Level Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures the concentration of NO2 in air"@en ; sh:rule [ a sh:TripleRule ; @@ -16499,6 +16837,7 @@ brick:NO2_Level_Sensor a owl:Class, brick:Natural_Gas_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Natural Gas Flow Sensor"@en ; rdfs:subClassOf brick:Flow_Sensor ; skos:definition "Measures the rate of flow of natural gas"@en ; sh:rule [ a sh:TripleRule ; @@ -16531,6 +16870,7 @@ brick:Natural_Gas_Flow_Sensor a owl:Class, brick:Natural_Gas_Seismic_Shutoff_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Natural Gas Seismic Shutoff Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Valves that automatically shut off your natural gas service when an earthquake of a sufficient magnitude occurs at the location."@en ; sh:rule [ a sh:TripleRule ; @@ -16566,6 +16906,7 @@ brick:Natural_Gas_Seismic_Shutoff_Valve a owl:Class, brick:Natural_Gas_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Natural Gas Temperature Sensor"@en ; rdfs:subClassOf brick:Temperature_Sensor ; skos:definition "Measures the temperature of natural gas"@en ; sh:rule [ a sh:TripleRule ; @@ -16593,11 +16934,12 @@ brick:Natural_Gas_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Natural_Gas . brick:Natural_Gas_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Natural Gas Usage Sensor"@en ; rdfs:subClassOf brick:Usage_Sensor ; skos:definition "Measures the amount of natural gas that is consumed or used, over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -16629,6 +16971,7 @@ brick:Natural_Gas_Usage_Sensor a owl:Class, brick:No_Water_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "No Water Alarm"@en ; rdfs:subClassOf brick:Water_Alarm ; skos:definition "Alarm indicating that there is no water in the equipment or system"@en ; sh:rule [ a sh:TripleRule ; @@ -16654,6 +16997,7 @@ brick:No_Water_Alarm a owl:Class, brick:Noncondensing_Natural_Gas_Boiler a owl:Class, sh:NodeShape ; + rdfs:label "Noncondensing Natural Gas Boiler"@en ; rdfs:subClassOf brick:Natural_Gas_Boiler ; skos:definition "A closed, pressure vessel that uses natural gas with no system to capture latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; sh:rule [ a sh:TripleRule ; @@ -16684,6 +17028,7 @@ brick:Noncondensing_Natural_Gas_Boiler a owl:Class, brick:Occupancy_Command a owl:Class, sh:NodeShape ; + rdfs:label "Occupancy Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls whether or not a device or controller is operating in \"Occupied\" mode"@en ; sh:rule [ a sh:TripleRule ; @@ -16704,6 +17049,7 @@ brick:Occupancy_Command a owl:Class, brick:Occupancy_Count_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Occupancy Count Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Sensors measuring the number of people in an area"@en ; sh:property [ a sh:PropertyShape ; @@ -16736,6 +17082,7 @@ brick:Occupancy_Count_Sensor a owl:Class, brick:Occupancy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Occupancy Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Detects occupancy of some space or area"@en ; sh:property [ a sh:PropertyShape ; @@ -16762,6 +17109,7 @@ brick:Occupancy_Sensor a owl:Class, brick:hasQuantity brick:Occupancy . brick:Occupied_Air_Temperature_Cooling_Setpoint a owl:Class ; + rdfs:label "Occupied Air Temperature Cooling Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -16769,6 +17117,7 @@ brick:Occupied_Air_Temperature_Cooling_Setpoint a owl:Class ; brick:isReplacedBy brick:Occupied_Cooling_Zone_Air_Temperature_Setpoint . brick:Occupied_Air_Temperature_Heating_Setpoint a owl:Class ; + rdfs:label "Occupied Air Temperature Heating Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -16777,6 +17126,7 @@ brick:Occupied_Air_Temperature_Heating_Setpoint a owl:Class ; brick:Occupied_Cooling_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Mode Status"@en ; rdfs:subClassOf brick:Cooling_Mode_Status, brick:Occupied_Mode_Status ; sh:rule [ a sh:TripleRule ; @@ -16807,6 +17157,7 @@ brick:Occupied_Cooling_Mode_Status a owl:Class, brick:Occupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of temperature for cooling when occupied"@en ; @@ -16840,10 +17191,11 @@ brick:Occupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint ; skos:definition "Sets temperature for cooling when occupied"@en ; sh:rule [ a sh:TripleRule ; @@ -16871,10 +17223,11 @@ brick:Occupied_Cooling_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Heating_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Mode Status"@en ; rdfs:subClassOf brick:Heating_Mode_Status, brick:Occupied_Mode_Status ; sh:rule [ a sh:TripleRule ; @@ -16905,6 +17258,7 @@ brick:Occupied_Heating_Mode_Status a owl:Class, brick:Occupied_Heating_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; skos:definition "Sets the size of a deadband of temperature for heating when occupied"@en ; @@ -16938,10 +17292,11 @@ brick:Occupied_Heating_Temperature_Deadband_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint ; skos:definition "Sets temperature for heating when occupied"@en ; sh:rule [ a sh:TripleRule ; @@ -16969,10 +17324,11 @@ brick:Occupied_Heating_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Target humidity level when the location is occupied."@en ; sh:rule [ a sh:TripleRule ; @@ -16999,6 +17355,7 @@ brick:Occupied_Humidity_Setpoint a owl:Class, brick:Occupied_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Return Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, brick:Return_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -17036,10 +17393,11 @@ brick:Occupied_Return_Air_Temperature_Setpoint a owl:Class, tag:Return, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Room Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, brick:Room_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -17077,9 +17435,10 @@ brick:Occupied_Room_Air_Temperature_Setpoint a owl:Class, tag:Room, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Zone_Air_Temperaure_Setpoint a owl:Class ; + rdfs:label "Occupied Zone Air Temperaure Setpoint"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -17088,6 +17447,7 @@ brick:Occupied_Zone_Air_Temperaure_Setpoint a owl:Class ; brick:Off_Command a owl:Class, sh:NodeShape ; + rdfs:label "Off Command"@en ; rdfs:subClassOf brick:On_Off_Command ; skos:definition "An Off Command controls or reports the binary 'off' status of a control loop, relay or equipment activity. It can only be used to stop/deactivate an associated equipment or process, or determine that the related entity is 'off'"@en ; sh:rule [ a sh:TripleRule ; @@ -17108,6 +17468,7 @@ brick:Off_Command a owl:Class, brick:Office_Kitchen a owl:Class, sh:NodeShape ; + rdfs:label "Office Kitchen"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A common space, usually near or in a breakroom, where minor food preperation occurs"@en ; @@ -17142,6 +17503,7 @@ brick:Office_Kitchen a owl:Class, brick:On_Command a owl:Class, sh:NodeShape ; + rdfs:label "On Command"@en ; rdfs:subClassOf brick:On_Off_Command ; skos:definition "An On Command controls or reports the binary 'on' status of a control loop, relay or equipment activity. It can only be used to start/activate an associated equipment or process, or determine that the related entity is 'on'"@en ; sh:rule [ a sh:TripleRule ; @@ -17162,6 +17524,7 @@ brick:On_Command a owl:Class, brick:Open_Close_Command a owl:Class, sh:NodeShape ; + rdfs:label "Open Close Command"@en ; rdfs:subClassOf brick:On_Off_Command ; skos:definition "A binary signal given to a device, such as a damper or valve, to either open or close"@en ; sh:rule [ a sh:TripleRule ; @@ -17187,6 +17550,7 @@ brick:Open_Close_Command a owl:Class, brick:Open_Close_Status a owl:Class, sh:NodeShape ; + rdfs:label "Open Close Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates the open/close status of a device such as a damper or valve"@en ; sh:rule [ a sh:TripleRule ; @@ -17212,6 +17576,7 @@ brick:Open_Close_Status a owl:Class, brick:Open_Heating_Valve_Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Open Heating Valve Outside Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Outside_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -17254,10 +17619,11 @@ brick:Open_Heating_Valve_Outside_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Valve ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Open_Office a owl:Class, sh:NodeShape ; + rdfs:label "Open Office"@en ; rdfs:subClassOf brick:Office ; owl:deprecated true ; skos:definition "An open space used for work or study by mulitple people. Usuaully subdivided into cubicles or desks"@en ; @@ -17290,8 +17656,20 @@ brick:Open_Office a owl:Class, tag:Space ; brick:isReplacedBy rec:OfficeLandscape . +brick:Operative_Temperature a brick:Quantity ; + rdfs:label "Operative Temperature"@en ; + qudt:applicableUnit unit:DEG_C, + unit:DEG_F, + unit:K ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Temperature ; + skos:definition "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)", + "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)"@en . + brick:Output_Frequency_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Output Frequency Sensor"@en ; rdfs:subClassOf brick:Frequency_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Frequency ; @@ -17313,10 +17691,11 @@ brick:Output_Frequency_Sensor a owl:Class, tag:Output, tag:Point, tag:Sensor ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Output_Voltage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Output Voltage Sensor"@en ; rdfs:subClassOf brick:Voltage_Sensor ; skos:definition "Measures the voltage output by some process or device"@en ; sh:rule [ a sh:TripleRule ; @@ -17343,6 +17722,7 @@ brick:Output_Voltage_Sensor a owl:Class, brick:Outside a owl:Class, sh:NodeShape ; + rdfs:label "Outside"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; sh:rule [ a sh:TripleRule ; @@ -17361,6 +17741,7 @@ brick:Outside a owl:Class, brick:Outside_Air_CO2_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air CO2 Sensor"@en ; rdfs:subClassOf brick:CO2_Sensor ; skos:definition "Measures the concentration of CO2 in outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17393,6 +17774,7 @@ brick:Outside_Air_CO2_Sensor a owl:Class, brick:Outside_Air_CO_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air CO Sensor"@en ; rdfs:subClassOf brick:CO_Sensor ; skos:definition "Measures the concentration of CO in outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17425,6 +17807,7 @@ brick:Outside_Air_CO_Sensor a owl:Class, brick:Outside_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; skos:definition "Senses the dewpoint temperature of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17457,6 +17840,7 @@ brick:Outside_Air_Dewpoint_Sensor a owl:Class, brick:Outside_Air_Enthalpy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Enthalpy Sensor"@en ; rdfs:subClassOf brick:Air_Enthalpy_Sensor ; skos:definition "Measures the total heat content of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17489,6 +17873,7 @@ brick:Outside_Air_Enthalpy_Sensor a owl:Class, brick:Outside_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of outside air into the system"@en ; sh:rule [ a sh:TripleRule ; @@ -17521,6 +17906,7 @@ brick:Outside_Air_Flow_Sensor a owl:Class, brick:Outside_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Flow Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint ; skos:definition "Sets outside air flow rate"@en ; sh:rule [ a sh:TripleRule ; @@ -17553,6 +17939,7 @@ brick:Outside_Air_Flow_Setpoint a owl:Class, brick:Outside_Air_Grains_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Grains Sensor"@en ; rdfs:subClassOf brick:Air_Grains_Sensor ; skos:definition "Measures the mass of water vapor in outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17585,6 +17972,7 @@ brick:Outside_Air_Grains_Sensor a owl:Class, brick:Outside_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; skos:definition "Measures the relative humidity of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17622,6 +18010,7 @@ brick:Outside_Air_Humidity_Sensor a owl:Class, brick:Outside_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17654,6 +18043,7 @@ brick:Outside_Air_Humidity_Setpoint a owl:Class, brick:Outside_Air_Lockout_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Lockout Temperature Setpoint"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -17685,10 +18075,11 @@ brick:Outside_Air_Lockout_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Outside_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -17725,11 +18116,12 @@ brick:Outside_Air_Temperature_High_Reset_Setpoint a owl:Class, tag:Reset, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Outside_Air . brick:Outside_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -17766,11 +18158,12 @@ brick:Outside_Air_Temperature_Low_Reset_Setpoint a owl:Class, tag:Reset, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Outside_Air . brick:Outside_Air_Wet_Bulb_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Wet Bulb Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Wet_Bulb_Temperature_Sensor, brick:Outside_Air_Temperature_Sensor ; skos:definition "A sensor measuring the wet-bulb temperature of outside air"@en ; @@ -17814,6 +18207,7 @@ brick:Outside_Air_Wet_Bulb_Temperature_Sensor a owl:Class, brick:Outside_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Outside Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that modulates the flow of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -17834,6 +18228,7 @@ brick:Outside_Damper a owl:Class, brick:Outside_Face_Surface_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Face Surface Temperature Sensor"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; skos:definition "Measures the outside surface (relative to the space) of the radiant panel of a radiant heating and cooling HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -17866,10 +18261,11 @@ brick:Outside_Face_Surface_Temperature_Sensor a owl:Class, tag:Sensor, tag:Surface, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Outside_Face_Surface_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Face Surface Temperature Setpoint"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; skos:definition "Sets temperature for the outside face surface temperature of the radiant panel."@en ; sh:rule [ a sh:TripleRule ; @@ -17902,10 +18298,11 @@ brick:Outside_Face_Surface_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Surface, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Outside_Illuminance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Illuminance Sensor"@en ; rdfs:subClassOf brick:Illuminance_Sensor ; skos:definition "Measures the total luminous flux incident on an outside, per unit area"@en ; sh:rule [ a sh:TripleRule ; @@ -17932,6 +18329,7 @@ brick:Outside_Illuminance_Sensor a owl:Class, brick:Overload_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Overload Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that can indicate when a full-load current is exceeded."@en ; sh:rule [ a sh:TripleRule ; @@ -17952,6 +18350,7 @@ brick:Overload_Alarm a owl:Class, brick:Overridden_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Overridden Off Status"@en ; rdfs:subClassOf brick:Off_Status, brick:Overridden_Status ; skos:definition "Indicates if a control loop, relay or equipment has been turned off when it would otherwise be scheduled to be on"@en ; @@ -17978,6 +18377,7 @@ brick:Overridden_Off_Status a owl:Class, brick:Overridden_On_Status a owl:Class, sh:NodeShape ; + rdfs:label "Overridden On Status"@en ; rdfs:subClassOf brick:On_Status, brick:Overridden_Status ; skos:definition "Indicates if a control loop, relay or equipment has been turned on when it would otherwise be scheduled to be off"@en ; @@ -18004,6 +18404,7 @@ brick:Overridden_On_Status a owl:Class, brick:Ozone_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Ozone Level Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures the concentration of ozone in air"@en ; sh:rule [ a sh:TripleRule ; @@ -18031,6 +18432,7 @@ brick:Ozone_Level_Sensor a owl:Class, brick:PIR_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PIR Sensor"@en ; rdfs:subClassOf brick:Motion_Sensor ; skos:definition "Detects the presense of motion in some area using the differential change in infrared intensity between two or more receptors"@en ; sh:rule [ a sh:TripleRule ; @@ -18052,6 +18454,7 @@ brick:PIR_Sensor a owl:Class, brick:PM10_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM10 Level Sensor"@en ; rdfs:subClassOf brick:PM10_Sensor ; skos:definition "Detects level of particulates of size 10 microns"@en ; sh:rule [ a sh:TripleRule ; @@ -18088,6 +18491,7 @@ brick:PM10_Level_Sensor a owl:Class, brick:PM1_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM1 Level Sensor"@en ; rdfs:subClassOf brick:PM1_Sensor ; skos:definition "Detects level of particulates of size 1 microns"@en ; sh:rule [ a sh:TripleRule ; @@ -18124,6 +18528,7 @@ brick:PM1_Level_Sensor a owl:Class, brick:PM2.5_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM2.5 Level Sensor"@en ; rdfs:subClassOf brick:PM2.5_Sensor ; skos:definition "Detects level of particulates of size 2.5 microns"@en ; sh:rule [ a sh:TripleRule ; @@ -18160,6 +18565,7 @@ brick:PM2.5_Level_Sensor a owl:Class, brick:PVT_Panel a owl:Class, sh:NodeShape ; + rdfs:label "PVT Panel"@en ; rdfs:subClassOf brick:PV_Panel, brick:Solar_Thermal_Collector ; skos:definition "A type of solar panels that convert solar radiation into usable thermal and electrical energy"@en ; @@ -18196,6 +18602,7 @@ brick:PVT_Panel a owl:Class, brick:PV_Generation_System a owl:Class, sh:NodeShape ; + rdfs:label "PV Generation System"@en ; rdfs:subClassOf brick:Energy_Generation_System ; skos:definition "A collection of photovoltaic devices that generates energy"@en ; sh:rule [ a sh:TripleRule ; @@ -18216,6 +18623,7 @@ brick:PV_Generation_System a owl:Class, brick:Packaged_Air_Source_Heat_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Packaged Air Source Heat Pump"@en ; rdfs:subClassOf brick:Packaged_Heat_Pump ; skos:definition "A self-contained unit that uses air as a heat source or sink for heating and cooling purposes."@en ; sh:rule [ a sh:TripleRule ; @@ -18246,6 +18654,7 @@ brick:Packaged_Air_Source_Heat_Pump a owl:Class, brick:Packaged_Water_Source_Heat_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Packaged Water Source Heat Pump"@en ; rdfs:subClassOf brick:Packaged_Heat_Pump ; skos:definition "A self-contained unit that uses water as a heat source or sink for heating and cooling purposes."@en ; sh:rule [ a sh:TripleRule ; @@ -18276,6 +18685,7 @@ brick:Packaged_Water_Source_Heat_Pump a owl:Class, brick:Parking_Level a owl:Class, sh:NodeShape ; + rdfs:label "Parking Level"@en ; rdfs:subClassOf brick:Floor ; owl:deprecated true ; skos:definition "A floor of a parking structure"@en ; @@ -18305,6 +18715,7 @@ brick:Parking_Level a owl:Class, brick:Parking_Space a owl:Class, sh:NodeShape ; + rdfs:label "Parking Space"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "An area large enough to park an individual vehicle"@en ; @@ -18329,6 +18740,7 @@ brick:Parking_Space a owl:Class, brick:Parking_Structure a owl:Class, sh:NodeShape ; + rdfs:label "Parking Structure"@en ; rdfs:subClassOf brick:Building ; owl:deprecated true ; skos:definition "A building or part of a building devoted to vehicle parking"@en ; @@ -18358,6 +18770,7 @@ brick:Parking_Structure a owl:Class, brick:Passive_Chilled_Beam a owl:Class, sh:NodeShape ; + rdfs:label "Passive Chilled Beam"@en ; rdfs:subClassOf brick:Chilled_Beam ; skos:definition "A chilled beam that does not have an integral air supply and instead relies on natural convection to draw air through the device."@en ; sh:rule [ a sh:TripleRule ; @@ -18383,6 +18796,7 @@ brick:Passive_Chilled_Beam a owl:Class, brick:Peak_Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Peak Demand Sensor"@en ; rdfs:subClassOf brick:Demand_Sensor ; skos:definition "The peak power consumed by a process over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -18417,8 +18831,26 @@ brick:Peak_Demand_Sensor a owl:Class, tag:Sensor ; brick:hasQuantity qudtqk:Power . +brick:Phasor_Magnitude a brick:Quantity ; + rdfs:label "Phasor Magnitude"@en ; + qudt:applicableUnit unit:ARCMIN, + unit:ARCSEC, + unit:DEG, + unit:GON, + unit:GRAD, + unit:MIL, + unit:MicroRAD, + unit:MilliARCSEC, + unit:MilliRAD, + unit:RAD, + unit:REV ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:definition "Magnitude component of a phasor" . + brick:Photovoltaic_Inverter a owl:Class, sh:NodeShape ; + rdfs:label "Photovoltaic Inverter"@en ; rdfs:subClassOf brick:Inverter ; skos:definition " Converts direct current electricity generated by solar panels into alternating current"@en ; sh:rule [ a sh:TripleRule ; @@ -18439,6 +18871,7 @@ brick:Photovoltaic_Inverter a owl:Class, brick:Piezoelectric_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Piezoelectric Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Senses changes pressure, acceleration, temperature, force or strain via the piezoelectric effect"@en ; sh:property [ a sh:PropertyShape ; @@ -18466,6 +18899,7 @@ brick:Piezoelectric_Sensor a owl:Class, brick:PlugStrip a owl:Class, sh:NodeShape ; + rdfs:label "PlugStrip"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "A device containing a block of electrical sockets allowing multiple electrical devices to be powered from a single electrical socket."@en ; @@ -18482,6 +18916,7 @@ brick:PlugStrip a owl:Class, brick:Plumbing_Room a owl:Class, sh:NodeShape ; + rdfs:label "Plumbing Room"@en ; rdfs:subClassOf brick:Service_Room ; owl:deprecated true ; skos:definition "A service room devoted to the operation and routing of water in a building. Usually distinct from the HVAC subsystems."@en ; @@ -18516,6 +18951,7 @@ brick:Plumbing_Room a owl:Class, brick:Portfolio a owl:Class, sh:NodeShape ; + rdfs:label "Portfolio"@en ; rdfs:subClassOf brick:Collection ; owl:deprecated true ; skos:definition "A collection of sites"@en ; @@ -18537,6 +18973,7 @@ brick:Portfolio a owl:Class, brick:Power_Factor_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Power Factor Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Sensors measuring power Factor, under periodic conditions, is the ratio of the absolute value of the active power (P) to the apparent power (S)."@en ; sh:property [ a sh:PropertyShape ; @@ -18565,10 +19002,11 @@ brick:Power_Factor_Sensor a owl:Class, tag:Point, tag:Power, tag:Sensor ; - brick:hasQuantity brick:Power_Factor . + brick:hasQuantity qudtqk:PowerFactor . brick:Power_Loss_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Power Loss Alarm"@en ; rdfs:subClassOf brick:Power_Alarm ; skos:definition "An alarm that indicates a power failure."@en ; sh:rule [ a sh:TripleRule ; @@ -18594,6 +19032,7 @@ brick:Power_Loss_Alarm a owl:Class, brick:Prayer_Room a owl:Class, sh:NodeShape ; + rdfs:label "Prayer Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A room set aside for prayer"@en ; @@ -18623,6 +19062,7 @@ brick:Prayer_Room a owl:Class, brick:Pre_Filter a owl:Class, sh:NodeShape ; + rdfs:label "Pre Filter"@en ; rdfs:subClassOf brick:Filter ; skos:definition "A filter installed in front of a more efficient filter to extend the life of the more expensive higher efficiency filter"@en ; sh:rule [ a sh:TripleRule ; @@ -18643,6 +19083,7 @@ brick:Pre_Filter a owl:Class, brick:Pre_Filter_Status a owl:Class, sh:NodeShape ; + rdfs:label "Pre Filter Status"@en ; rdfs:subClassOf brick:Filter_Status ; skos:definition "Indicates if a prefilter needs to be replaced"@en ; sh:rule [ a sh:TripleRule ; @@ -18668,6 +19109,7 @@ brick:Pre_Filter_Status a owl:Class, brick:Preheat_Command a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "A command to activate preheating. Typically used to preheat cool air coming from a mixing box or economizer"@en ; sh:rule [ a sh:TripleRule ; @@ -18688,6 +19130,7 @@ brick:Preheat_Command a owl:Class, brick:Preheat_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Demand Setpoint"@en ; rdfs:subClassOf brick:Demand_Setpoint ; skos:definition "Sets the rate required for preheat"@en ; sh:rule [ a sh:TripleRule ; @@ -18714,6 +19157,7 @@ brick:Preheat_Demand_Setpoint a owl:Class, brick:Preheat_Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Hot Water System"@en ; rdfs:subClassOf brick:Hot_Water_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -18738,6 +19182,7 @@ brick:Preheat_Hot_Water_System a owl:Class, brick:Preheat_Hot_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Hot Water Valve"@en ; rdfs:subClassOf brick:Hot_Water_Valve ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -18772,6 +19217,7 @@ brick:Preheat_Hot_Water_Valve a owl:Class, brick:Pressurization_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Pressurization Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "A pressurization fan is a device used to increase and maintain higher air pressure in a specified space compared to its surroundings."@en ; sh:rule [ a sh:TripleRule ; @@ -18792,6 +19238,7 @@ brick:Pressurization_Fan a owl:Class, brick:Private_Office a owl:Class, sh:NodeShape ; + rdfs:label "Private Office"@en ; rdfs:subClassOf brick:Enclosed_Office ; owl:deprecated true ; skos:definition "An office devoted to a single individual, with walls and door"@en ; @@ -18831,6 +19278,7 @@ brick:Private_Office a owl:Class, brick:Pump_Command a owl:Class, sh:NodeShape ; + rdfs:label "Pump Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls or reports the speed of a pump (typically as a proportion of its full pumping capacity)"@en ; sh:rule [ a sh:TripleRule ; @@ -18851,6 +19299,7 @@ brick:Pump_Command a owl:Class, brick:Pump_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Pump On Off Status"@en ; rdfs:subClassOf brick:On_Off_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Off ; @@ -18880,6 +19329,7 @@ brick:Pump_On_Off_Status a owl:Class, brick:Pump_Room a owl:Class, sh:NodeShape ; + rdfs:label "Pump Room"@en ; rdfs:subClassOf brick:Mechanical_Room ; owl:deprecated true ; skos:definition "A mechanical room that houses pumps"@en ; @@ -18919,6 +19369,7 @@ brick:Pump_Room a owl:Class, brick:Pump_Status a owl:Class, sh:NodeShape ; + rdfs:label "Pump Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Status of a pump"@en ; sh:rule [ a sh:TripleRule ; @@ -18939,6 +19390,7 @@ brick:Pump_Status a owl:Class, brick:Pump_VFD a owl:Class, sh:NodeShape ; + rdfs:label "Pump VFD"@en ; rdfs:subClassOf brick:Variable_Frequency_Drive ; skos:definition "Variable-frequency drive for pumps"@en ; sh:rule [ a sh:TripleRule ; @@ -18957,8 +19409,20 @@ brick:Pump_VFD a owl:Class, tag:Pump, tag:VFD . +brick:Radiant_Temperature a brick:Quantity ; + rdfs:label "Radiant Temperature"@en ; + qudt:applicableUnit unit:DEG_C, + unit:DEG_F, + unit:K ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Temperature ; + skos:definition "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)", + "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)"@en . + brick:Radiation_Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Radiation Hot Water System"@en ; rdfs:subClassOf brick:Hot_Water_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -18983,7 +19447,8 @@ brick:Radiation_Hot_Water_System a owl:Class, brick:Radon_Concentration_Sensor a owl:Class, sh:NodeShape ; - rdfs:subClassOf brick:Radioactivity_Concentration_Sensor ; + rdfs:label "Radon Concentration Sensor"@en ; + rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures the concentration of radioactivity due to radon"@en ; sh:rule [ a sh:TripleRule ; sh:object tag:Concentration ; @@ -19010,6 +19475,7 @@ brick:Radon_Concentration_Sensor a owl:Class, brick:Rain_Duration_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Rain Duration Sensor"@en ; rdfs:subClassOf brick:Duration_Sensor ; skos:definition "Measures the duration of precipitation within some time frame"@en ; sh:rule [ a sh:TripleRule ; @@ -19036,6 +19502,7 @@ brick:Rain_Duration_Sensor a owl:Class, brick:Rain_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Rain Level Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the amount of precipitation fallen"@en ; sh:property [ a sh:PropertyShape ; @@ -19043,6 +19510,12 @@ brick:Rain_Level_Sensor a owl:Class, sh:maxCount 1 ; sh:name "last known value" ; sh:nodeKind sh:IRI ; + sh:path brick:lastKnownValue ], + [ a sh:PropertyShape ; + sh:class bsh:LastKnownDoubleShape ; + sh:maxCount 1 ; + sh:name "last known value" ; + sh:nodeKind sh:IRI ; sh:path brick:lastKnownValue ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Point ; @@ -19061,15 +19534,9 @@ brick:Rain_Level_Sensor a owl:Class, tag:Sensor ; brick:hasQuantity brick:Precipitation . -brick:Rain_Sensor sh:property [ a sh:PropertyShape ; - sh:class bsh:LastKnownDoubleShape ; - sh:maxCount 1 ; - sh:name "last known value" ; - sh:nodeKind sh:IRI ; - sh:path brick:lastKnownValue ] . - brick:Rain_Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Rain Water Storage Tank"@en ; rdfs:subClassOf brick:Water_Storage_Tank ; skos:definition "A tank engineered to capture and store rainwater, usually for non-potable uses."@en ; sh:rule [ a sh:TripleRule ; @@ -19095,6 +19562,7 @@ brick:Rain_Water_Storage_Tank a owl:Class, brick:Rated_Speed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Rated Speed Setpoint"@en ; rdfs:subClassOf brick:Speed_Setpoint ; skos:definition "Sets rated speed"@en ; sh:rule [ a sh:TripleRule ; @@ -19121,6 +19589,7 @@ brick:Rated_Speed_Setpoint a owl:Class, brick:Reactive_Energy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Reactive Energy Sensor"@en ; rdfs:subClassOf brick:Electric_Energy_Sensor ; skos:definition "Measures the integral of reactive power"@en ; sh:rule [ a sh:TripleRule ; @@ -19152,6 +19621,7 @@ brick:Reactive_Energy_Sensor a owl:Class, brick:Reactive_Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Reactive Power Sensor"@en ; rdfs:subClassOf brick:Electric_Power_Sensor ; skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, is due to stored energy which returns to the source in each cycle"@en ; sh:rule [ a sh:TripleRule ; @@ -19183,6 +19653,7 @@ brick:Reactive_Power_Sensor a owl:Class, brick:Reception a owl:Class, sh:NodeShape ; + rdfs:label "Reception"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space, usually in a lobby, where visitors to a building or space can go to after arriving at a building and inform building staff that they have arrived"@en ; @@ -19210,7 +19681,9 @@ brick:Reception a owl:Class, tag:Space ; brick:isReplacedBy rec:Reception . -brick:Refrigerant_Level_Sensor a owl:Class ; +brick:Refrigerant_Level_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Refrigerant Level Sensor"@en ; rdfs:subClassOf brick:Sensor ; sh:property [ a sh:PropertyShape ; sh:class rec:DoubleValueObservation ; @@ -19218,11 +19691,32 @@ brick:Refrigerant_Level_Sensor a owl:Class ; sh:name "last known value" ; sh:nodeKind sh:IRI ; sh:path brick:lastKnownValue ] ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Level ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Refrigerant ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Sensor ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Level, + tag:Point, + tag:Refrigerant, + tag:Sensor ; brick:hasQuantity brick:Level ; brick:hasSubstance brick:Refrigerant . brick:Refrigeration_System a owl:Class, sh:NodeShape ; + rdfs:label "Refrigeration System"@en ; rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; skos:definition "System designed to remove heat from a space or substance, typically using a refrigerant in a closed loop"@en ; sh:rule [ a sh:TripleRule ; @@ -19238,6 +19732,7 @@ brick:Refrigeration_System a owl:Class, brick:Reheat_Command a owl:Class, sh:NodeShape ; + rdfs:label "Reheat Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "A command to activate reheating, which is used for either heating or for dehumidification purposes"@en ; sh:rule [ a sh:TripleRule ; @@ -19258,6 +19753,7 @@ brick:Reheat_Command a owl:Class, brick:Reheat_Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Reheat Hot Water System"@en ; rdfs:subClassOf brick:Hot_Water_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -19282,6 +19778,7 @@ brick:Reheat_Hot_Water_System a owl:Class, brick:Reheat_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Reheat Valve"@en ; rdfs:subClassOf brick:Heating_Valve ; skos:definition "A valve that controls air temperature by modulating the amount of hot water flowing through a reheat coil"@en ; sh:rule [ a sh:TripleRule ; @@ -19307,6 +19804,7 @@ brick:Reheat_Valve a owl:Class, brick:Relay a owl:Class, sh:NodeShape ; + rdfs:label "Relay"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "an electrically operated switch"@en ; @@ -19323,6 +19821,7 @@ brick:Relay a owl:Class, brick:Relay_Command a owl:Class, sh:NodeShape ; + rdfs:label "Relay Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Commands to switch the relay"@en ; sh:rule [ a sh:TripleRule ; @@ -19343,6 +19842,7 @@ brick:Relay_Command a owl:Class, brick:Relief_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Relief Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ; sh:rule [ a sh:TripleRule ; @@ -19363,6 +19863,7 @@ brick:Relief_Damper a owl:Class, brick:Relief_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Relief Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "A fan that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ; sh:rule [ a sh:TripleRule ; @@ -19383,6 +19884,7 @@ brick:Relief_Fan a owl:Class, brick:Remotely_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Remotely On Off Status"@en ; rdfs:subClassOf brick:On_Off_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Off ; @@ -19412,6 +19914,7 @@ brick:Remotely_On_Off_Status a owl:Class, brick:Retail_Room a owl:Class, sh:NodeShape ; + rdfs:label "Retail Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space set aside for retail in a larger establishment, e.g. a gift shop in a hospital"@en ; @@ -19441,6 +19944,7 @@ brick:Retail_Room a owl:Class, brick:Return_Air_CO2_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air CO2 Sensor"@en ; rdfs:subClassOf brick:CO2_Sensor ; skos:definition "Measures the concentration of CO2 in return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19473,6 +19977,7 @@ brick:Return_Air_CO2_Sensor a owl:Class, brick:Return_Air_CO2_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air CO2 Setpoint"@en ; rdfs:subClassOf brick:CO2_Setpoint ; skos:definition "Sets some property of CO2 in Return Air"@en ; sh:rule [ a sh:TripleRule ; @@ -19504,6 +20009,7 @@ brick:Return_Air_CO2_Setpoint a owl:Class, brick:Return_Air_CO_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air CO Sensor"@en ; rdfs:subClassOf brick:CO_Sensor ; skos:definition "Measures the concentration of CO in return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19536,6 +20042,7 @@ brick:Return_Air_CO_Sensor a owl:Class, brick:Return_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; skos:definition "Senses the dewpoint temperature of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19568,6 +20075,7 @@ brick:Return_Air_Dewpoint_Sensor a owl:Class, brick:Return_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; skos:definition "Measures the difference in pressure between the return and supply side"@en ; sh:rule [ a sh:TripleRule ; @@ -19605,6 +20113,7 @@ brick:Return_Air_Differential_Pressure_Sensor a owl:Class, brick:Return_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; skos:definition "Sets the target air differential pressure between an upstream and downstream point in a return air duct or conduit"@en ; sh:rule [ a sh:TripleRule ; @@ -19642,6 +20151,7 @@ brick:Return_Air_Differential_Pressure_Setpoint a owl:Class, brick:Return_Air_Enthalpy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Enthalpy Sensor"@en ; rdfs:subClassOf brick:Air_Enthalpy_Sensor ; skos:definition "Measures the total heat content of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19674,6 +20184,7 @@ brick:Return_Air_Enthalpy_Sensor a owl:Class, brick:Return_Air_Filter a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Filter"@en ; rdfs:subClassOf brick:Filter ; skos:definition "Filters return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19699,6 +20210,7 @@ brick:Return_Air_Filter a owl:Class, brick:Return_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19731,6 +20243,7 @@ brick:Return_Air_Flow_Sensor a owl:Class, brick:Return_Air_Grains_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Grains Sensor"@en ; rdfs:subClassOf brick:Air_Grains_Sensor ; skos:definition "Measures the mass of water vapor in return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19763,6 +20276,7 @@ brick:Return_Air_Grains_Sensor a owl:Class, brick:Return_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; skos:definition "Measures the relative humidity of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19800,6 +20314,7 @@ brick:Return_Air_Humidity_Sensor a owl:Class, brick:Return_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19832,6 +20347,7 @@ brick:Return_Air_Humidity_Setpoint a owl:Class, brick:Return_Air_Plenum a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Plenum"@en ; rdfs:subClassOf brick:Air_Plenum ; skos:definition "A component of the HVAC the receives air from the room to recirculate or exhaust to or from the building"@en ; sh:rule [ a sh:TripleRule ; @@ -19857,6 +20373,7 @@ brick:Return_Air_Plenum a owl:Class, brick:Return_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -19893,11 +20410,12 @@ brick:Return_Air_Temperature_High_Reset_Setpoint a owl:Class, tag:Return, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Return_Air . brick:Return_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -19934,11 +20452,12 @@ brick:Return_Air_Temperature_Low_Reset_Setpoint a owl:Class, tag:Return, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Return_Air . brick:Return_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "Measures the temperature of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -19966,10 +20485,11 @@ brick:Return_Air_Temperature_Sensor a owl:Class, tag:Return, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Return_Air . brick:Return_Chilled_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Return Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, brick:Return_Water_Temperature_Setpoint ; owl:deprecated true ; @@ -19985,6 +20505,7 @@ brick:Return_Condenser_Water a brick:Substance ; brick:isReplacedBy brick:Entering_Condenser_Water . brick:Return_Condenser_Water_Flow_Sensor a owl:Class ; + rdfs:label "Return Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, brick:Return_Water_Flow_Sensor ; owl:deprecated true ; @@ -19993,6 +20514,7 @@ brick:Return_Condenser_Water_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_Condenser_Water_Flow_Sensor . brick:Return_Condenser_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Return Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -20000,6 +20522,7 @@ brick:Return_Condenser_Water_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_Condenser_Water_Temperature_Sensor . brick:Return_Condenser_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Return Condenser Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Return_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -20008,6 +20531,7 @@ brick:Return_Condenser_Water_Temperature_Setpoint a owl:Class ; brick:Return_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Return Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "A damper that modulates the flow of return air"@en ; sh:rule [ a sh:TripleRule ; @@ -20028,6 +20552,7 @@ brick:Return_Damper a owl:Class, brick:Return_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Return Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "Fan moving return air -- air that is circulated from the building back into the HVAC system"@en ; sh:rule [ a sh:TripleRule ; @@ -20048,6 +20573,7 @@ brick:Return_Fan a owl:Class, brick:Return_Heating_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Return Heating Valve"@en ; rdfs:subClassOf brick:Heating_Valve ; skos:definition "A valve installed on the return side of a heat exchanger"@en ; sh:rule [ a sh:TripleRule ; @@ -20079,6 +20605,7 @@ brick:Return_Hot_Water a brick:Substance ; brick:isReplacedBy brick:Entering_Hot_Water . brick:Return_Hot_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Return Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Return_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -20094,6 +20621,7 @@ brick:Return_Water a brick:Substance ; brick:Reversing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Reversing Valve"@en ; rdfs:subClassOf brick:Refrigerant_Valve ; sh:rule [ a sh:TripleRule ; sh:object tag:Gas ; @@ -20123,6 +20651,7 @@ brick:Reversing_Valve a owl:Class, brick:Riser a owl:Class, sh:NodeShape ; + rdfs:label "Riser"@en ; rdfs:subClassOf brick:Vertical_Space ; owl:deprecated true ; skos:definition "A vertical shaft indented for installing building infrastructure e.g., electrical wire, network communication wire, plumbing, etc"@en ; @@ -20152,6 +20681,7 @@ brick:Riser a owl:Class, brick:Rooftop a owl:Class, sh:NodeShape ; + rdfs:label "Rooftop"@en ; rdfs:subClassOf brick:Floor ; owl:deprecated true ; sh:rule [ a sh:TripleRule ; @@ -20173,8 +20703,41 @@ brick:Rooftop a owl:Class, tag:Rooftop ; brick:isReplacedBy rec:RoofLevel . +brick:Room_Air_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Room Air Temperature Sensor"@en ; + rdfs:subClassOf brick:Air_Temperature_Sensor ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Air ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Room ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Sensor ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Temperature ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Air, + tag:Point, + tag:Room, + tag:Sensor, + tag:Temperature ; + brick:hasQuantity qudtqk:Temperature ; + brick:hasSubstance brick:Air . + brick:Run_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Run Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -20199,6 +20762,7 @@ brick:Run_Enable_Command a owl:Class, brick:Run_Request_Status a owl:Class, sh:NodeShape ; + rdfs:label "Run Request Status"@en ; rdfs:subClassOf brick:Run_Status ; skos:definition "Indicates if a request has been filed to start a device or equipment"@en ; sh:rule [ a sh:TripleRule ; @@ -20224,6 +20788,7 @@ brick:Run_Request_Status a owl:Class, brick:Safety_Shower a owl:Class, sh:NodeShape ; + rdfs:label "Safety Shower"@en ; rdfs:subClassOf brick:Emergency_Wash_Station ; sh:rule [ a sh:TripleRule ; sh:object tag:Emergency ; @@ -20258,6 +20823,7 @@ brick:Safety_Shower a owl:Class, brick:Sash_Position_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Sash Position Sensor"@en ; rdfs:subClassOf brick:Position_Sensor ; skos:definition "Measures the current position of a sash in terms of the percent of fully open"@en ; sh:rule [ a sh:TripleRule ; @@ -20284,6 +20850,7 @@ brick:Sash_Position_Sensor a owl:Class, brick:Schedule_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Schedule Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "The current setpoint as indicated by the schedule"@en ; sh:rule [ a sh:TripleRule ; @@ -20306,10 +20873,11 @@ brick:Schedule_Temperature_Setpoint a owl:Class, tag:Schedule, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Sensor_Failure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Sensor Failure Alarm"@en ; rdfs:subClassOf brick:Failure_Alarm ; sh:rule [ a sh:TripleRule ; sh:object tag:Alarm ; @@ -20334,6 +20902,7 @@ brick:Sensor_Failure_Alarm a owl:Class, brick:Server_Room a owl:Class, sh:NodeShape ; + rdfs:label "Server Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; sh:rule [ a sh:TripleRule ; @@ -20357,6 +20926,7 @@ brick:Server_Room a owl:Class, brick:Shared_Office a owl:Class, sh:NodeShape ; + rdfs:label "Shared Office"@en ; rdfs:subClassOf brick:Enclosed_Office ; owl:deprecated true ; skos:definition "An office used by multiple people"@en ; @@ -20396,6 +20966,7 @@ brick:Shared_Office a owl:Class, brick:Short_Cycle_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Short Cycle Alarm"@en ; rdfs:subClassOf brick:Cycle_Alarm ; skos:definition "An alarm that indicates a short cycle occurred. A short cycle occurs when a cooling cycle is prevented from completing its full cycle"@en ; sh:rule [ a sh:TripleRule ; @@ -20421,6 +20992,7 @@ brick:Short_Cycle_Alarm a owl:Class, brick:Shower a owl:Class, sh:NodeShape ; + rdfs:label "Shower"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space containing showers, usually adjacent to an athletic or execise area"@en ; @@ -20450,6 +21022,7 @@ brick:Shower a owl:Class, brick:Smoke_Detector a owl:Class, sh:NodeShape ; + rdfs:label "Smoke Detector"@en ; rdfs:subClassOf brick:Fire_Safety_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Detector ; @@ -20479,6 +21052,7 @@ brick:Smoke_Detector a owl:Class, brick:Soil_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Soil Temperature Sensor"@en ; rdfs:subClassOf brick:Temperature_Sensor ; skos:definition "Measures the temperature of soil"@en ; sh:rule [ a sh:TripleRule ; @@ -20501,11 +21075,12 @@ brick:Soil_Temperature_Sensor a owl:Class, tag:Sensor, tag:Soil, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Soil . brick:Solar_Azimuth_Angle_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Solar Azimuth Angle Sensor"@en ; rdfs:subClassOf brick:Angle_Sensor ; skos:definition "Measures the azimuth angle of the sun"@en ; sh:rule [ a sh:TripleRule ; @@ -20535,7 +21110,17 @@ brick:Solar_Azimuth_Angle_Sensor a owl:Class, tag:Solar ; brick:hasQuantity qudtqk:Angle . +brick:Solar_Radiance a brick:Quantity ; + rdfs:label "Solar Radiance"@en ; + qudt:applicableUnit unit:W-PER-M2-SR ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Radiance ; + skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction", + "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en . + brick:Solar_Radiance_Sensor a owl:Class ; + rdfs:label "Solar Radiance Sensor"@en ; rdfs:subClassOf brick:Sensor ; owl:deprecated true ; sh:property [ a sh:PropertyShape ; @@ -20550,6 +21135,7 @@ brick:Solar_Radiance_Sensor a owl:Class ; brick:Solar_Zenith_Angle_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Solar Zenith Angle Sensor"@en ; rdfs:subClassOf brick:Angle_Sensor ; skos:definition "Measures the zenith angle of the sun"@en ; sh:rule [ a sh:TripleRule ; @@ -20581,6 +21167,7 @@ brick:Solar_Zenith_Angle_Sensor a owl:Class, brick:Space_Heater a owl:Class, sh:NodeShape ; + rdfs:label "Space Heater"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A heater used to warm the air in an enclosed area, such as a room or office"@en ; sh:rule [ a sh:TripleRule ; @@ -20601,6 +21188,7 @@ brick:Space_Heater a owl:Class, brick:Speed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Speed Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "A command to set speed to a certain degree."@en ; sh:rule [ a sh:TripleRule ; @@ -20621,6 +21209,7 @@ brick:Speed_Command a owl:Class, brick:Speed_Reset_Command a owl:Class, sh:NodeShape ; + rdfs:label "Speed Reset Command"@en ; rdfs:subClassOf brick:Reset_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -20645,6 +21234,7 @@ brick:Speed_Reset_Command a owl:Class, brick:hasQuantity brick:Speed . brick:Speed_Status a owl:Class ; + rdfs:label "Speed Status"@en ; rdfs:subClassOf brick:Status ; owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; @@ -20653,6 +21243,7 @@ brick:Speed_Status a owl:Class ; brick:Sports_Service_Room a owl:Class, sh:NodeShape ; + rdfs:label "Sports Service Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces used in the support of sports"@en ; @@ -20687,6 +21278,7 @@ brick:Sports_Service_Room a owl:Class, brick:Stage_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Stage Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "A point representing a discrete stage which the equipment should be operating at. The desired stage number should be identified by an entity property"@en ; sh:rule [ a sh:TripleRule ; @@ -20712,6 +21304,7 @@ brick:Stage_Enable_Command a owl:Class, brick:Stage_Riser a owl:Class, sh:NodeShape ; + rdfs:label "Stage Riser"@en ; rdfs:subClassOf brick:Furniture ; owl:deprecated true ; skos:definition "A low platform in a space or on a stage"@en ; @@ -20741,6 +21334,7 @@ brick:Stage_Riser a owl:Class, brick:Stages_Status a owl:Class, sh:NodeShape ; + rdfs:label "Stages Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates which stage a control loop or equipment is in"@en ; sh:rule [ a sh:TripleRule ; @@ -20761,6 +21355,7 @@ brick:Stages_Status a owl:Class, brick:Staircase a owl:Class, sh:NodeShape ; + rdfs:label "Staircase"@en ; rdfs:subClassOf brick:Vertical_Space ; owl:deprecated true ; skos:definition "A vertical space containing stairs"@en ; @@ -20790,6 +21385,7 @@ brick:Staircase a owl:Class, brick:Standby_CRAC a owl:Class, sh:NodeShape ; + rdfs:label "Standby CRAC"@en ; rdfs:subClassOf brick:Computer_Room_Air_Conditioning ; skos:definition "A CRAC that is activated as part of a lead/lag operation or when an alarm occurs in a primary unit"@en ; sh:rule [ a sh:TripleRule ; @@ -20810,6 +21406,7 @@ brick:Standby_CRAC a owl:Class, brick:Standby_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Standby Cooling Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Zone_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -20846,10 +21443,11 @@ brick:Standby_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, tag:Standby, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Standby_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Standby Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "Fan that is activated as part of a lead/lag operation or when a primary fan raises an alarm"@en ; sh:rule [ a sh:TripleRule ; @@ -20870,6 +21468,7 @@ brick:Standby_Fan a owl:Class, brick:Standby_Glycool_Unit_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Standby Glycool Unit On Off Status"@en ; rdfs:subClassOf brick:Standby_Unit_On_Off_Status ; skos:definition "Indicates the on/off status of a standby glycool unit"@en ; sh:rule [ a sh:TripleRule ; @@ -20910,6 +21509,7 @@ brick:Standby_Glycool_Unit_On_Off_Status a owl:Class, brick:Standby_Heating_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Standby Heating Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Zone_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -20946,10 +21546,11 @@ brick:Standby_Heating_Zone_Air_Temperature_Setpoint a owl:Class, tag:Standby, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Standby_Target_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Standby Target Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Target_Zone_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -20986,10 +21587,11 @@ brick:Standby_Target_Zone_Air_Temperature_Setpoint a owl:Class, tag:Target, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Start_Stop_Command a owl:Class, sh:NodeShape ; + rdfs:label "Start Stop Command"@en ; rdfs:subClassOf brick:On_Off_Command ; skos:definition "A Start/Stop Command controls or reports the active/inactive status of a control sequence"@en ; sh:rule [ a sh:TripleRule ; @@ -21015,6 +21617,7 @@ brick:Start_Stop_Command a owl:Class, brick:Static_Transfer_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Static Transfer Switch"@en ; rdfs:subClassOf brick:Automatic_Switch, brick:Transfer_Switch ; skos:definition "Similar to ATS, but utilises no moving parts in the switch to achieve much faster response times."@en ; @@ -21041,6 +21644,7 @@ brick:Static_Transfer_Switch a owl:Class, brick:Steam_Baseboard_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Steam Baseboard Radiator"@en ; rdfs:subClassOf brick:Baseboard_Radiator, brick:Steam_Radiator ; skos:definition "Steam heating device located at or near the floor"@en ; @@ -21067,6 +21671,7 @@ brick:Steam_Baseboard_Radiator a owl:Class, brick:Steam_Distribution a owl:Class, sh:NodeShape ; + rdfs:label "Steam Distribution"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "Utilize a steam distribution source to represent how steam is distributed across multiple destinations"@en ; sh:rule [ a sh:TripleRule ; @@ -21087,6 +21692,7 @@ brick:Steam_Distribution a owl:Class, brick:Steam_On_Off_Command a owl:Class, sh:NodeShape ; + rdfs:label "Steam On Off Command"@en ; rdfs:subClassOf brick:On_Off_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -21116,6 +21722,7 @@ brick:Steam_On_Off_Command a owl:Class, brick:Steam_Pressure_Reducing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Steam Pressure Reducing Valve"@en ; rdfs:subClassOf brick:Pressure_Reducing_Valve, brick:Steam_Valve ; skos:definition "Valve designed to reduce steam pressure from a high to a manageable level; maintains uniform steam outlet pressure."@en ; @@ -21142,6 +21749,7 @@ brick:Steam_Pressure_Reducing_Valve a owl:Class, brick:Steam_Pressure_Relief_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Steam Pressure Relief Valve"@en ; rdfs:subClassOf brick:Pressure_Relief_Valve, brick:Steam_Valve ; skos:definition "Valve designed to automatically relieve excessive steam pressure."@en ; @@ -21168,6 +21776,7 @@ brick:Steam_Pressure_Relief_Valve a owl:Class, brick:Steam_System a owl:Class, sh:NodeShape ; + rdfs:label "Steam System"@en ; rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; skos:definition "The equipment, devices and conduits that handle the production and distribution of steam in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -21183,6 +21792,7 @@ brick:Steam_System a owl:Class, brick:Steam_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Steam Usage Sensor"@en ; rdfs:subClassOf brick:Usage_Sensor ; skos:definition "Measures the amount of steam that is consumed or used, over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -21209,6 +21819,7 @@ brick:Steam_Usage_Sensor a owl:Class, brick:Studio a owl:Class, sh:NodeShape ; + rdfs:label "Studio"@en ; rdfs:subClassOf brick:Media_Room ; owl:deprecated true ; skos:definition "A room used for the production or media, usually with either a specialized set or a specialized sound booth for recording"@en ; @@ -21249,6 +21860,7 @@ brick:Supply_Chilled_Water a brick:Substance ; brick:isReplacedBy brick:Leaving_Chilled_Water . brick:Supply_Chilled_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Supply Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -21263,6 +21875,7 @@ brick:Supply_Condenser_Water a brick:Substance ; brick:isReplacedBy brick:Leaving_Condenser_Water . brick:Supply_Condenser_Water_Flow_Sensor a owl:Class ; + rdfs:label "Supply Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, brick:Supply_Water_Flow_Sensor ; owl:deprecated true ; @@ -21271,6 +21884,7 @@ brick:Supply_Condenser_Water_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Condenser_Water_Flow_Sensor . brick:Supply_Condenser_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Supply Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor, brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; @@ -21279,6 +21893,7 @@ brick:Supply_Condenser_Water_Temperature_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Condenser_Water_Temperature_Sensor . brick:Supply_Condenser_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Supply Condenser Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -21301,6 +21916,7 @@ brick:Supply_Water a brick:Substance ; brick:Surveillance_Camera a owl:Class, sh:NodeShape ; + rdfs:label "Surveillance Camera"@en ; rdfs:subClassOf brick:Camera, brick:Video_Surveillance_Equipment ; sh:rule [ a sh:TripleRule ; @@ -21331,6 +21947,7 @@ brick:Surveillance_Camera a owl:Class, brick:Switch_Room a owl:Class, sh:NodeShape ; + rdfs:label "Switch Room"@en ; rdfs:subClassOf brick:Telecom_Room ; owl:deprecated true ; skos:definition "A telecommuncations room housing network switches"@en ; @@ -21365,6 +21982,7 @@ brick:Switch_Room a owl:Class, brick:Switch_Status a owl:Class, sh:NodeShape ; + rdfs:label "Switch Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Status of a switch"@en ; sh:rule [ a sh:TripleRule ; @@ -21385,6 +22003,7 @@ brick:Switch_Status a owl:Class, brick:System_Shutdown_Status a owl:Class, sh:NodeShape ; + rdfs:label "System Shutdown Status"@en ; rdfs:subClassOf brick:Status, brick:System_Status ; skos:definition "Indicates if a system has been shutdown"@en ; @@ -21411,6 +22030,7 @@ brick:System_Shutdown_Status a owl:Class, brick:TETRA_Room a owl:Class, sh:NodeShape ; + rdfs:label "TETRA Room"@en ; rdfs:subClassOf brick:Telecom_Room ; owl:deprecated true ; skos:definition "A room used for local two-way radio networks, e.g. the portable radios carried by facilities staff"@en ; @@ -21445,6 +22065,7 @@ brick:TETRA_Room a owl:Class, brick:TVOC_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "TVOC Level Sensor"@en ; rdfs:subClassOf brick:TVOC_Sensor ; skos:definition "A sensor measuring the level of all VOCs in air"@en ; sh:rule [ a sh:TripleRule ; @@ -21481,6 +22102,7 @@ brick:TVOC_Level_Sensor a owl:Class, brick:Tablet a owl:Class, sh:NodeShape ; + rdfs:label "Tablet"@en ; rdfs:subClassOf brick:ICT_Hardware ; skos:definition "A flat, handheld mobile computer, usually with a touchscreen"@en ; sh:rule [ a sh:TripleRule ; @@ -21506,6 +22128,7 @@ brick:Tablet a owl:Class, brick:Team_Room a owl:Class, sh:NodeShape ; + rdfs:label "Team Room"@en ; rdfs:subClassOf brick:Enclosed_Office ; owl:deprecated true ; skos:definition "An office used by multiple team members for specific work tasks. Distinct from Conference Room"@en ; @@ -21545,6 +22168,7 @@ brick:Team_Room a owl:Class, brick:Temperature_Adjust_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Adjust Sensor"@en ; rdfs:subClassOf brick:Adjust_Sensor ; skos:definition "Measures user-provided adjustment of temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -21571,6 +22195,7 @@ brick:Temperature_Adjust_Sensor a owl:Class, brick:Temperature_Alarm_Sensitivity_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Alarm Sensitivity Parameter"@en ; rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ; skos:definition "A parameter indicates the sensitivity to activate a temperature alarm."@en ; sh:rule [ a sh:TripleRule ; @@ -21601,6 +22226,7 @@ brick:Temperature_Alarm_Sensitivity_Parameter a owl:Class, brick:Temperature_Tolerance_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Tolerance Parameter"@en ; rdfs:subClassOf brick:Temperature_Parameter, brick:Tolerance_Parameter ; skos:definition "A parameter determining the difference between upper and lower limits of temperature."@en ; @@ -21627,6 +22253,7 @@ brick:Temperature_Tolerance_Parameter a owl:Class, brick:Temporary_Occupancy_Status a owl:Class, sh:NodeShape ; + rdfs:label "Temporary Occupancy Status"@en ; rdfs:subClassOf brick:Occupancy_Status ; skos:definition "For systems that differentiate between scheduled occupied/unoccupied mode, this indicates if a space is temporarily occupied when it would otherwise be unoccupied"@en ; sh:rule [ a sh:TripleRule ; @@ -21652,6 +22279,7 @@ brick:Temporary_Occupancy_Status a owl:Class, brick:Thermal_Energy_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Energy Usage Sensor"@en ; rdfs:subClassOf brick:Energy_Usage_Sensor ; skos:definition "A sensor that records the quantity of thermal energy consumed in a given period"@en ; sh:rule [ a sh:TripleRule ; @@ -21679,10 +22307,11 @@ brick:Thermal_Energy_Usage_Sensor a owl:Class, tag:Sensor, tag:Thermal, tag:Usage ; - brick:hasQuantity brick:Thermal_Energy . + brick:hasQuantity qudtqk:ThermalEnergy . brick:Thermal_Expansion_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Expansion Valve"@en ; rdfs:subClassOf brick:Refrigerant_Metering_Device ; skos:definition "An type of metering device that automatically adjusts refrigerant flow based on temperature changes, using a sensing bulb"@en ; sh:rule [ a sh:TripleRule ; @@ -21723,6 +22352,7 @@ brick:Thermal_Expansion_Valve a owl:Class, brick:Thermal_Power_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Power Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A standalone thermal power meter"@en ; sh:rule [ a sh:TripleRule ; @@ -21748,6 +22378,7 @@ brick:Thermal_Power_Meter a owl:Class, brick:Thermostat_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Thermostat Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -21767,6 +22398,7 @@ brick:Thermostat_Equipment a owl:Class, brick:Thermostat_Status a owl:Class, sh:NodeShape ; + rdfs:label "Thermostat Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Status of a thermostat"@en ; sh:rule [ a sh:TripleRule ; @@ -21787,6 +22419,7 @@ brick:Thermostat_Status a owl:Class, brick:Thermostatic_Mixing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Thermostatic Mixing Valve"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Mixing_Valve ; skos:definition "A valve that blends hot water with cold water to ensure constant, safe shower and bath outlet temperatures, preventing scalding."@en ; @@ -21813,6 +22446,7 @@ brick:Thermostatic_Mixing_Valve a owl:Class, brick:Ticketing_Booth a owl:Class, sh:NodeShape ; + rdfs:label "Ticketing Booth"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "A room or space used to sell or distribute tickets to events at a venue"@en ; @@ -21842,6 +22476,7 @@ brick:Ticketing_Booth a owl:Class, brick:Tint_Command a owl:Class, sh:NodeShape ; + rdfs:label "Tint Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "The target level of window tint."@en ; sh:rule [ a sh:TripleRule ; @@ -21862,6 +22497,7 @@ brick:Tint_Command a owl:Class, brick:Tint_Status a owl:Class, sh:NodeShape ; + rdfs:label "Tint Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "The current level of window tint, errors, or transient states."@en ; sh:rule [ a sh:TripleRule ; @@ -21882,6 +22518,7 @@ brick:Tint_Status a owl:Class, brick:Touchpanel a owl:Class, sh:NodeShape ; + rdfs:label "Touchpanel"@en ; rdfs:subClassOf brick:Interface ; skos:definition "A switch used to operate all or part of a lighting installation that uses a touch-based mechanism (typically resistive or capacitive) rather than a mechanical actuator"@en ; sh:rule [ a sh:TripleRule ; @@ -21907,6 +22544,7 @@ brick:Trace_Heat_Sensor owl:deprecated true ; brick:Transfer_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Transfer Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "A fan that transfers air from a space to another space."@en ; sh:rule [ a sh:TripleRule ; @@ -21927,6 +22565,7 @@ brick:Transfer_Fan a owl:Class, brick:Transformer a owl:Class, sh:NodeShape ; + rdfs:label "Transformer"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "A Transformer is usually fed by a high-voltage source and then steps down the voltage to a lower-voltage feed for low-voltage application (such as lights). Transformers also can step up voltage, but this generally does not apply to in building distribution."@en ; sh:rule [ a sh:TripleRule ; @@ -21942,6 +22581,7 @@ brick:Transformer a owl:Class, brick:Transformer_Room a owl:Class, sh:NodeShape ; + rdfs:label "Transformer Room"@en ; rdfs:subClassOf brick:Electrical_Room ; owl:deprecated true ; skos:definition "An electrical room where electricity enters and is transformed to different voltages and currents by the equipment contained in the room"@en ; @@ -21981,6 +22621,7 @@ brick:Transformer_Room a owl:Class, brick:Tunnel a owl:Class, sh:NodeShape ; + rdfs:label "Tunnel"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "An enclosed space that connects buildings. Often underground"@en ; @@ -22005,6 +22646,7 @@ brick:Tunnel a owl:Class, brick:Underfloor_Air_Plenum a owl:Class, sh:NodeShape ; + rdfs:label "Underfloor Air Plenum"@en ; rdfs:subClassOf brick:Supply_Air_Plenum ; skos:definition "An open space between a structural concrete slab and the underside of a raised access floor system that connects to an air handling unit to receive conditioned and/or ventilating air before delivery to the room(s)"@en ; sh:rule [ a sh:TripleRule ; @@ -22030,6 +22672,7 @@ brick:Underfloor_Air_Plenum a owl:Class, brick:Underfloor_Air_Plenum_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Underfloor Air Plenum Static Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Sensor ; skos:definition "Measures the outward push of air against the plenum surfaces and used to measure the resistance when air moves through the plenum"@en ; sh:rule [ a sh:TripleRule ; @@ -22067,10 +22710,11 @@ brick:Underfloor_Air_Plenum_Static_Pressure_Sensor a owl:Class, tag:Sensor, tag:Static, tag:Underfloor ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Underfloor_Air_Plenum_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Underfloor Air Plenum Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; skos:definition "Sets the underfloor air plenum static pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -22108,10 +22752,11 @@ brick:Underfloor_Air_Plenum_Static_Pressure_Setpoint a owl:Class, tag:Setpoint, tag:Static, tag:Underfloor ; - brick:hasQuantity brick:Static_Pressure . + brick:hasQuantity qudtqk:StaticPressure . brick:Underfloor_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Underfloor Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "Measures the temperature of underfloor air"@en ; sh:rule [ a sh:TripleRule ; @@ -22139,10 +22784,11 @@ brick:Underfloor_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Underfloor ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unit_Failure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Unit Failure Alarm"@en ; rdfs:subClassOf brick:Failure_Alarm ; skos:definition "An alarm that indicates the failure of an equipment or device"@en ; sh:rule [ a sh:TripleRule ; @@ -22167,6 +22813,7 @@ brick:Unit_Failure_Alarm a owl:Class, tag:Unit . brick:Unoccupied_Air_Temperature_Cooling_Setpoint a owl:Class ; + rdfs:label "Unoccupied Air Temperature Cooling Setpoint"@en ; rdfs:subClassOf brick:Unoccupied_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -22174,6 +22821,7 @@ brick:Unoccupied_Air_Temperature_Cooling_Setpoint a owl:Class ; brick:isReplacedBy brick:Unoccupied_Cooling_Zone_Air_Temperature_Setpoint . brick:Unoccupied_Air_Temperature_Heating_Setpoint a owl:Class ; + rdfs:label "Unoccupied Air Temperature Heating Setpoint"@en ; rdfs:subClassOf brick:Unoccupied_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -22182,6 +22830,7 @@ brick:Unoccupied_Air_Temperature_Heating_Setpoint a owl:Class ; brick:Unoccupied_Cooling_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Mode Status"@en ; rdfs:subClassOf brick:Cooling_Mode_Status, brick:Unoccupied_Mode_Status ; skos:definition "Indicates whether a system, device or control loop is in an unoccupied cooling mode"@en ; @@ -22213,6 +22862,7 @@ brick:Unoccupied_Cooling_Mode_Status a owl:Class, brick:Unoccupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -22245,10 +22895,11 @@ brick:Unoccupied_Cooling_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Cool ; @@ -22275,10 +22926,11 @@ brick:Unoccupied_Cooling_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Heating_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Mode Status"@en ; rdfs:subClassOf brick:Heating_Mode_Status, brick:Unoccupied_Mode_Status ; skos:definition "Indicates whether a system, device or control loop is in an unoccupied heating mode"@en ; @@ -22310,6 +22962,7 @@ brick:Unoccupied_Heating_Mode_Status a owl:Class, brick:Unoccupied_Heating_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -22342,10 +22995,11 @@ brick:Unoccupied_Heating_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Heat ; @@ -22372,10 +23026,11 @@ brick:Unoccupied_Heating_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Target humidity level when the location is unoccupied."@en ; sh:rule [ a sh:TripleRule ; @@ -22402,6 +23057,7 @@ brick:Unoccupied_Humidity_Setpoint a owl:Class, brick:Unoccupied_Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Return Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Return_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -22439,10 +23095,11 @@ brick:Unoccupied_Return_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Room Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Room_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -22480,9 +23137,10 @@ brick:Unoccupied_Room_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Zone_Air_Temperature_Setpoint a owl:Class ; + rdfs:label "Unoccupied Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -22491,6 +23149,7 @@ brick:Unoccupied_Zone_Air_Temperature_Setpoint a owl:Class ; brick:VFD_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "VFD Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables operation of a variable frequency drive"@en ; sh:rule [ a sh:TripleRule ; @@ -22516,6 +23175,7 @@ brick:VFD_Enable_Command a owl:Class, brick:VRF_System a owl:Class, sh:NodeShape ; + rdfs:label "VRF System"@en ; rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; sh:rule [ a sh:TripleRule ; sh:object tag:Flow ; @@ -22540,6 +23200,7 @@ brick:VRF_System a owl:Class, brick:Valve_Position_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Valve Position Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates that the valve position is not in a normal state."@en ; sh:rule [ a sh:TripleRule ; @@ -22565,6 +23226,7 @@ brick:Valve_Position_Alarm a owl:Class, brick:Valve_Position_Command a owl:Class, sh:NodeShape ; + rdfs:label "Valve Position Command"@en ; rdfs:subClassOf brick:Position_Command, brick:Valve_Command ; skos:definition "Controls the position (the degree of openness) of a valve"@en ; @@ -22592,6 +23254,7 @@ brick:Valve_Position_Command a owl:Class, brick:Valve_Position_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Valve Position Sensor"@en ; rdfs:subClassOf brick:Position_Sensor ; skos:definition "Measures the current position of a valve in terms of the percent of fully open"@en ; sh:rule [ a sh:TripleRule ; @@ -22618,6 +23281,7 @@ brick:Valve_Position_Sensor a owl:Class, brick:Valve_Status a owl:Class, sh:NodeShape ; + rdfs:label "Valve Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "The current status of the valve."@en ; sh:rule [ a sh:TripleRule ; @@ -22638,6 +23302,7 @@ brick:Valve_Status a owl:Class, brick:Velocity_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Velocity Pressure Setpoint"@en ; rdfs:subClassOf brick:Pressure_Setpoint ; skos:definition "Sets static veloicty pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -22660,10 +23325,11 @@ brick:Velocity_Pressure_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Velocity ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Vent_Operating_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Vent Operating Mode Status"@en ; rdfs:subClassOf brick:Operating_Mode_Status ; skos:definition "Indicates the current operating mode of a vent"@en ; sh:rule [ a sh:TripleRule ; @@ -22694,6 +23360,7 @@ brick:Vent_Operating_Mode_Status a owl:Class, brick:Ventilation_Air_Flow_Ratio_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Ventilation Air Flow Ratio Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Ventilation_Air_Flow_Ratio_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -22724,6 +23391,7 @@ brick:Ventilation_Air_Flow_Ratio_Limit a owl:Class, brick:Ventilation_Air_System a owl:Class, sh:NodeShape ; + rdfs:label "Ventilation Air System"@en ; rdfs:subClassOf brick:Air_System ; skos:definition "The equipment, devices, and conduits that handle the introduction and distribution of ventilation air in the building"@en ; sh:rule [ a sh:TripleRule ; @@ -22744,6 +23412,7 @@ brick:Ventilation_Air_System a owl:Class, brick:Video_Intercom a owl:Class, sh:NodeShape ; + rdfs:label "Video Intercom"@en ; rdfs:subClassOf brick:Intercom_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -22768,6 +23437,7 @@ brick:Video_Intercom a owl:Class, brick:Visitor_Lobby a owl:Class, sh:NodeShape ; + rdfs:label "Visitor Lobby"@en ; rdfs:subClassOf brick:Lobby ; owl:deprecated true ; skos:definition "A lobby for visitors to the building. Sometimes used to distinguish from an employee entrance looby"@en ; @@ -22800,8 +23470,28 @@ brick:Visitor_Lobby a owl:Class, tag:Visitor ; brick:isReplacedBy rec:Lobby . +brick:Voltage_Angle a brick:Quantity ; + rdfs:label "Voltage Angle"@en ; + qudt:applicableUnit unit:ARCMIN, + unit:ARCSEC, + unit:DEG, + unit:GON, + unit:GRAD, + unit:MIL, + unit:MicroRAD, + unit:MilliARCSEC, + unit:MilliRAD, + unit:RAD, + unit:REV ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader brick:Phasor_Angle ; + skos:definition "Angle of voltage phasor", + "Angle of voltage phasor"@en . + brick:Voltage_Imbalance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Voltage Imbalance Sensor"@en ; rdfs:subClassOf brick:Imbalance_Sensor ; skos:definition "A sensor which measures the voltage difference (imbalance) between phases of an electrical system"@en ; sh:rule [ a sh:TripleRule ; @@ -22828,6 +23518,7 @@ brick:Voltage_Imbalance_Sensor a owl:Class, brick:Voltage_Ratio_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Voltage Ratio Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets the ratio of voltage in a transformer"@en ; sh:rule [ a sh:TripleRule ; @@ -22855,7 +23546,7 @@ brick:Voltage_Ratio_Setpoint a owl:Class, tag:Ratio, tag:Setpoint, tag:Voltage ; - brick:hasQuantity brick:Voltage . + brick:hasQuantity qudtqk:Voltage . brick:Volume a brick:Quantity ; rdfs:label "Volume"@en ; @@ -22864,7 +23555,7 @@ brick:Volume a brick:Quantity ; unit:ANGSTROM3, unit:BBL, unit:BBL_UK_PET, - unit:BBL_US, + unit:BU_US_DRY, unit:CentiM3, unit:DecaL, unit:DecaM3, @@ -22878,7 +23569,7 @@ brick:Volume a brick:Quantity ; unit:GT, unit:HectoL, unit:IN3, - unit:Kilo-FT3, + unit:KiloCubicFT, unit:KiloL, unit:L, unit:M3, @@ -22889,6 +23580,7 @@ brick:Volume a brick:Quantity ; unit:MicroM3, unit:MilliL, unit:MilliM3, + unit:NT, unit:NanoL, unit:OZ_VOL_UK, unit:PINT, @@ -22898,9 +23590,8 @@ brick:Volume a brick:Quantity ; unit:PlanckVolume, unit:QT_UK, unit:QT_US, - unit:RT, + unit:STANDARD, unit:STR, - unit:Standard, unit:TBSP, unit:TON_Register, unit:TON_SHIPPING_UK, @@ -22912,6 +23603,7 @@ brick:Volume a brick:Quantity ; brick:Wall_Air_Conditioner a owl:Class, sh:NodeShape ; + rdfs:label "Wall Air Conditioner"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A wall air conditioner, also known as a window air conditioner when installed in a window frame, is a self-contained unit that cools a room by drawing in warm air, cooling it over a refrigerant coil, and recirculating it back into the space."@en ; sh:rule [ a sh:TripleRule ; @@ -22937,6 +23629,7 @@ brick:Wall_Air_Conditioner a owl:Class, brick:Wall_Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Wall Fan Coil Unit"@en ; rdfs:subClassOf brick:Fan_Coil_Unit ; skos:definition "A wall-mounted fan coil unit used for individual room heating and cooling, often found in hotels, apartments, and offices"@en ; sh:rule [ a sh:TripleRule ; @@ -22977,6 +23670,7 @@ brick:Wall_Fan_Coil_Unit a owl:Class, brick:Wardrobe a owl:Class, sh:NodeShape ; + rdfs:label "Wardrobe"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "Storage for clothing, costumes, or uniforms"@en ; @@ -23006,6 +23700,7 @@ brick:Wardrobe a owl:Class, brick:Warm_Cool_Adjust_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Warm Cool Adjust Sensor"@en ; rdfs:subClassOf brick:Adjust_Sensor ; skos:definition "User provided adjustment of zone temperature, typically in the range of +/- 5 degrees"@en ; sh:rule [ a sh:TripleRule ; @@ -23037,6 +23732,7 @@ brick:Warm_Cool_Adjust_Sensor a owl:Class, brick:Warmest_Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Warmest Zone Air Temperature Sensor"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ; skos:definition "The zone temperature that is warmest; drives the supply temperature of cold air. A computed value rather than a physical sensor. Also referred to as a 'Highest Zone Air Temperature Sensor'"@en ; sh:rule [ a sh:TripleRule ; @@ -23069,10 +23765,11 @@ brick:Warmest_Zone_Air_Temperature_Sensor a owl:Class, tag:Temperature, tag:Warmest, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Waste_Amount_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Waste Amount Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "A metric used for measuring the quantity of waste generated in a building."@en ; sh:rule [ a sh:TripleRule ; @@ -23093,6 +23790,7 @@ brick:Waste_Amount_Sensor a owl:Class, brick:Waste_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Waste Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A Waste Meter is used for tracking and categorizing various waste types in a building, aiding in waste management facilitating waste reduction, recycling, and disposal strategies."@en ; sh:rule [ a sh:TripleRule ; @@ -23108,6 +23806,7 @@ brick:Waste_Meter a owl:Class, brick:Waste_Storage a owl:Class, sh:NodeShape ; + rdfs:label "Waste Storage"@en ; rdfs:subClassOf brick:Storage_Room ; owl:deprecated true ; skos:definition "A room used for storing waste such as trash or recycling"@en ; @@ -23142,6 +23841,7 @@ brick:Waste_Storage a owl:Class, brick:Water_Cooled_Chiller a owl:Class, sh:NodeShape ; + rdfs:label "Water Cooled Chiller"@en ; rdfs:subClassOf brick:Chiller ; skos:definition "A chiller system using water in the heat exchange process, employed in industrial or commercial facilities for cooling"@en ; sh:rule [ a sh:TripleRule ; @@ -23167,6 +23867,7 @@ brick:Water_Cooled_Chiller a owl:Class, brick:Water_Differential_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Water Differential Temperature Setpoint"@en ; rdfs:subClassOf brick:Differential_Temperature_Setpoint ; skos:definition "Sets the target differential temperature between the start and end of a heat transfer cycle in a water circuit"@en ; sh:rule [ a sh:TripleRule ; @@ -23199,6 +23900,7 @@ brick:Water_Differential_Temperature_Setpoint a owl:Class, brick:Water_Distribution a owl:Class, sh:NodeShape ; + rdfs:label "Water Distribution"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "Utilize a water distribution source to represent how water is distributed across multiple destinations (pipes)"@en ; sh:rule [ a sh:TripleRule ; @@ -23219,6 +23921,7 @@ brick:Water_Distribution a owl:Class, brick:Water_Loss_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Water Loss Alarm"@en ; rdfs:subClassOf brick:Water_Alarm ; skos:definition "An alarm that indicates a loss of water e.g. during transport"@en ; sh:rule [ a sh:TripleRule ; @@ -23244,6 +23947,7 @@ brick:Water_Loss_Alarm a owl:Class, brick:Water_Pressure_Reducing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Water Pressure Reducing Valve"@en ; rdfs:subClassOf brick:Pressure_Reducing_Valve, brick:Water_Valve ; skos:definition "Valve specifically designed to reduce high water pressure to a usable level; maintains uniform water outlet pressure."@en ; @@ -23270,6 +23974,7 @@ brick:Water_Pressure_Reducing_Valve a owl:Class, brick:Water_Pressure_Relief_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Water Pressure Relief Valve"@en ; rdfs:subClassOf brick:Pressure_Relief_Valve, brick:Water_Valve ; skos:definition "Valve designed to automatically relieve excessive water pressure."@en ; @@ -23296,6 +24001,7 @@ brick:Water_Pressure_Relief_Valve a owl:Class, brick:Water_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Water Pressure Setpoint"@en ; rdfs:subClassOf brick:Pressure_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Pressure ; @@ -23312,10 +24018,11 @@ brick:Water_Pressure_Setpoint a owl:Class, brick:hasAssociatedTag tag:Pressure, tag:Setpoint, tag:Water ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Water_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Water Tank"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "A space used to hold water. This will likely be deprecated in future releases of Brick for the sake of clarity w.r.t. equipment classification of tanks"@en ; @@ -23343,10 +24050,9 @@ brick:Water_Tank a owl:Class, tag:Water ; brick:isReplacedBy rec:UtilitiesRoom . -brick:Weather_Condition a brick:Quantity . - brick:Weather_Station a owl:Class, sh:NodeShape ; + rdfs:label "Weather Station"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "A dedicated weather measurement station"@en ; @@ -23368,6 +24074,7 @@ brick:Weather_Station a owl:Class, brick:Wind_Direction_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Wind Direction Sensor"@en ; rdfs:subClassOf brick:Direction_Sensor ; skos:definition "Measures the direction of wind in degrees relative to North"@en ; sh:rule [ a sh:TripleRule ; @@ -23394,6 +24101,7 @@ brick:Wind_Direction_Sensor a owl:Class, brick:Wind_Speed_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Wind Speed Sensor"@en ; rdfs:subClassOf brick:Speed_Sensor ; skos:definition "Measured speed of wind, caused by air moving from high to low pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -23420,6 +24128,7 @@ brick:Wind_Speed_Sensor a owl:Class, brick:Workshop a owl:Class, sh:NodeShape ; + rdfs:label "Workshop"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space used to house equipment that can be used to repair or fabricate things"@en ; @@ -23449,6 +24158,7 @@ brick:Workshop a owl:Class, brick:Zone_Air_Conditioning_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Zone Air Conditioning Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates the mode of AC for a zone"@en ; sh:rule [ a sh:TripleRule ; @@ -23483,6 +24193,7 @@ brick:Zone_Air_Conditioning_Mode_Status a owl:Class, tag:Zone . brick:Zone_Air_Cooling_Temperature_Setpoint a owl:Class ; + rdfs:label "Zone Air Cooling Temperature Setpoint"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Setpoint ; owl:deprecated true ; skos:definition "The upper (cooling) setpoint for zone air temperature"@en ; @@ -23492,6 +24203,7 @@ brick:Zone_Air_Cooling_Temperature_Setpoint a owl:Class ; brick:Zone_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Zone Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; skos:definition "Measures dewpoint of zone air"@en ; sh:rule [ a sh:TripleRule ; @@ -23523,6 +24235,7 @@ brick:Zone_Air_Dewpoint_Sensor a owl:Class, brick:hasSubstance brick:Zone_Air . brick:Zone_Air_Heating_Temperature_Setpoint a owl:Class ; + rdfs:label "Zone Air Heating Temperature Setpoint"@en ; rdfs:subClassOf brick:Zone_Air_Temperature_Setpoint ; owl:deprecated true ; skos:definition "The lower (heating) setpoint for zone air temperature"@en ; @@ -23532,6 +24245,7 @@ brick:Zone_Air_Heating_Temperature_Setpoint a owl:Class ; brick:Zone_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Zone Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; skos:definition "Measures the relative humidity of zone air"@en ; sh:rule [ a sh:TripleRule ; @@ -23569,6 +24283,7 @@ brick:Zone_Air_Humidity_Sensor a owl:Class, brick:Zone_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Zone Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; skos:definition "Humidity setpoint for zone air"@en ; sh:rule [ a sh:TripleRule ; @@ -23601,6 +24316,7 @@ brick:Zone_Air_Humidity_Setpoint a owl:Class, brick:Zone_CO2_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Zone CO2 Level Sensor"@en ; rdfs:subClassOf brick:CO2_Level_Sensor ; skos:definition "A physical or virtual sensor which represents the CO2 level of an HVAC Zone"@en ; sh:rule [ a sh:TripleRule ; @@ -23633,6 +24349,7 @@ brick:Zone_CO2_Level_Sensor a owl:Class, brick:Zone_Damper a owl:Class, sh:NodeShape ; + rdfs:label "Zone Damper"@en ; rdfs:subClassOf brick:Damper ; skos:definition "Dampers open and close to regulate zone temperatures in an HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -23653,6 +24370,7 @@ brick:Zone_Damper a owl:Class, brick:Zone_Occupied_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Zone Occupied Load Shed Command"@en ; rdfs:subClassOf brick:Occupied_Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -23687,6 +24405,7 @@ brick:Zone_Occupied_Load_Shed_Command a owl:Class, brick:Zone_Standby_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Zone Standby Load Shed Command"@en ; rdfs:subClassOf brick:Standby_Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -23721,6 +24440,7 @@ brick:Zone_Standby_Load_Shed_Command a owl:Class, brick:Zone_Unoccupied_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Zone Unoccupied Load Shed Command"@en ; rdfs:subClassOf brick:Unoccupied_Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -23820,7 +24540,7 @@ bsh:Active_EnergyQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:MegaW-HR unit:KiloW-HR unit:W-HR ) ; + sh:in ( unit:W-HR unit:MegaW-HR unit:KiloW-HR ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -23834,7 +24554,7 @@ bsh:AddDefaultEVSEChargerDirection a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; sh:construct """ CONSTRUCT { - $this brick:electricVehicleChargerDirectionality [ brick:value "unidirectional" ] + $this brick:electricVehicleChargerDirectionality [ brick:value "unidirectional"^^xsd:string ] } WHERE { $this rdf:type brick:Electric_Vehicle_Charging_Station . FILTER NOT EXISTS { @@ -23860,7 +24580,7 @@ bsh:Alternating_Current_FrequencyQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:GigaHZ unit:HZ unit:MegaHZ unit:KiloHZ ) ; + sh:in ( unit:KiloHZ unit:GigaHZ unit:MegaHZ unit:HZ ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -23870,22 +24590,7 @@ bsh:Ammonia_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:Apparent_EnergyQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:KiloV-A-HR unit:V-A-HR unit:MegaV-A-HR ) ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -23895,12 +24600,12 @@ bsh:Apparent_EnergyQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ] . -bsh:Atmospheric_PressureQuantityShape a owl:Class, +bsh:Apparent_EnergyQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:KiloPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:CentiM_H2O unit:FT_HG unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:HectoBAR unit:N-PER-M2 unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:PA unit:LB_F-PER-IN2 unit:MilliBAR unit:ATM_T unit:BAR unit:KiloGM_F-PER-M2 unit:GM_F-PER-CentiM2 unit:KiloBAR unit:DeciBAR unit:FT_H2O unit:IN_H2O_60DEG_F unit:MilliM_H2O unit:IN_HG_60DEG_F unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliPA unit:MilliM_HGA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:KiloPA_A unit:PicoPA unit:DYN-PER-CentiM2 unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloLB_F-PER-IN2 unit:N-PER-MilliM2 unit:IN_H2O_39dot2DEG_F unit:CentiM_H20_4DEG_C unit:MegaPA ) ; + sh:in ( unit:V-A-HR unit:MegaV-A-HR unit:KiloV-A-HR ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -23933,7 +24638,22 @@ bsh:CO2_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:or bsh:NumericValue ; + sh:path brick:value ], + [ a sh:PropertyShape ; + sh:in ( unit:PPM unit:PPB ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path brick:hasUnit ] . + +bsh:CO_ConcentrationQuantityShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -23943,20 +24663,20 @@ bsh:CO2_ConcentrationQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ] . -bsh:CO_ConcentrationQuantityShape a owl:Class, +bsh:CloudageQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:OKTA ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:CollectionIncludesEquipment a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; @@ -23994,7 +24714,7 @@ bsh:Current_AngleQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:DEG unit:GON unit:MicroRAD unit:ARCMIN unit:MilliRAD unit:MIL unit:MilliARCSEC unit:RAD unit:REV unit:GRAD ) ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:MIL unit:RAD unit:REV unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24019,7 +24739,7 @@ bsh:Current_Total_Harmonic_DistortionQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:DeciB_M unit:PERCENT ) ; + sh:in ( unit:PERCENT unit:DeciB_M ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24044,28 +24764,6 @@ FILTER NOT EXISTS {$this a ?newClass} sh:prefixes ] ; sh:targetClass brick:Entity . -bsh:DeprecationRule a sh:NodeShape ; - sh:property [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:path brick:deprecatedInVersion ], - [ sh:datatype xsd:string ; - sh:maxCount 1 ; - sh:path brick:deprecationMitigationMessage ], - [ sh:class sh:NodeShape ; - sh:maxCount 1 ; - sh:path brick:deprecationMitigationRule ], - [ sh:maxCount 0 ; - sh:message "This concept is deprecated" ; - sh:path ( rdf:type brick:deprecation ) ; - sh:severity sh:Warning ] ; - sh:rule [ a sh:SPARQLRule ; - sh:construct """ - CONSTRUCT { $this owl:deprecated true } - WHERE { $this brick:deprecation ?dep } - """ ; - sh:prefixes ] ; - sh:targetSubjectsOf brick:deprecation . - bsh:DeprecationRuleForInstances a sh:NodeShape ; sh:severity sh:Warning ; sh:sparql [ a sh:SPARQLConstraint ; @@ -24084,22 +24782,22 @@ bsh:Differential_CO2_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:Differential_CO_ConcentrationQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24119,7 +24817,7 @@ bsh:Differential_Dynamic_PressureQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:FT_HG unit:CentiM_H2O unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:N-PER-M2 unit:HectoBAR unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:PA unit:LB_F-PER-IN2 unit:MilliBAR unit:ATM_T unit:BAR unit:IN_HG_60DEG_F unit:GM_F-PER-CentiM2 unit:KiloBAR unit:FT_H2O unit:MilliM_H2O unit:DeciBAR unit:KiloGM_F-PER-M2 unit:IN_H2O_60DEG_F unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliPA unit:MilliM_HGA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:DYN-PER-CentiM2 unit:PicoPA unit:KiloPA_A unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloLB_F-PER-IN2 unit:N-PER-MilliM2 unit:IN_H2O_39dot2DEG_F unit:CentiM_H20_4DEG_C unit:MegaPA ) ; + sh:in ( unit:DeciBAR unit:CentiM_H2O_4DEG_C unit:PlanckPressure unit:FT_HG unit:MegaPSI unit:DYN-PER-CentiM2 unit:PicoPA unit:GigaPA unit:IN_H2O unit:MicroBAR unit:PDL-PER-IN2 unit:KiloPA unit:MegaBAR unit:PDL-PER-FT2 unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:M_H2O unit:CentiM_HG_0DEG_C unit:IN_HG_32DEG_F unit:MicroPA unit:IN_H2O_39dot2DEG_F unit:HectoBAR unit:IN_HG_60DEG_F unit:KiloGM_F-PER-M2 unit:CentiM_H2O unit:DecaPA unit:N-PER-CentiM2 unit:BARYE unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:N-PER-MilliM2 unit:FT_H2O_39dot2DEG_F unit:CentiBAR unit:KiloLB_F-PER-IN2 unit:KIP_F-PER-IN2 unit:BARAD unit:IN_HG unit:KiloPA_A unit:MilliTORR unit:MilliM_HGA unit:HectoPA unit:IN_H2O_60DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloGM_F-PER-MilliM2 unit:TORR unit:BAR unit:ATM unit:PSI unit:MegaPA unit:ATM_T unit:N-PER-M2 unit:MicroTORR unit:KiloN-PER-M2 unit:MicroATM unit:CentiM_HG unit:MilliM_HG unit:LB_F-PER-IN2 unit:MilliBAR unit:MilliPA unit:KiloBAR unit:LB_F-PER-FT2 unit:PA ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24134,7 +24832,7 @@ bsh:Differential_Static_PressureQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:FT_HG unit:CentiM_H2O unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:HectoBAR unit:N-PER-M2 unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:PA unit:LB_F-PER-IN2 unit:MilliBAR unit:ATM_T unit:BAR unit:IN_HG_60DEG_F unit:GM_F-PER-CentiM2 unit:IN_H2O_60DEG_F unit:FT_H2O unit:MilliM_H2O unit:KiloBAR unit:DeciBAR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliM_HGA unit:MilliPA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:KiloPA_A unit:PicoPA unit:DYN-PER-CentiM2 unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloLB_F-PER-IN2 unit:N-PER-MilliM2 unit:IN_H2O_39dot2DEG_F unit:CentiM_H20_4DEG_C unit:MegaPA ) ; + sh:in ( unit:DeciBAR unit:CentiM_H2O_4DEG_C unit:MegaPSI unit:DYN-PER-CentiM2 unit:MilliBAR unit:PlanckPressure unit:FT_HG unit:PicoPA unit:GigaPA unit:IN_H2O unit:MicroBAR unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:KiloPA unit:MegaBAR unit:MilliM_H2O unit:GM_F-PER-CentiM2 unit:M_H2O unit:CentiM_HG_0DEG_C unit:IN_HG_32DEG_F unit:IN_H2O_39dot2DEG_F unit:BARYE unit:DecaPA unit:HectoBAR unit:IN_HG_60DEG_F unit:KiloGM_F-PER-M2 unit:CentiM_H2O unit:MicroPA unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:N-PER-MilliM2 unit:FT_H2O_39dot2DEG_F unit:CentiBAR unit:KiloLB_F-PER-IN2 unit:KIP_F-PER-IN2 unit:IN_HG unit:BARAD unit:KiloPA_A unit:HectoPA unit:MilliM_HGA unit:MilliTORR unit:KiloGM_F-PER-CentiM2 unit:TORR unit:KiloGM_F-PER-MilliM2 unit:BAR unit:ATM unit:PSI unit:MegaPA unit:ATM_T unit:N-PER-M2 unit:MicroTORR unit:CentiM_HG unit:MicroATM unit:MilliM_HG unit:KiloBAR unit:KiloN-PER-M2 unit:LB_F-PER-IN2 unit:IN_H2O_60DEG_F unit:MilliPA unit:N-PER-CentiM2 unit:LB_F-PER-FT2 unit:PA ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24149,7 +24847,7 @@ bsh:Differential_TemperatureQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:K unit:DEG_F unit:PlanckTemperature unit:DEG_C unit:MilliDEG_C unit:DEG_R ) ; + sh:in ( unit:MilliDEG_C unit:MilliK unit:K unit:DEG_F unit:MegaK unit:PlanckTemperature unit:DEG_R unit:DecaK unit:DEG_C ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24159,15 +24857,15 @@ bsh:Dry_Bulb_TemperatureQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:DEG_F unit:K unit:DEG_C ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:DEG_F unit:K unit:DEG_C ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:Electric_EnergyQuantityShape a owl:Class, sh:NodeShape, @@ -24179,7 +24877,7 @@ bsh:Electric_EnergyQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:W-HR unit:V-A-HR unit:MegaV-A-HR unit:KiloV-A_Reactive-HR unit:V-A_Reactive-HR unit:MegaW-HR unit:KiloV-A-HR unit:J unit:MegaV-A_Reactive-HR unit:KiloW-HR ) ; + sh:in ( unit:V-A-HR unit:KiloW-HR unit:V-A_Reactive-HR unit:MegaV-A_Reactive-HR unit:W-HR unit:KiloV-A_Reactive-HR unit:MegaW-HR unit:J unit:MegaV-A-HR unit:KiloV-A-HR ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24203,37 +24901,7 @@ bsh:Formaldehyde_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - -bsh:FrequencyQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:PetaHZ unit:PER-HR unit:HZ unit:PERCENT-PER-WK unit:MegaHZ unit:PER-YR unit:failures-in-time unit:NUM-PER-YR unit:PERCENT-PER-MO unit:PER-SEC unit:PPTH-PER-HR unit:PERCENT-PER-DAY unit:PER-DAY unit:PER-MO unit:KiloHZ unit:PER-WK unit:NUM-PER-HR unit:PERCENT-PER-HR unit:MilliHZ unit:PER-MIN unit:NUM-PER-SEC unit:PlanckFrequency unit:SAMPLE-PER-SEC unit:TeraHZ unit:PER-MilliSEC unit:GigaHZ ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:Gauge_PressureQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:MilliM_H2O unit:BAR unit:LB_F-PER-IN2 unit:IN_H2O ) ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24332,21 +25000,6 @@ bsh:InheritEVSEChargerDirection a sh:NodeShape ; sh:prefixes ] ; sh:targetClass brick:Electric_Vehicle_Charging_Port . -bsh:IrradianceQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:W-PER-FT2 unit:W-PER-M2 unit:W-PER-CentiM2 unit:W-PER-IN2 ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - bsh:LastKnownBooleanShape a owl:Class, sh:NodeShape ; rdfs:subClassOf bsh:LastKnownValueShape ; @@ -24405,7 +25058,7 @@ bsh:LevelQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:MilliM unit:IN unit:MicroM unit:FT unit:YD unit:KiloM unit:M unit:CentiM unit:DeciM ) ; + sh:in ( unit:DeciM unit:FT unit:MilliM unit:IN unit:KiloM unit:YD unit:CentiM unit:MicroM unit:M ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24415,15 +25068,15 @@ bsh:Linear_SpeedQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:KiloM-PER-HR unit:MI-PER-SEC unit:M-PER-HR unit:FT-PER-HR unit:FT-PER-SEC unit:KiloM-PER-SEC unit:MI-PER-HR unit:M-PER-SEC ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:M-PER-SEC unit:FT-PER-HR unit:KiloM-PER-SEC unit:MI-PER-SEC unit:M-PER-HR unit:KiloM-PER-HR unit:MI-PER-HR unit:FT-PER-SEC ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:MeterInferSubclassBuildingMeter a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; @@ -24490,7 +25143,7 @@ bsh:Methane_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24505,7 +25158,7 @@ bsh:NO2_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24584,52 +25237,52 @@ bsh:Ozone_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:PPM ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:PM10_ConcentrationQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:MicroGM-PER-M3 unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:MicroGM-PER-M3 unit:PPM ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:PM1_ConcentrationQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:MicroGM-PER-M3 unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:MicroGM-PER-M3 unit:PPM ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:PM2.5_ConcentrationQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:MicroGM-PER-M3 unit:PPM ) ; + sh:in ( unit:MicroGM-PER-M3 unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24649,7 +25302,7 @@ bsh:Phasor_AngleQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:DEG unit:GON unit:MicroRAD unit:ARCMIN unit:MilliRAD unit:MIL unit:MilliARCSEC unit:RAD unit:REV unit:GRAD ) ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:MIL unit:RAD unit:REV unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24659,15 +25312,15 @@ bsh:Phasor_MagnitudeQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:DEG unit:GON unit:MicroRAD unit:ARCMIN unit:MilliRAD unit:MIL unit:MilliARCSEC unit:RAD unit:REV unit:GRAD ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:MIL unit:RAD unit:REV unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:PointsHaveQuantityKinds a sh:NodeShape ; sh:property [ sh:class qudt:QuantityKind ; @@ -24698,60 +25351,30 @@ bsh:PositionQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; sh:in ( unit:PERCENT ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:Power_FactorQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:UNITLESS ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:PrecipitationQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:DeciM unit:FT unit:MilliM unit:IN unit:KiloM unit:YD unit:CentiM unit:MicroM unit:M ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:MilliM unit:IN unit:MicroM unit:FT unit:YD unit:KiloM unit:M unit:CentiM unit:DeciM ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:PressureQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; sh:maxCount 1 ; sh:minCount 1 ; sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:KiloPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:CentiM_H2O unit:FT_HG unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:N-PER-M2 unit:HectoBAR unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:MilliBAR unit:LB_F-PER-IN2 unit:PA unit:CentiM_H20_4DEG_C unit:ATM_T unit:BAR unit:IN_HG_60DEG_F unit:KiloGM_F-PER-M2 unit:KiloBAR unit:FT_H2O unit:DeciBAR unit:IN_H2O_60DEG_F unit:GM_F-PER-CentiM2 unit:MilliM_H2O unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliPA unit:MilliM_HGA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:KiloPA_A unit:PicoPA unit:DYN-PER-CentiM2 unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:IN_H2O_39dot2DEG_F unit:KiloLB_F-PER-IN2 unit:MegaPA unit:N-PER-MilliM2 ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:path brick:value ] . bsh:RDFSRangeRule a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; @@ -24785,21 +25408,6 @@ bsh:RDFSSubPropertyOfRuleForEntityProperties a sh:NodeShape ; sh:prefixes ] ; sh:targetSubjectsOf rdfs:subPropertyOf . -bsh:RadianceQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:W-PER-M2-SR ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - bsh:Radiant_TemperatureQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; @@ -24820,22 +25428,22 @@ bsh:Radon_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:BQ-PER-M3 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:BQ-PER-M3 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:Reactive_EnergyQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:KiloV-A_Reactive-HR unit:V-A_Reactive-HR unit:MegaV-A_Reactive-HR ) ; + sh:in ( unit:V-A_Reactive-HR unit:MegaV-A_Reactive-HR unit:KiloV-A_Reactive-HR ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24855,11 +25463,34 @@ bsh:Rotational_SpeedQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:DEG-PER-HR unit:DEG-PER-SEC unit:DEG-PER-MIN unit:RAD-PER-HR unit:RAD-PER-MIN unit:RAD-PER-SEC ) ; + sh:in ( unit:DEG-PER-HR unit:RAD-PER-SEC unit:RAD-PER-MIN unit:DEG-PER-SEC unit:RAD-PER-HR unit:DEG-PER-MIN ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . +bsh:SensorInheritQuantityKind a sh:NodeShape ; + sh:rule [ a sh:SPARQLRule ; + sh:construct """ + CONSTRUCT { + $this brick:hasQuantity ?quantity . + } WHERE { + $this rdfs:subClassOf+ ?parent . + ?parent brick:hasQuantity ?quantity . + FILTER NOT EXISTS { + $this brick:hasQuantity ?quantity . + } + } + """ ; + sh:prefixes ] ; + sh:target [ a sh:SPARQLTarget ; + sh:select """ + PREFIX brick: + PREFIX rdfs: + SELECT DISTINCT ?this WHERE { + ?this rdfs:subClassOf+ brick:Sensor + } + """ ] . + bsh:Solar_IrradianceQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; @@ -24870,7 +25501,7 @@ bsh:Solar_IrradianceQuantityShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:W-PER-FT2 unit:W-PER-M2 unit:W-PER-CentiM2 unit:W-PER-IN2 ) ; + sh:in ( unit:W-PER-M2 ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -24879,46 +25510,31 @@ bsh:Solar_RadianceQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:W-PER-M2-SR ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - -bsh:SpeedQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; sh:maxCount 1 ; sh:minCount 1 ; sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:FT3-PER-MIN-FT2 unit:DEG-PER-SEC unit:IN-PER-YR unit:MicroM-PER-MIN unit:MegaHZ-M unit:MI-PER-SEC unit:M-PER-HR unit:DEG-PER-MIN unit:RAD-PER-HR unit:FT-PER-SEC unit:HZ-M unit:BFT unit:YD-PER-HR unit:M-PER-SEC unit:KiloM-PER-SEC unit:RAD-PER-SEC unit:FT-PER-HR unit:DEG-PER-HR unit:GigaHZ-M unit:RAD-PER-MIN unit:YD-PER-MIN unit:YD-PER-SEC unit:KiloM-PER-HR unit:MicroM-PER-SEC unit:MI-PER-HR ) ; + sh:in ( unit:W-PER-M2-SR ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . -bsh:Static_PressureQuantityShape a owl:Class, +bsh:SpeedQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:KiloM-PER-HR unit:MI-PER-SEC unit:HZ-M unit:YD-PER-SEC unit:RAD-PER-MIN unit:RAD-PER-SEC unit:MicroM-PER-MIN unit:YD-PER-HR unit:FT3-PER-MIN-FT2 unit:KiloM-PER-SEC unit:IN-PER-YR unit:M-PER-SEC unit:DEG-PER-MIN unit:MicroM-PER-SEC unit:BFT unit:DEG-PER-HR unit:YD-PER-MIN unit:M-PER-HR unit:FT-PER-SEC unit:DEG-PER-SEC unit:FT-PER-HR unit:MegaHZ-M unit:RAD-PER-HR unit:GigaHZ-M unit:MI-PER-HR ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:FT_HG unit:CentiM_H2O unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:HectoBAR unit:N-PER-M2 unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:PA unit:LB_F-PER-IN2 unit:MilliBAR unit:ATM_T unit:BAR unit:IN_HG_60DEG_F unit:GM_F-PER-CentiM2 unit:IN_H2O_60DEG_F unit:FT_H2O unit:MilliM_H2O unit:KiloBAR unit:DeciBAR unit:KiloGM_F-PER-M2 unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliM_HGA unit:MilliPA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:KiloPA_A unit:PicoPA unit:DYN-PER-CentiM2 unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloLB_F-PER-IN2 unit:N-PER-MilliM2 unit:IN_H2O_39dot2DEG_F unit:CentiM_H20_4DEG_C unit:MegaPA ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:SubPropertyOfRule a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; @@ -24937,7 +25553,7 @@ bsh:TVOC_ConcentrationQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:PPB unit:MicroGM-PER-M3 unit:PPM ) ; + sh:in ( unit:MicroGM-PER-M3 unit:PPM unit:PPB ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ], @@ -24959,51 +25575,6 @@ $this brick:hasTag ?tag . sh:prefixes ] ; sh:targetClass brick:Entity . -bsh:TemperatureQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:K unit:DEG_F unit:PlanckTemperature unit:DEG_C unit:MilliDEG_C unit:DEG_R ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:Thermal_EnergyQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:THERM_EC unit:BTU_MEAN unit:THM_EEC unit:KiloBTU_TH unit:CAL_TH unit:BTU_39DEG_F unit:NanoJ unit:MegaJ unit:BTU_IT unit:PicoJ unit:CAL_IT unit:KiloBTU_IT unit:CAL_20DEG_C unit:GigaJ unit:TON_FG-HR unit:BTU_59DEG_F unit:CAL_MEAN unit:KiloJ unit:THM_US unit:BTU_60DEG_F unit:KiloCAL_TH unit:J unit:KiloCAL_IT unit:CAL_15_DEG_C unit:THERM_US unit:BTU_TH unit:KiloCAL_Mean unit:KiloCAL ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . - -bsh:TimeQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:MIN_Sidereal unit:POISE-PER-PA unit:MO unit:KiloYR unit:MicroH-PER-KiloOHM unit:DeciSEC unit:MilliSEC unit:YR_Sidereal unit:MilliH-PER-KiloOHM unit:MegaYR unit:KiloSEC unit:MIN unit:CentiPOISE-PER-BAR unit:PlanckTime unit:MilliPA-SEC-PER-BAR unit:YR_Metrology unit:FemtoSEC unit:H-PER-OHM unit:NanoSEC unit:SEC unit:MO_Synodic unit:MicroH-PER-OHM unit:YR_Common unit:YR_TROPICAL unit:SH unit:PA-SEC-PER-BAR unit:POISE-PER-BAR unit:DAY_Sidereal unit:WK unit:YR unit:DAY unit:MicroSEC unit:HR_Sidereal unit:PicoSEC unit:MO_MeanGREGORIAN unit:H-PER-KiloOHM unit:MegaSEC unit:MilliH-PER-OHM unit:MO_MeanJulian unit:AttoSEC unit:HR ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - bsh:TimeseriesReferenceOnPointsConstraint a sh:NodeShape ; sh:sparql [ a sh:SPARQLConstraint ; sh:message "Only Brick Points can have external timeseries references" ; @@ -25018,21 +25589,6 @@ bsh:TimeseriesReferenceOnPointsConstraint a sh:NodeShape ; """ ] ; sh:targetSubjectsOf ref:hasExternalReference . -bsh:Velocity_PressureQuantityShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - sh:in ( unit:MicroATM unit:MilliTORR unit:IN_H2O unit:IN_HG unit:MicroPA unit:PDL-PER-IN2 unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:CentiM_H2O_4DEG_C unit:IN_HG_32DEG_F unit:FT_HG unit:CentiM_H2O unit:MilliM_HG unit:MicroBAR unit:CentiBAR unit:KiloGM-PER-M-SEC2 unit:ATM unit:DecaPA unit:KiloN-PER-M2 unit:BARAD unit:N-PER-M2 unit:HectoBAR unit:PlanckPressure unit:KIP_F-PER-IN2 unit:HectoPA unit:BARYE unit:N-PER-CentiM2 unit:CentiM_HG unit:MegaPSI unit:GigaPA unit:M_H2O unit:PSI unit:MegaBAR unit:PA unit:LB_F-PER-IN2 unit:MilliBAR unit:ATM_T unit:BAR unit:IN_HG_60DEG_F unit:GM_F-PER-CentiM2 unit:KiloBAR unit:FT_H2O unit:MilliM_H2O unit:DeciBAR unit:KiloGM_F-PER-M2 unit:IN_H2O_60DEG_F unit:MicroTORR unit:LB_F-PER-FT2 unit:MilliPA unit:MilliM_HGA unit:KiloGM_F-PER-MilliM2 unit:CentiM_HG_0DEG_C unit:DYN-PER-CentiM2 unit:PicoPA unit:KiloPA_A unit:FT_H2O_39dot2DEG_F unit:KiloGM_F-PER-CentiM2 unit:KiloLB_F-PER-IN2 unit:N-PER-MilliM2 unit:IN_H2O_39dot2DEG_F unit:CentiM_H20_4DEG_C unit:MegaPA ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . - bsh:VirtualMeterRule a sh:NodeShape ; sh:sparql [ a sh:SPARQLConstraint ; sh:message "Only meters can have the isVirtualMeter property be true" ; @@ -25050,45 +25606,45 @@ bsh:Voltage_AngleQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:MIL unit:RAD unit:REV unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:DEG unit:GON unit:MicroRAD unit:ARCMIN unit:MilliRAD unit:MIL unit:MilliARCSEC unit:RAD unit:REV unit:GRAD ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:Voltage_ImbalanceQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:PERCENT ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:PERCENT ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:VolumeQuantityShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:MI3 unit:DeciM3 unit:IN3 unit:BBL_UK_PET unit:L unit:TBSP unit:FemtoL unit:TON_SHIPPING_UK unit:TON_Register unit:GT unit:PINT_UK unit:QT_UK unit:GI_US unit:RT unit:TON_SHIPPING_US unit:OZ_VOL_UK unit:AC-FT unit:AC-FT_US unit:M3 unit:ANGSTROM3 unit:MilliM3 unit:QT_US unit:FBM unit:PK_UK unit:KiloL unit:MI_UK3 unit:FT3 unit:PicoL unit:Standard unit:DecaL unit:STR unit:DecaM3 unit:BBL unit:MicroM3 unit:PlanckVolume unit:BBL_US unit:Kilo-FT3 unit:MicroL unit:NanoL unit:YD3 unit:CentiM3 unit:MegaL unit:TSP unit:HectoL unit:MilliL unit:PINT unit:DeciL unit:GI_UK ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:IN3 unit:BBL unit:YD3 unit:MicroM3 unit:TON_Register unit:CentiM3 unit:M3 unit:BBL_UK_PET unit:L unit:NanoL unit:PicoL unit:AC-FT_US unit:PINT unit:MilliL unit:HectoL unit:MilliM3 unit:DecaL unit:PK_UK unit:FemtoL unit:DeciM3 unit:AC-FT unit:TBSP unit:QT_US unit:PINT_UK unit:ANGSTROM3 unit:QT_UK unit:TSP unit:DeciL unit:TON_SHIPPING_US unit:MI_UK3 unit:FBM unit:GT unit:GI_US unit:MegaL unit:DecaM3 unit:KiloCubicFT unit:NT unit:STR unit:FT3 unit:KiloL unit:TON_SHIPPING_UK unit:OZ_VOL_UK unit:BU_US_DRY unit:MI3 unit:STANDARD unit:MicroL unit:GI_UK unit:PlanckVolume ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:Wet_Bulb_TemperatureQuantityShape a owl:Class, sh:NodeShape, @@ -25110,15 +25666,15 @@ bsh:Wind_DirectionQuantityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:MIL unit:RAD unit:REV unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:DEG unit:GON unit:MicroRAD unit:ARCMIN unit:MilliRAD unit:MIL unit:MilliARCSEC unit:RAD unit:REV unit:GRAD ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:aggregationFunctionShape a sh:PropertyShape ; sh:path brick:aggregationFunction . @@ -25130,14 +25686,21 @@ bsh:connectedToShape a sh:PropertyShape ; sh:path brick:connectedTo . bsh:deprecatedInVersionShape a sh:PropertyShape ; + sh:class xsd:string ; sh:path brick:deprecatedInVersion . bsh:deprecationMitigationMessageShape a sh:PropertyShape ; + sh:class xsd:string ; sh:path brick:deprecationMitigationMessage . bsh:deprecationMitigationRuleShape a sh:PropertyShape ; + sh:or ( [ sh:class sh:PropertyShape ] ) ; sh:path brick:deprecationMitigationRule . +bsh:deprecationShape a sh:PropertyShape ; + sh:or ( [ sh:class bsh:DeprecationRule ] ) ; + sh:path brick:deprecation . + bsh:feedsShape a sh:PropertyShape ; sh:path brick:feeds . @@ -25176,6 +25739,12 @@ bsh:isFedByShape a sh:PropertyShape ; bsh:isPartOfShape a sh:PropertyShape ; sh:path brick:isPartOf . + rdfs:label "RealEstateCore"^^xsd:string ; + owl:imports , + , + ; + owl:versionInfo "4.0"^^xsd:string . + rec:AssetCollection a sh:NodeShape . rec:ICTRack owl:deprecated true ; @@ -25195,7 +25764,7 @@ rec:ICT_Hardware owl:deprecated true ; rec:Network_Router owl:deprecated true ; brick:deprecatedInVersion "1.4.0" ; - brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:NetworkRouter" ; + brick:deprecationMitigationMessage "REC ICT classes are being phased out in favor of Brick classes. For a replacement, consider brick:Network_Router" ; brick:isReplacedBy brick:Network_Router . rec:substance a owl:AnnotationProperty ; @@ -25272,22 +25841,22 @@ sosa:ObservableProperty a owl:Class . brick:AED a owl:Class, sh:NodeShape ; + rdfs:label "AED"@en ; rdfs:subClassOf brick:Safety_Equipment ; owl:equivalentClass brick:Automated_External_Defibrillator ; brick:aliasOf brick:Automated_External_Defibrillator . brick:AHU a owl:Class, sh:NodeShape ; + rdfs:label "AHU"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:Air_Handling_Unit ; skos:definition "Assembly consisting of sections containing a fan or fans and other necessary equipment to perform one or more of the following functions: circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air. Is usually connected to an air-distribution system."@en ; brick:aliasOf brick:Air_Handling_Unit . -brick:Acceleration_Time a brick:Quantity ; - skos:broader brick:Time . - brick:Access_Control_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Access Control Equipment"@en ; rdfs:subClassOf brick:Security_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Access ; @@ -25311,16 +25880,18 @@ brick:Access_Control_Equipment a owl:Class, tag:Security . brick:Active_Energy a brick:Quantity ; - rdfs:label "Active_Energy"@en ; + rdfs:label "Active Energy"@en ; qudt:applicableUnit unit:KiloW-HR, unit:MegaW-HR, unit:W-HR ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Electric_Energy ; skos:definition "The integral of the active power over a time interval" . brick:Air_Flow_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Deadband Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint, brick:Deadband_Setpoint ; skos:definition "Sets the size of a deadband of air flow"@en ; @@ -25354,6 +25925,7 @@ brick:Air_Flow_Deadband_Setpoint a owl:Class, brick:Air_Handler_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Air Handler Unit"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:Air_Handling_Unit ; skos:definition "Assembly consisting of sections containing a fan or fans and other necessary equipment to perform one or more of the following functions: circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air. Is usually connected to an air-distribution system."@en ; @@ -25361,6 +25933,7 @@ brick:Air_Handler_Unit a owl:Class, brick:Air_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Measures the pressure of the surrounding air."@en ; sh:rule [ a sh:TripleRule ; @@ -25383,11 +25956,12 @@ brick:Air_Pressure_Sensor a owl:Class, tag:Point, tag:Pressure, tag:Sensor ; - brick:hasQuantity brick:Pressure ; + brick:hasQuantity qudtqk:Pressure ; brick:hasSubstance brick:Air . brick:Air_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Pressure Setpoint"@en ; rdfs:subClassOf brick:Pressure_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -25404,10 +25978,11 @@ brick:Air_Pressure_Setpoint a owl:Class, brick:hasAssociatedTag tag:Air, tag:Pressure, tag:Setpoint ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Air_System a owl:Class, sh:NodeShape ; + rdfs:label "Air System"@en ; rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; skos:definition "The equipment, distribution systems and terminals that introduce or exhaust, either collectively or individually, the air into and from the building"@en ; sh:rule [ a sh:TripleRule ; @@ -25423,6 +25998,7 @@ brick:Air_System a owl:Class, brick:Air_Wet_Bulb_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Wet Bulb Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor, brick:Temperature_Sensor ; sh:rule [ a sh:TripleRule ; @@ -25459,84 +26035,44 @@ brick:Air_Wet_Bulb_Temperature_Sensor a owl:Class, brick:hasSubstance brick:Air . brick:Apparent_Energy a brick:Quantity ; - rdfs:label "Apparent_Energy"@en ; + rdfs:label "Apparent Energy"@en ; qudt:applicableUnit unit:KiloV-A-HR, unit:MegaV-A-HR, unit:V-A-HR ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Electric_Energy ; skos:definition "The integral of the apparent power over a time interval" . -brick:Atmospheric_Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - skos:definition "The pressure exerted by the weight of the air above it at any point on the earth's surface. At sea level the atmosphere will support a column of mercury about (760 mm) high. This decreases with increasing altitude. The standard value for the atmospheric pressure at sea level in SI units is (101,325 pascals)."@en ; - brick:hasQUDTReference qudtqk:AtmosphericPressure . +brick:Audio_Visual_Equipment a owl:Class, + sh:NodeShape ; + rdfs:label "Audio Visual Equipment"@en ; + rdfs:subClassOf brick:ICT_Equipment ; + skos:definition "Equipment related to sound and visual components such as speakers and displays."@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Audio ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Equipment ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:ICT ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Visual ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Audio, + tag:Equipment, + tag:ICT, + tag:Visual . brick:Average_Discharge_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Discharge Air Flow Sensor"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Sensor ; owl:equivalentClass brick:Average_Supply_Air_Flow_Sensor ; skos:definition "The computed average flow of discharge air over some interval"@en ; @@ -25544,6 +26080,7 @@ brick:Average_Discharge_Air_Flow_Sensor a owl:Class, brick:BACnet_Controller a owl:Class, sh:NodeShape ; + rdfs:label "BACnet Controller"@en ; rdfs:subClassOf brick:Controller ; sh:rule [ a sh:TripleRule ; sh:object tag:BACnet ; @@ -25562,11 +26099,13 @@ brick:BACnet_Controller a owl:Class, tag:Equipment . brick:Blowdown_Water a brick:Substance ; + rdfs:label "Blowdown Water"@en ; skos:broader brick:Water ; skos:definition "Water expelled from a system to remove mineral build up"@en . brick:Breakroom a owl:Class, sh:NodeShape ; + rdfs:label "Breakroom"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; owl:equivalentClass brick:Break_Room ; @@ -25578,20 +26117,24 @@ brick:Breakroom a owl:Class, brick:CAV a owl:Class, sh:NodeShape ; + rdfs:label "CAV"@en ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:Constant_Air_Volume_Box ; brick:aliasOf brick:Constant_Air_Volume_Box . brick:CO a brick:Substance ; + rdfs:label "CO"@en ; skos:broader brick:Gas ; skos:definition "Carbon Monoxide in the vapor phase"@en . brick:CO2 a brick:Substance ; + rdfs:label "CO2"@en ; skos:broader brick:Gas ; skos:definition "Carbon Dioxide in the vapor phase"@en . brick:CO2_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the presence of carbon dioxide."@en ; sh:rule [ a sh:TripleRule ; @@ -25612,6 +26155,7 @@ brick:CO2_Alarm a owl:Class, brick:CO2_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Level Sensor"@en ; rdfs:subClassOf brick:CO2_Sensor ; skos:definition "Measures the concentration of CO2 in air"@en ; sh:rule [ a sh:TripleRule ; @@ -25639,6 +26183,7 @@ brick:CO2_Level_Sensor a owl:Class, brick:CO2_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets some property of CO2"@en ; sh:rule [ a sh:TripleRule ; @@ -25660,12 +26205,14 @@ brick:CO2_Setpoint a owl:Class, brick:CRAC a owl:Class, sh:NodeShape ; + rdfs:label "CRAC"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:Computer_Room_Air_Conditioning ; brick:aliasOf brick:Computer_Room_Air_Conditioning . brick:CRAH a owl:Class, sh:NodeShape ; + rdfs:label "CRAH"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:Computer_Room_Air_Handler ; skos:definition "a computer room air handler (CRAH) uses fans, cooling coils and a water-chiller system to remove heat."@en ; @@ -25673,6 +26220,7 @@ brick:CRAH a owl:Class, brick:Camera a owl:Class, sh:NodeShape ; + rdfs:label "Camera"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Camera ; @@ -25687,6 +26235,7 @@ brick:Camera a owl:Class, brick:Check_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Check Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Valve that allows fluid to flow in only one direction, preventing reverse flow."@en ; sh:rule [ a sh:TripleRule ; @@ -25702,6 +26251,7 @@ brick:Check_Valve a owl:Class, brick:Chilled_Water_Differential_Pressure_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Load Shed Status"@en ; rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Chilled ; @@ -25746,6 +26296,7 @@ brick:Chilled_Water_Differential_Pressure_Load_Shed_Status a owl:Class, brick:Chilled_Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -25783,6 +26334,7 @@ brick:Chilled_Water_Differential_Pressure_Setpoint a owl:Class, brick:Chilled_Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Meter"@en ; rdfs:subClassOf brick:Water_Meter ; skos:definition "A meter that measures the usage or consumption of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -25809,6 +26361,7 @@ brick:Chilled_Water_Meter a owl:Class, brick:Circuit_Breaker a owl:Class, sh:NodeShape ; + rdfs:label "Circuit Breaker"@en ; rdfs:subClassOf brick:Switchgear ; skos:definition "A circuit breaker is a safety device to prevent damage to devices in a circuit, such as electric motors, and wiring when the current flowing through the electrical circuit supersedes its design limits. It does this by removing the current from a circuit when an unsafe condition arises. Unlike a switch, a circuit breaker automatically does this and shuts off the power immediately."@en ; sh:rule [ a sh:TripleRule ; @@ -25824,6 +26377,7 @@ brick:Circuit_Breaker a owl:Class, brick:Cold_Deck a owl:Class, sh:NodeShape ; + rdfs:label "Cold Deck"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Part of a dual duct air handling unit that supplies cooling to a building"@en ; sh:rule [ a sh:TripleRule ; @@ -25844,6 +26398,7 @@ brick:Cold_Deck a owl:Class, brick:Conductivity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Conductivity Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures electrical conductance"@en ; sh:property [ a sh:PropertyShape ; @@ -25871,6 +26426,7 @@ brick:Conductivity_Sensor a owl:Class, brick:Cooling_Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Demand Sensor"@en ; rdfs:subClassOf brick:Demand_Sensor ; skos:definition "Measures the amount of power consumed by a cooling process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; sh:rule [ a sh:TripleRule ; @@ -25897,6 +26453,7 @@ brick:Cooling_Demand_Sensor a owl:Class, brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Discharge_Air_Temperature_Cooling_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; @@ -25906,49 +26463,30 @@ brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; owl:equivalentClass brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter ; brick:aliasOf brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter . brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Discharge Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; owl:equivalentClass brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter ; brick:aliasOf brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter . -brick:Current_Angle a brick:Quantity ; - rdfs:label "CurrentAngle"@en ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader brick:Phasor_Angle ; - skos:definition "Angle of current phasor", - "Angle of current phasor"@en ; - skos:related brick:Electric_Current . - -brick:Current_Total_Harmonic_Distortion a brick:Quantity ; - rdfs:label "CurrentTotalHarmonicDistortion"@en ; - qudt:applicableUnit unit:DeciB_M, - unit:PERCENT ; +brick:Current_Imbalance a brick:Quantity ; + rdfs:label "Current Imbalance"@en ; + qudt:applicableUnit unit:PERCENT ; qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader qudtqk:Dimensionless ; - skos:definition "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)", - "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)"@en ; - skos:related brick:Electric_Current . + skos:definition "The percent deviation from average current", + "The percent deviation from average current"@en . brick:Cycle_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Cycle Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates off-normal conditions associated with HVAC cycles"@en ; sh:rule [ a sh:TripleRule ; @@ -25969,6 +26507,7 @@ brick:Cycle_Alarm a owl:Class, brick:DOAS a owl:Class, sh:NodeShape ; + rdfs:label "DOAS"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:Dedicated_Outdoor_Air_System_Unit ; skos:definition "See Dedicated_Outdoor_Air_System_Unit"@en ; @@ -25976,6 +26515,7 @@ brick:DOAS a owl:Class, brick:Damper_Command a owl:Class, sh:NodeShape ; + rdfs:label "Damper Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls properties of dampers"@en ; sh:rule [ a sh:TripleRule ; @@ -25996,6 +26536,7 @@ brick:Damper_Command a owl:Class, brick:Daylight_Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Daylight Sensor Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Daylight ; @@ -26018,11 +26559,9 @@ brick:Daylight_Sensor_Equipment a owl:Class, tag:ICT, tag:Sensor . -brick:Deceleration_Time a brick:Quantity ; - skos:broader brick:Time . - brick:Delay_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Delay Parameter"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "A parameter determining how long to delay a subsequent action to take place after a received signal"@en ; sh:rule [ a sh:TripleRule ; @@ -26041,31 +26580,84 @@ brick:Delay_Parameter a owl:Class, tag:Parameter, tag:Point . -brick:DeprecationShape a owl:Class, - sh:NodeShape, - brick:EntityPropertyValue ; - rdfs:subClassOf bsh:ValueShape ; - sh:property [ a sh:PropertyShape ; - skos:definition "The version in which the entity was deprecated" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path brick:deprecatedInVersion ], - [ a sh:PropertyShape ; - skos:definition "A message describing how to mitigate or address the deprecation" ; - sh:datatype xsd:string ; - sh:minCount 1 ; - sh:path brick:deprecationMitigationMessage ], - [ a sh:PropertyShape ; - skos:definition "A SHACL rule which will mitigate the deprecation" ; - sh:class sh:NodeShape ; - sh:path brick:deprecationMitigationRule ] . - brick:Differential_Dry_Bulb_Temperature a brick:Quantity ; + rdfs:label "Differential Dry Bulb Temperature"@en ; + qudt:hasDimensionVector ; qudt:isDeltaQuantity true ; skos:broader brick:Dry_Bulb_Temperature . +brick:Differential_Dynamic_Pressure a brick:Quantity ; + rdfs:label "Differential Dynamic Pressure"@en ; + qudt:applicableUnit unit:ATM, + unit:ATM_T, + unit:BAR, + unit:BARAD, + unit:BARYE, + unit:CentiBAR, + unit:CentiM_H2O, + unit:CentiM_H2O_4DEG_C, + unit:CentiM_HG, + unit:CentiM_HG_0DEG_C, + unit:DYN-PER-CentiM2, + unit:DecaPA, + unit:DeciBAR, + unit:FT_H2O, + unit:FT_H2O_39dot2DEG_F, + unit:FT_HG, + unit:GM_F-PER-CentiM2, + unit:GigaPA, + unit:HectoBAR, + unit:HectoPA, + unit:IN_H2O, + unit:IN_H2O_39dot2DEG_F, + unit:IN_H2O_60DEG_F, + unit:IN_HG, + unit:IN_HG_32DEG_F, + unit:IN_HG_60DEG_F, + unit:KIP_F-PER-IN2, + unit:KiloBAR, + unit:KiloGM-PER-M-SEC2, + unit:KiloGM_F-PER-CentiM2, + unit:KiloGM_F-PER-M2, + unit:KiloGM_F-PER-MilliM2, + unit:KiloLB_F-PER-IN2, + unit:KiloN-PER-M2, + unit:KiloPA, + unit:KiloPA_A, + unit:LB_F-PER-FT2, + unit:LB_F-PER-IN2, + unit:M_H2O, + unit:MegaBAR, + unit:MegaPA, + unit:MegaPSI, + unit:MicroATM, + unit:MicroBAR, + unit:MicroPA, + unit:MicroTORR, + unit:MilliBAR, + unit:MilliM_H2O, + unit:MilliM_HG, + unit:MilliM_HGA, + unit:MilliPA, + unit:MilliTORR, + unit:N-PER-CentiM2, + unit:N-PER-M2, + unit:N-PER-MilliM2, + unit:PA, + unit:PDL-PER-FT2, + unit:PDL-PER-IN2, + unit:PSI, + unit:PicoPA, + unit:PlanckPressure, + unit:TORR ; + qudt:hasDimensionVector ; + qudt:isDeltaQuantity true ; + skos:broader brick:Differential_Pressure ; + brick:hasQUDTReference qudtqk:DynamicPressure . + brick:Differential_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Step Parameter"@en ; rdfs:subClassOf brick:Step_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -26093,8 +26685,78 @@ brick:Differential_Pressure_Step_Parameter a owl:Class, tag:Pressure, tag:Step . +brick:Differential_Static_Pressure a brick:Quantity ; + rdfs:label "Differential Static Pressure"@en ; + qudt:applicableUnit unit:ATM, + unit:ATM_T, + unit:BAR, + unit:BARAD, + unit:BARYE, + unit:CentiBAR, + unit:CentiM_H2O, + unit:CentiM_H2O_4DEG_C, + unit:CentiM_HG, + unit:CentiM_HG_0DEG_C, + unit:DYN-PER-CentiM2, + unit:DecaPA, + unit:DeciBAR, + unit:FT_H2O, + unit:FT_H2O_39dot2DEG_F, + unit:FT_HG, + unit:GM_F-PER-CentiM2, + unit:GigaPA, + unit:HectoBAR, + unit:HectoPA, + unit:IN_H2O, + unit:IN_H2O_39dot2DEG_F, + unit:IN_H2O_60DEG_F, + unit:IN_HG, + unit:IN_HG_32DEG_F, + unit:IN_HG_60DEG_F, + unit:KIP_F-PER-IN2, + unit:KiloBAR, + unit:KiloGM-PER-M-SEC2, + unit:KiloGM_F-PER-CentiM2, + unit:KiloGM_F-PER-M2, + unit:KiloGM_F-PER-MilliM2, + unit:KiloLB_F-PER-IN2, + unit:KiloN-PER-M2, + unit:KiloPA, + unit:KiloPA_A, + unit:LB_F-PER-FT2, + unit:LB_F-PER-IN2, + unit:M_H2O, + unit:MegaBAR, + unit:MegaPA, + unit:MegaPSI, + unit:MicroATM, + unit:MicroBAR, + unit:MicroPA, + unit:MicroTORR, + unit:MilliBAR, + unit:MilliM_H2O, + unit:MilliM_HG, + unit:MilliM_HGA, + unit:MilliPA, + unit:MilliTORR, + unit:N-PER-CentiM2, + unit:N-PER-M2, + unit:N-PER-MilliM2, + unit:PA, + unit:PDL-PER-FT2, + unit:PDL-PER-IN2, + unit:PSI, + unit:PicoPA, + unit:PlanckPressure, + unit:TORR ; + qudt:hasDimensionVector ; + qudt:isDeltaQuantity true ; + skos:broader brick:Differential_Pressure ; + brick:hasQUDTReference qudtqk:StaticPressure . + brick:Direction_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Direction Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the direction in degrees in which a phenomenon is occuring"@en ; sh:property [ a sh:PropertyShape ; @@ -26117,11 +26779,11 @@ brick:Direction_Sensor a owl:Class, sh:subject sh:this ] ; brick:hasAssociatedTag tag:Direction, tag:Point, - tag:Sensor ; - brick:hasQuantity brick:Direction . + tag:Sensor . brick:Direction_Status a owl:Class, sh:NodeShape ; + rdfs:label "Direction Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates which direction a device is operating in"@en ; sh:rule [ a sh:TripleRule ; @@ -26143,6 +26805,7 @@ brick:Direction_Status a owl:Class, brick:Discharge_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; owl:equivalentClass brick:Supply_Air_Dewpoint_Sensor ; skos:definition "Measures dewpoint of discharge air"@en ; @@ -26150,18 +26813,21 @@ brick:Discharge_Air_Dewpoint_Sensor a owl:Class, brick:Discharge_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; owl:equivalentClass brick:Supply_Air_Differential_Pressure_Sensor ; brick:aliasOf brick:Supply_Air_Differential_Pressure_Sensor . brick:Discharge_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; owl:equivalentClass brick:Supply_Air_Differential_Pressure_Setpoint ; brick:aliasOf brick:Supply_Air_Differential_Pressure_Setpoint . brick:Discharge_Air_Duct_Pressure_Status a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Duct Pressure Status"@en ; rdfs:subClassOf brick:Pressure_Status ; owl:equivalentClass brick:Supply_Air_Duct_Pressure_Status ; skos:definition "Indicates if air pressure in discharge duct is within expected bounds"@en ; @@ -26169,6 +26835,7 @@ brick:Discharge_Air_Duct_Pressure_Status a owl:Class, brick:Discharge_Air_Flow_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow Demand Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Demand_Setpoint, brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Supply_Air_Flow_Demand_Setpoint ; @@ -26177,18 +26844,21 @@ brick:Discharge_Air_Flow_Demand_Setpoint a owl:Class, brick:Discharge_Air_Flow_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow High Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Flow_High_Reset_Setpoint ; brick:aliasOf brick:Supply_Air_Flow_High_Reset_Setpoint . brick:Discharge_Air_Flow_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow Low Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Flow_Low_Reset_Setpoint ; brick:aliasOf brick:Supply_Air_Flow_Low_Reset_Setpoint . brick:Discharge_Air_Flow_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow Reset Setpoint"@en ; rdfs:subClassOf brick:Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Flow_Reset_Setpoint ; skos:definition "Setpoints used in Reset strategies"@en ; @@ -26196,6 +26866,7 @@ brick:Discharge_Air_Flow_Reset_Setpoint a owl:Class, brick:Discharge_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; owl:equivalentClass brick:Supply_Air_Flow_Sensor ; skos:definition "Measures the rate of flow of discharge air"@en ; @@ -26203,6 +26874,7 @@ brick:Discharge_Air_Flow_Sensor a owl:Class, brick:Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint ; owl:equivalentClass brick:Supply_Air_Flow_Setpoint ; skos:definition "Sets discharge air flow"@en ; @@ -26210,6 +26882,7 @@ brick:Discharge_Air_Flow_Setpoint a owl:Class, brick:Discharge_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; owl:equivalentClass brick:Supply_Air_Humidity_Sensor ; skos:definition "Measures the relative humidity of discharge air"@en ; @@ -26217,6 +26890,7 @@ brick:Discharge_Air_Humidity_Sensor a owl:Class, brick:Discharge_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; owl:equivalentClass brick:Supply_Air_Humidity_Setpoint ; skos:definition "Humidity setpoint for discharge air"@en ; @@ -26224,24 +26898,28 @@ brick:Discharge_Air_Humidity_Setpoint a owl:Class, brick:Discharge_Air_Integral_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Integral Gain Parameter"@en ; rdfs:subClassOf brick:Integral_Gain_Parameter ; owl:equivalentClass brick:Supply_Air_Integral_Gain_Parameter ; brick:aliasOf brick:Supply_Air_Integral_Gain_Parameter . brick:Discharge_Air_Plenum a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Plenum"@en ; rdfs:subClassOf brick:Air_Plenum ; owl:equivalentClass brick:Supply_Air_Plenum ; brick:aliasOf brick:Supply_Air_Plenum . brick:Discharge_Air_Proportional_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Proportional Gain Parameter"@en ; rdfs:subClassOf brick:Proportional_Gain_Parameter ; owl:equivalentClass brick:Supply_Air_Proportional_Gain_Parameter ; brick:aliasOf brick:Supply_Air_Proportional_Gain_Parameter . brick:Discharge_Air_Smoke_Detection_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Smoke Detection Alarm"@en ; rdfs:subClassOf brick:Air_Alarm, brick:Smoke_Detection_Alarm ; owl:equivalentClass brick:Supply_Air_Smoke_Detection_Alarm ; @@ -26249,6 +26927,7 @@ brick:Discharge_Air_Smoke_Detection_Alarm a owl:Class, brick:Discharge_Air_Static_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Discharge_Air_Static_Pressure_Setpoint, brick:Static_Pressure_Deadband_Setpoint, brick:Supply_Air_Static_Pressure_Setpoint ; @@ -26258,18 +26937,21 @@ brick:Discharge_Air_Static_Pressure_Deadband_Setpoint a owl:Class, brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter ; owl:equivalentClass brick:Supply_Air_Static_Pressure_Integral_Time_Parameter ; brick:aliasOf brick:Supply_Air_Static_Pressure_Integral_Time_Parameter . brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; owl:equivalentClass brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter ; brick:aliasOf brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter . brick:Discharge_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Sensor ; owl:equivalentClass brick:Supply_Air_Static_Pressure_Sensor ; skos:definition "The static pressure of air within discharge regions of an HVAC system"@en ; @@ -26277,12 +26959,14 @@ brick:Discharge_Air_Static_Pressure_Sensor a owl:Class, brick:Discharge_Air_Static_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Step Parameter"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter ; owl:equivalentClass brick:Supply_Air_Static_Pressure_Step_Parameter ; brick:aliasOf brick:Supply_Air_Static_Pressure_Step_Parameter . brick:Discharge_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Alarm"@en ; rdfs:subClassOf brick:Air_Temperature_Alarm ; owl:equivalentClass brick:Supply_Air_Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of discharge air."@en ; @@ -26290,6 +26974,7 @@ brick:Discharge_Air_Temperature_Alarm a owl:Class, brick:Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint, brick:Discharge_Air_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; @@ -26299,6 +26984,7 @@ brick:Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, brick:Discharge_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Reset_Differential_Setpoint, brick:Temperature_High_Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_High_Reset_Setpoint ; @@ -26306,6 +26992,7 @@ brick:Discharge_Air_Temperature_High_Reset_Setpoint a owl:Class, brick:Discharge_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Reset_Differential_Setpoint, brick:Temperature_Low_Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_Low_Reset_Setpoint ; @@ -26313,6 +27000,7 @@ brick:Discharge_Air_Temperature_Low_Reset_Setpoint a owl:Class, brick:Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter, brick:Temperature_Parameter ; owl:equivalentClass brick:Supply_Air_Temperature_Proportional_Band_Parameter ; @@ -26320,12 +27008,14 @@ brick:Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, brick:Discharge_Air_Temperature_Reset_Differential_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Reset Differential Setpoint"@en ; rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_Reset_Differential_Setpoint ; brick:aliasOf brick:Supply_Air_Temperature_Reset_Differential_Setpoint . brick:Discharge_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; owl:equivalentClass brick:Supply_Air_Temperature_Sensor ; skos:definition "Measures the temperature of discharge air"@en ; @@ -26333,6 +27023,7 @@ brick:Discharge_Air_Temperature_Sensor a owl:Class, brick:Discharge_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Supply_Air_Temperature_Setpoint_Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Discharge_Air_Temperature_Setpoint."@en ; @@ -26340,36 +27031,54 @@ brick:Discharge_Air_Temperature_Setpoint_Limit a owl:Class, brick:Discharge_Air_Temperature_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Step Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Step_Parameter ; owl:equivalentClass brick:Supply_Air_Temperature_Step_Parameter ; brick:aliasOf brick:Supply_Air_Temperature_Step_Parameter . brick:Discharge_Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Velocity Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Velocity_Pressure_Sensor ; owl:equivalentClass brick:Supply_Air_Velocity_Pressure_Sensor ; brick:aliasOf brick:Supply_Air_Velocity_Pressure_Sensor . brick:Discharge_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Fan"@en ; rdfs:subClassOf brick:Fan ; owl:equivalentClass brick:Supply_Fan ; skos:definition "Fan moving air discharged from HVAC vents"@en ; brick:aliasOf brick:Supply_Fan . brick:Discharge_Hot_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Discharge Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; brick:isReplacedBy brick:Leaving_Hot_Water_Temperature_Setpoint . -brick:Domestic_Water a brick:Substance ; - skos:broader brick:Water ; - skos:definition "A collection of equipment that transport and regulate domestic water among each other"@en . +brick:Domestic_Hot_Water a brick:Substance ; + rdfs:label "Domestic Hot Water"@en ; + skos:broader brick:Domestic_Water, + brick:Hot_Water . + +brick:Dry_Bulb_Temperature a brick:Quantity ; + rdfs:label "Dry Bulb Temperature"@en ; + qudt:applicableUnit unit:DEG_C, + unit:DEG_F, + unit:K ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Temperature ; + skos:definition "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)", + "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)"@en ; + skos:narrower brick:Differential_Dry_Bulb_Temperature . brick:ESS_Panel a owl:Class, sh:NodeShape ; + rdfs:label "ESS Panel"@en ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:Embedded_Surface_System_Panel ; skos:definition "See Embedded_Surface_System_Panel"@en ; @@ -26377,12 +27086,14 @@ brick:ESS_Panel a owl:Class, brick:EV_Charging_Hub a owl:Class, sh:NodeShape ; + rdfs:label "EV Charging Hub"@en ; rdfs:subClassOf brick:Collection ; owl:equivalentClass brick:Electric_Vehicle_Charging_Hub ; brick:aliasOf brick:Electric_Vehicle_Charging_Hub . brick:Effective_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Cooling Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Zone_Air_Temperature_Setpoint, brick:Effective_Air_Temperature_Setpoint ; skos:definition "The effective cooling setpoint for a specific zone in a building."@en ; @@ -26421,10 +27132,11 @@ brick:Effective_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Effective_Discharge_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Discharge Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Effective_Supply_Air_Temperature_Setpoint ; @@ -26432,6 +27144,7 @@ brick:Effective_Discharge_Air_Temperature_Setpoint a owl:Class, brick:Effective_Heating_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Heating Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Heating_Zone_Air_Temperature_Setpoint ; skos:definition "The effective heating setpoint for a specific zone in a building."@en ; @@ -26470,10 +27183,11 @@ brick:Effective_Heating_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Effective_Target_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Target Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Target_Zone_Air_Temperature_Setpoint ; skos:definition "Target Setpoint (also known as Common Setpoint) is a reference point representing the desired air temperature in a specific zone of a building. This setpoint acts as a baseline from which the cooling and heating setpoints are established by adding or subtracting a deadband width"@en ; @@ -26512,10 +27226,11 @@ brick:Effective_Target_Zone_Air_Temperature_Setpoint a owl:Class, tag:Target, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Electric_Energy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Electric Energy Sensor"@en ; rdfs:subClassOf brick:Energy_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Electric ; @@ -26541,6 +27256,7 @@ brick:Electric_Energy_Sensor a owl:Class, brick:Electric_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Electric Radiator"@en ; rdfs:subClassOf brick:Radiator ; skos:definition "Electric heating device"@en ; sh:rule [ a sh:TripleRule ; @@ -26561,6 +27277,7 @@ brick:Electric_Radiator a owl:Class, brick:Electrical_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Electrical Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A meter that measures the usage or consumption of electricity"@en ; sh:rule [ a sh:TripleRule ; @@ -26581,6 +27298,7 @@ brick:Electrical_Meter a owl:Class, brick:Electrical_System a owl:Class, sh:NodeShape ; + rdfs:label "Electrical System"@en ; rdfs:subClassOf brick:System ; skos:definition "Devices that serve or are part of the electrical subsystem in the building"@en ; sh:rule [ a sh:TripleRule ; @@ -26596,6 +27314,7 @@ brick:Electrical_System a owl:Class, brick:Elevator_Space a owl:Class, sh:NodeShape ; + rdfs:label "Elevator Space"@en ; rdfs:subClassOf brick:Vertical_Space ; owl:deprecated true ; owl:equivalentClass brick:Elevator_Shaft ; @@ -26607,6 +27326,7 @@ brick:Elevator_Space a owl:Class, brick:Embedded_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Embedded Temperature Sensor"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ; skos:definition "Measures the internal temperature of the radiant layer of the radiant heating and cooling HVAC system."@en ; sh:rule [ a sh:TripleRule ; @@ -26629,10 +27349,11 @@ brick:Embedded_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Embedded_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Embedded Temperature Setpoint"@en ; rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ; skos:definition "Sets temperature for the internal material, e.g. concrete slab, of the radiant panel."@en ; sh:rule [ a sh:TripleRule ; @@ -26655,10 +27376,11 @@ brick:Embedded_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Emergency_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "Alarms that indicate off-normal conditions associated with emergency systems"@en ; sh:rule [ a sh:TripleRule ; @@ -26679,6 +27401,7 @@ brick:Emergency_Alarm a owl:Class, brick:Enable_Status a owl:Class, sh:NodeShape ; + rdfs:label "Enable Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a system or piece of functionality has been enabled"@en ; sh:rule [ a sh:TripleRule ; @@ -26699,6 +27422,7 @@ brick:Enable_Status a owl:Class, brick:Energy_Generation_System a owl:Class, sh:NodeShape ; + rdfs:label "Energy Generation System"@en ; rdfs:subClassOf brick:Energy_System ; skos:definition "A collection of devices that generates electricity"@en ; sh:rule [ a sh:TripleRule ; @@ -26719,6 +27443,7 @@ brick:Energy_Generation_System a owl:Class, brick:Energy_Storage a owl:Class, sh:NodeShape ; + rdfs:label "Energy Storage"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "Devices or equipment that store energy in its various forms"@en ; sh:rule [ a sh:TripleRule ; @@ -26739,6 +27464,7 @@ brick:Energy_Storage a owl:Class, brick:Energy_Storage_System a owl:Class, sh:NodeShape ; + rdfs:label "Energy Storage System"@en ; rdfs:subClassOf brick:Energy_System ; skos:definition "A collection of devices that stores electricity"@en ; sh:rule [ a sh:TripleRule ; @@ -26759,6 +27485,7 @@ brick:Energy_Storage_System a owl:Class, brick:Entering_Chilled_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Chilled Water Flow Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Entering_Water_Flow_Sensor ; skos:definition "Measures the rate of flow of chilled entering water"@en ; @@ -26797,6 +27524,7 @@ brick:Entering_Chilled_Water_Flow_Sensor a owl:Class, brick:Entering_Chilled_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Chilled Water Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ; skos:definition "Measures the temperature of chilled water that is enteringed to a cooling tower"@en ; sh:rule [ a sh:TripleRule ; @@ -26829,11 +27557,12 @@ brick:Entering_Chilled_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Chilled_Water . brick:Entering_Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, brick:Entering_Water_Temperature_Setpoint ; skos:definition "Sets the temperature of entering (downstream of the chilled water load) chilled water"@en ; @@ -26867,11 +27596,12 @@ brick:Entering_Chilled_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Chilled_Water . brick:Entering_Condenser_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Entering_Water_Flow_Sensor ; skos:definition "Measures the flow of the entering condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -26909,6 +27639,7 @@ brick:Entering_Condenser_Water_Flow_Sensor a owl:Class, brick:Entering_Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; skos:definition "Measures the temperature of the entering condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -26941,11 +27672,12 @@ brick:Entering_Condenser_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Condenser_Water . brick:Entering_Condenser_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Condenser Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ; skos:definition "The temperature setpoint for the entering condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -26978,11 +27710,12 @@ brick:Entering_Condenser_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Condenser_Water . brick:Entering_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering High Temperature Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ; skos:definition "Measures the temperature of high-temperature hot water enteringed to a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -27020,10 +27753,50 @@ brick:Entering_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . + +brick:Entering_Hot_Water_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Entering Hot Water Flow Sensor"@en ; + rdfs:subClassOf brick:Entering_Water_Flow_Sensor, + brick:Hot_Water_Flow_Sensor ; + skos:definition "Measures the rate of flow of hot entering water"@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Entering ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Flow ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Hot ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Sensor ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Water ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Entering, + tag:Flow, + tag:Hot, + tag:Point, + tag:Sensor, + tag:Water ; + brick:hasQuantity qudtqk:VolumeFlowRate ; + brick:hasSubstance brick:Entering_Hot_Water . brick:Entering_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -27065,10 +27838,11 @@ brick:Entering_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Hot_Water_Temperature_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Temperature Load Shed Status"@en ; rdfs:subClassOf brick:Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -27113,6 +27887,7 @@ brick:Entering_Hot_Water_Temperature_Load_Shed_Status a owl:Class, brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Entering ; @@ -27154,10 +27929,11 @@ brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint, brick:Hot_Water_Temperature_Setpoint ; skos:definition "Sets the temperature of entering (downstream of the hot water load) hot water"@en ; @@ -27191,11 +27967,12 @@ brick:Entering_Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Hot_Water . brick:Entering_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Medium Temperature Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ; skos:definition "Measures the temperature of medium-temperature hot water entering a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -27233,10 +28010,11 @@ brick:Entering_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Entering_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of entering water"@en ; sh:rule [ a sh:TripleRule ; @@ -27264,11 +28042,12 @@ brick:Entering_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Water . brick:Enthalpy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Enthalpy Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the total heat content of some substance"@en ; sh:property [ a sh:PropertyShape ; @@ -27296,7 +28075,20 @@ brick:Enthalpy_Sensor a owl:Class, brick:Ethernet_Port a owl:Class, sh:NodeShape ; + rdfs:label "Ethernet Port"@en ; rdfs:subClassOf brick:Data_Network_Equipment ; + sh:property [ a sh:PropertyShape ; + sh:datatype xsd:float ; + sh:description "The data rate of the port in Mib/s, i.e. mebibit (2^20 bit) per second."^^xsd:string ; + sh:maxCount 1 ; + sh:name "Port Speed"^^xsd:string ; + sh:path rec:portSpeed ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:in ( "Type1"^^xsd:string "Type2"^^xsd:string "Type3"^^xsd:string "Type4"^^xsd:string ) ; + sh:maxCount 1 ; + sh:name "PoE Type"^^xsd:string ; + sh:path rec:poeType ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; sh:predicate brick:hasTag ; @@ -27315,6 +28107,7 @@ brick:Ethernet_Port a owl:Class, brick:Ethernet_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Ethernet Switch"@en ; rdfs:subClassOf brick:Data_Network_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -27334,6 +28127,7 @@ brick:Ethernet_Switch a owl:Class, brick:Exhaust_Air_Flow_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Flow Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -27378,6 +28172,7 @@ brick:Exhaust_Air_Flow_Integral_Time_Parameter a owl:Class, brick:Exhaust_Air_Flow_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Flow Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -27422,6 +28217,7 @@ brick:Exhaust_Air_Flow_Proportional_Band_Parameter a owl:Class, brick:Exhaust_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; skos:definition "Measures the rate of flow of exhaust air"@en ; sh:rule [ a sh:TripleRule ; @@ -27454,6 +28250,7 @@ brick:Exhaust_Air_Flow_Sensor a owl:Class, brick:Exhaust_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Flow Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint ; skos:definition "Sets exhaust air flow rate"@en ; sh:rule [ a sh:TripleRule ; @@ -27486,6 +28283,7 @@ brick:Exhaust_Air_Flow_Setpoint a owl:Class, brick:Exhaust_Air_Stack_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Stack Flow Setpoint"@en ; rdfs:subClassOf brick:Exhaust_Air_Flow_Setpoint ; skos:definition "Sets exhaust air stack flow rate"@en ; sh:rule [ a sh:TripleRule ; @@ -27522,6 +28320,7 @@ brick:Exhaust_Air_Stack_Flow_Setpoint a owl:Class, brick:Exhaust_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "Fan moving exhaust air -- air that must be removed from a space due to contaminants"@en ; sh:rule [ a sh:TripleRule ; @@ -27542,6 +28341,7 @@ brick:Exhaust_Fan a owl:Class, brick:FCU a owl:Class, sh:NodeShape ; + rdfs:label "FCU"@en ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:Fan_Coil_Unit ; skos:definition "See Fan_Coil_Unit"@en ; @@ -27549,6 +28349,7 @@ brick:FCU a owl:Class, brick:Fan_Command a owl:Class, sh:NodeShape ; + rdfs:label "Fan Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls properties of fans"@en ; sh:rule [ a sh:TripleRule ; @@ -27569,6 +28370,7 @@ brick:Fan_Command a owl:Class, brick:Fan_Status a owl:Class, sh:NodeShape ; + rdfs:label "Fan Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates properties of fans"@en ; sh:rule [ a sh:TripleRule ; @@ -27589,6 +28391,7 @@ brick:Fan_Status a owl:Class, brick:Filter_Status a owl:Class, sh:NodeShape ; + rdfs:label "Filter Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a filter needs to be replaced"@en ; sh:rule [ a sh:TripleRule ; @@ -27609,6 +28412,7 @@ brick:Filter_Status a owl:Class, brick:Food_Service_Room a owl:Class, sh:NodeShape ; + rdfs:label "Food Service Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A space used in the production, storage, serving, or cleanup of food and beverages"@en ; @@ -27643,6 +28447,7 @@ brick:Food_Service_Room a owl:Class, brick:Frequency_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Frequency Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the frequency of a phenomenon or aspect of a phenomenon, e.g. the frequency of a fan turning"@en ; sh:property [ a sh:PropertyShape ; @@ -27666,14 +28471,16 @@ brick:Frequency_Sensor a owl:Class, brick:hasAssociatedTag tag:Frequency, tag:Point, tag:Sensor ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Fuel_Oil a brick:Substance ; + rdfs:label "Fuel Oil"@en ; skos:broader brick:Oil ; skos:definition "Petroleum based oil burned for energy"@en . brick:Furniture a owl:Class, sh:NodeShape ; + rdfs:label "Furniture"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; owl:deprecated true ; @@ -27694,6 +28501,7 @@ brick:Furniture a owl:Class, brick:Gas_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Gas Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A meter that measures the usage or consumption of gas"@en ; sh:rule [ a sh:TripleRule ; @@ -27715,6 +28523,7 @@ brick:Gas_Meter a owl:Class, brick:Gas_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Gas Valve"@en ; rdfs:subClassOf brick:Valve ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -27733,11 +28542,33 @@ brick:Gas_Valve a owl:Class, tag:Valve . brick:Gasoline a brick:Substance ; + rdfs:label "Gasoline"@en ; skos:broader brick:Liquid ; skos:definition "Petroleum derived liquid used as a fuel source"@en . +brick:Gateway a owl:Class, + sh:NodeShape ; + rdfs:label "Gateway"@en ; + rdfs:subClassOf brick:ICT_Equipment ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Equipment ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Gateway ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:ICT ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Equipment, + tag:Gateway, + tag:ICT . + brick:Generation_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Generation Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "A sensor measuring how much something has been generated."@en ; sh:property [ a sh:PropertyShape ; @@ -27764,10 +28595,12 @@ brick:Generation_Sensor a owl:Class, brick:hasQuantity qudtqk:Dimensionless . brick:Glycol a brick:Substance ; + rdfs:label "Glycol"@en ; skos:broader brick:Liquid . brick:HVAC_System a owl:Class, sh:NodeShape ; + rdfs:label "HVAC System"@en ; rdfs:subClassOf brick:System ; owl:equivalentClass brick:Heating_Ventilation_Air_Conditioning_System ; skos:definition "See Heating_Ventilation_Air_Conditioning_System"@en ; @@ -27775,6 +28608,7 @@ brick:HVAC_System a owl:Class, brick:HX a owl:Class, sh:NodeShape ; + rdfs:label "HX"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:Heat_Exchanger ; skos:definition "See Heat_Exchanger"@en ; @@ -27782,6 +28616,7 @@ brick:HX a owl:Class, brick:Heating_Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Heating Demand Sensor"@en ; rdfs:subClassOf brick:Demand_Sensor ; skos:definition "Measures the amount of power consumed by a heating process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; sh:rule [ a sh:TripleRule ; @@ -27808,6 +28643,7 @@ brick:Heating_Demand_Sensor a owl:Class, brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Discharge_Air_Temperature_Heating_Setpoint, brick:Heating_Temperature_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; @@ -27817,18 +28653,21 @@ brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint a owl:Class, brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; owl:equivalentClass brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter ; brick:aliasOf brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter . brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Heating Discharge Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; owl:equivalentClass brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter ; brick:aliasOf brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter . brick:High_Discharge_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Discharge Air Temperature Alarm"@en ; rdfs:subClassOf brick:High_Temperature_Alarm, brick:Supply_Air_Temperature_Alarm ; owl:equivalentClass brick:High_Supply_Air_Temperature_Alarm ; @@ -27837,12 +28676,14 @@ brick:High_Discharge_Air_Temperature_Alarm a owl:Class, brick:Horizontal_Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Horizontal Fan Coil Unit"@en ; rdfs:subClassOf brick:Fan_Coil_Unit ; owl:equivalentClass brick:Duct_Fan_Coil_Unit ; brick:aliasOf brick:Duct_Fan_Coil_Unit . brick:Hot_Deck a owl:Class, sh:NodeShape ; + rdfs:label "Hot Deck"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Part of a dual duct air handling unit that supplies heating to a building"@en ; sh:rule [ a sh:TripleRule ; @@ -27863,6 +28704,7 @@ brick:Hot_Deck a owl:Class, brick:Hot_Water_Circulator_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Circulator Pump"@en ; rdfs:subClassOf brick:Circulator_Pump, brick:Hot_Water_Pump ; skos:definition "Used to move hot water in a closed circuit, ensuring continuous flow."@en ; @@ -27894,6 +28736,7 @@ brick:Hot_Water_Circulator_Pump a owl:Class, brick:Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Load Shed Status"@en ; rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -27938,6 +28781,7 @@ brick:Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, brick:Hot_Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Meter"@en ; rdfs:subClassOf brick:Water_Meter ; skos:definition "A meter that measures the usage or consumption of hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -27964,6 +28808,7 @@ brick:Hot_Water_Meter a owl:Class, brick:Hot_Water_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Radiator"@en ; rdfs:subClassOf brick:Radiator ; skos:definition "Radiator that uses hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -27989,6 +28834,7 @@ brick:Hot_Water_Radiator a owl:Class, brick:Hot_Water_System_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water System Enable Command"@en ; rdfs:subClassOf brick:System_Enable_Command ; skos:definition "Enables operation of the hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -28024,6 +28870,7 @@ brick:Hot_Water_System_Enable_Command a owl:Class, brick:IAQ_Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "IAQ Sensor Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28048,6 +28895,7 @@ brick:IAQ_Sensor_Equipment a owl:Class, brick:ICT_Rack a owl:Class, sh:NodeShape ; + rdfs:label "ICT Rack"@en ; rdfs:subClassOf brick:ICT_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28066,11 +28914,13 @@ brick:ICT_Rack a owl:Class, tag:Rack . brick:Ice a brick:Substance ; + rdfs:label "Ice"@en ; skos:broader brick:Solid ; skos:definition "Water in its solid form"@en . brick:Illuminance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Illuminance Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the total luminous flux incident on a surface, per unit area"@en ; sh:property [ a sh:PropertyShape ; @@ -28098,6 +28948,7 @@ brick:Illuminance_Sensor a owl:Class, brick:Inverter a owl:Class, sh:NodeShape ; + rdfs:label "Inverter"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "A device that changes direct current into alternating current"@en ; sh:rule [ a sh:TripleRule ; @@ -28111,22 +28962,12 @@ brick:Inverter a owl:Class, brick:hasAssociatedTag tag:Equipment, tag:Inverter . -brick:Irradiance a brick:Quantity ; - rdfs:label "Irradiance"@en ; - qudt:applicableUnit unit:W-PER-CentiM2, - unit:W-PER-FT2, - unit:W-PER-IN2, - unit:W-PER-M2 ; - rdfs:isDefinedBy ; - skos:broader qudtqk:PowerPerArea ; - skos:definition "The power per unit area of electromagnetic radiation incident on a surface", - "The power per unit area of electromagnetic radiation incident on a surface"@en ; - skos:narrower brick:Solar_Irradiance . - brick:Isolation_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Isolation Valve"@en ; rdfs:seeAlso ; - rdfs:subClassOf brick:HVAC_Equipment ; + rdfs:subClassOf brick:HVAC_Equipment, + brick:Valve ; skos:definition "A valve that stops the flow of a fluid, usually for maintenance or safety purposes"@en ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28146,6 +28987,7 @@ brick:Isolation_Valve a owl:Class, brick:Leak_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Leak Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates leaks occured in systems containing fluids"@en ; sh:rule [ a sh:TripleRule ; @@ -28166,6 +29008,7 @@ brick:Leak_Alarm a owl:Class, brick:Leak_Detector_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Leak Detector Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Detector ; @@ -28190,6 +29033,7 @@ brick:Leak_Detector_Equipment a owl:Class, brick:Leaving_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Hot Water Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:High ; @@ -28231,11 +29075,12 @@ brick:Leaving_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Hot_Water . brick:Leaving_Hot_Water_Temperature_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Hot Water Temperature Load Shed Status"@en ; rdfs:subClassOf brick:Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -28280,6 +29125,7 @@ brick:Leaving_Hot_Water_Temperature_Load_Shed_Status a owl:Class, brick:Leaving_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Hot Water Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Hot ; @@ -28321,13 +29167,15 @@ brick:Leaving_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Hot_Water . -brick:Light a brick:Substance . +brick:Light a brick:Substance ; + rdfs:label "Light"@en . brick:Lighting_Level_Command a owl:Class, sh:NodeShape ; + rdfs:label "Lighting Level Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the amount of the light provided by the device typically in percentages."@en ; sh:rule [ a sh:TripleRule ; @@ -28352,11 +29200,13 @@ brick:Lighting_Level_Command a owl:Class, tag:Point . brick:Liquid_CO2 a brick:Substance ; + rdfs:label "Liquid CO2"@en ; skos:broader brick:Liquid ; skos:definition "Carbon Dioxide in the liquid phase"@en . brick:Load_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Load Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Load ; @@ -28377,6 +29227,7 @@ brick:Load_Setpoint a owl:Class, brick:Load_Shed_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Load Shed Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint, brick:Load_Shed_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -28413,6 +29264,7 @@ brick:Load_Shed_Differential_Pressure_Setpoint a owl:Class, brick:Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Lockout Temperature Differential Parameter"@en ; rdfs:subClassOf brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -28442,6 +29294,7 @@ brick:Lockout_Temperature_Differential_Parameter a owl:Class, brick:Lounge a owl:Class, sh:NodeShape ; + rdfs:label "Lounge"@en ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; skos:definition "A room for lesiure activities or relaxing"@en ; @@ -28471,6 +29324,7 @@ brick:Lounge a owl:Class, brick:Low_Discharge_Air_Flow_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Discharge Air Flow Alarm"@en ; rdfs:subClassOf brick:Low_Air_Flow_Alarm ; owl:equivalentClass brick:Low_Supply_Air_Flow_Alarm ; skos:definition "An alarm that indicates that the discharge air flow is lower than normal."@en ; @@ -28478,6 +29332,7 @@ brick:Low_Discharge_Air_Flow_Alarm a owl:Class, brick:Low_Discharge_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Discharge Air Temperature Alarm"@en ; rdfs:subClassOf brick:Low_Temperature_Alarm, brick:Supply_Air_Temperature_Alarm ; owl:equivalentClass brick:Low_Supply_Air_Temperature_Alarm ; @@ -28485,17 +29340,20 @@ brick:Low_Discharge_Air_Temperature_Alarm a owl:Class, brick:MAU a owl:Class, sh:NodeShape ; + rdfs:label "MAU"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:Makeup_Air_Unit ; skos:definition "See Makeup_Air_Unit"@en ; brick:aliasOf brick:Makeup_Air_Unit . brick:Makeup_Water a brick:Substance ; + rdfs:label "Makeup Water"@en ; skos:broader brick:Water ; skos:definition "Water used used to makeup water loss through leaks, evaporation, or blowdown"@en . brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28503,6 +29361,7 @@ brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Discharge Air Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Max_Static_Pressure_Setpoint_Limit ; owl:equivalentClass brick:Max_Supply_Air_Static_Pressure_Setpoint_Limit ; @@ -28511,6 +29370,7 @@ brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, brick:Max_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Discharge Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Max_Supply_Air_Temperature_Setpoint_Limit ; @@ -28519,6 +29379,7 @@ brick:Max_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28526,6 +29387,7 @@ brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Occupied Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28533,6 +29395,7 @@ brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Occupied Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28540,6 +29403,7 @@ brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Unoccupied Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28547,6 +29411,7 @@ brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Unoccupied Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28554,6 +29419,7 @@ brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Mechanical_Room a owl:Class, sh:NodeShape ; + rdfs:label "Mechanical Room"@en ; rdfs:subClassOf brick:Service_Room ; owl:deprecated true ; skos:definition "A class of service rooms where mechanical equipment (HVAC) operates"@en ; @@ -28588,6 +29454,7 @@ brick:Mechanical_Room a owl:Class, brick:Medical_Room a owl:Class, sh:NodeShape ; + rdfs:label "Medical Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of rooms used for medical purposes"@en ; @@ -28617,6 +29484,7 @@ brick:Medical_Room a owl:Class, brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Status"@en ; rdfs:subClassOf brick:Differential_Pressure_Load_Shed_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -28661,6 +29529,7 @@ brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status a owl: brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28668,6 +29537,7 @@ brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Discharge Air Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Min_Static_Pressure_Setpoint_Limit ; owl:equivalentClass brick:Min_Supply_Air_Static_Pressure_Setpoint_Limit ; @@ -28676,6 +29546,7 @@ brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit a owl:Class, brick:Min_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Discharge Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Min_Supply_Air_Temperature_Setpoint_Limit ; @@ -28684,6 +29555,7 @@ brick:Min_Discharge_Air_Temperature_Setpoint_Limit a owl:Class, brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28691,6 +29563,7 @@ brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Occupied Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28698,6 +29571,7 @@ brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Occupied Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28705,6 +29579,7 @@ brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Unoccupied Cooling Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Discharge_Air_Flow_Setpoint."@en ; @@ -28712,6 +29587,7 @@ brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Unoccupied Heating Discharge Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Discharge_Air_Flow_Setpoint."@en ; @@ -28719,6 +29595,7 @@ brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit a owl:Class, brick:Modbus_Controller a owl:Class, sh:NodeShape ; + rdfs:label "Modbus Controller"@en ; rdfs:subClassOf brick:Controller ; sh:rule [ a sh:TripleRule ; sh:object tag:Controller ; @@ -28738,6 +29615,7 @@ brick:Modbus_Controller a owl:Class, brick:Motion_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Motion Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Detects the presence of motion in some area"@en ; sh:property [ a sh:PropertyShape ; @@ -28765,12 +29643,14 @@ brick:Motion_Sensor a owl:Class, brick:NVR a owl:Class, sh:NodeShape ; + rdfs:label "NVR"@en ; rdfs:subClassOf brick:Video_Surveillance_Equipment ; owl:equivalentClass brick:Network_Video_Recorder ; brick:aliasOf brick:Network_Video_Recorder . brick:Network_Router a owl:Class, sh:NodeShape ; + rdfs:label "Network Router"@en ; rdfs:subClassOf brick:Data_Network_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28790,6 +29670,7 @@ brick:Network_Router a owl:Class, brick:Network_Security_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Network Security Equipment"@en ; rdfs:subClassOf brick:Data_Network_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28808,7 +29689,7 @@ brick:Network_Security_Equipment a owl:Class, tag:Security . brick:Occupancy_Percentage a brick:Quantity ; - rdfs:label "Occupancy_Percentage"@en ; + rdfs:label "Occupancy Percentage"@en ; qudt:applicableUnit unit:PERCENT ; qudt:hasDimensionVector ; rdfs:isDefinedBy ; @@ -28819,6 +29700,7 @@ brick:Occupancy_Percentage a brick:Quantity ; brick:Occupancy_Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Occupancy Sensor Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -28843,6 +29725,7 @@ brick:Occupancy_Sensor_Equipment a owl:Class, brick:Occupancy_Status a owl:Class, sh:NodeShape ; + rdfs:label "Occupancy Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a room or space is occupied"@en ; sh:rule [ a sh:TripleRule ; @@ -28863,6 +29746,7 @@ brick:Occupancy_Status a owl:Class, brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, brick:Cooling_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; @@ -28872,6 +29756,7 @@ brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, brick:Occupied_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Zone_Air_Temperature_Setpoint, brick:Occupied_Air_Temperature_Setpoint ; skos:definition "Sets temperature for zone air cooling when occupied"@en ; @@ -28910,10 +29795,11 @@ brick:Occupied_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Occupied_Supply_Air_Flow_Setpoint ; skos:definition "Sets discharge air flow when occupied"@en ; @@ -28921,6 +29807,7 @@ brick:Occupied_Discharge_Air_Flow_Setpoint a owl:Class, brick:Occupied_Discharge_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Discharge Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Occupied_Supply_Air_Temperature_Setpoint ; @@ -28928,6 +29815,7 @@ brick:Occupied_Discharge_Air_Temperature_Setpoint a owl:Class, brick:Occupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, brick:Heating_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; @@ -28937,6 +29825,7 @@ brick:Occupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, brick:Occupied_Heating_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Zone_Air_Temperature_Setpoint, brick:Occupied_Air_Temperature_Setpoint ; skos:definition "Sets temperature for zone air heating when occupied"@en ; @@ -28975,10 +29864,11 @@ brick:Occupied_Heating_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Load Shed Command"@en ; rdfs:subClassOf brick:Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -29008,6 +29898,7 @@ brick:Occupied_Load_Shed_Command a owl:Class, brick:Occupied_Target_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Target Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, brick:Target_Zone_Air_Temperature_Setpoint ; skos:definition "Target Setpoint (also known as Common Setpoint) is a reference point representing the desired occupied air temperature in a specific zone of a building. This setpoint acts as a baseline from which deadband setpoints are established by adding or subtracting a deadband width."@en ; @@ -29046,10 +29937,11 @@ brick:Occupied_Target_Zone_Air_Temperature_Setpoint a owl:Class, tag:Target, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Operating_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Operating Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates the current operating mode of a system, device or control loop"@en ; sh:rule [ a sh:TripleRule ; @@ -29073,20 +29965,9 @@ brick:Operating_Mode_Status a owl:Class, tag:Point, tag:Status . -brick:Operative_Temperature a brick:Quantity ; - rdfs:label "Operative_Temperature"@en ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)", - "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)"@en . - brick:Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Temperature Enable Differential Sensor"@en ; rdfs:subClassOf brick:Outside_Air_Temperature_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -29123,10 +30004,11 @@ brick:Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Outside_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Outside Fan"@en ; rdfs:subClassOf brick:Fan ; skos:definition "Fan moving outside air; air that is supplied into the building from the outdoors"@en ; sh:rule [ a sh:TripleRule ; @@ -29147,6 +30029,7 @@ brick:Outside_Fan a owl:Class, brick:Override_Command a owl:Class, sh:NodeShape ; + rdfs:label "Override Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls or reports whether or not a device or control loop is in 'override'"@en ; sh:rule [ a sh:TripleRule ; @@ -29167,6 +30050,7 @@ brick:Override_Command a owl:Class, brick:PAU a owl:Class, sh:NodeShape ; + rdfs:label "PAU"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:Pre-Cooling_Air_Unit ; skos:definition "A type of AHU, use to pre-treat the outdoor air before feed to AHU"@en ; @@ -29174,6 +30058,7 @@ brick:PAU a owl:Class, brick:PM10_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM10 Sensor"@en ; rdfs:subClassOf brick:Particulate_Matter_Sensor ; skos:definition "Detects matter of size 10 microns"@en ; sh:rule [ a sh:TripleRule ; @@ -29206,6 +30091,7 @@ brick:PM10_Sensor a owl:Class, brick:PM1_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM1 Sensor"@en ; rdfs:subClassOf brick:Particulate_Matter_Sensor ; skos:definition "Detects matter of size 1 micron"@en ; sh:rule [ a sh:TripleRule ; @@ -29238,6 +30124,7 @@ brick:PM1_Sensor a owl:Class, brick:PM2.5_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PM2.5 Sensor"@en ; rdfs:subClassOf brick:Particulate_Matter_Sensor ; skos:definition "Detects matter of size 2.5 microns"@en ; sh:rule [ a sh:TripleRule ; @@ -29270,6 +30157,7 @@ brick:PM2.5_Sensor a owl:Class, brick:PV_Current_Output_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "PV Current Output Sensor"@en ; rdfs:subClassOf brick:Current_Output_Sensor ; owl:equivalentClass brick:Photovoltaic_Current_Output_Sensor ; skos:definition "See Photovoltaic_Current_Output_Sensor"@en ; @@ -29277,6 +30165,7 @@ brick:PV_Current_Output_Sensor a owl:Class, brick:People_Count_Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "People Count Sensor Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Count ; @@ -29304,30 +30193,14 @@ brick:People_Count_Sensor_Equipment a owl:Class, tag:People, tag:Sensor . -brick:Phasor_Magnitude a brick:Quantity ; - rdfs:label "PhasorMagnitude"@en ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:definition "Magnitude component of a phasor" ; - skos:related brick:Phasor . - brick:Potable_Water a brick:Substance ; + rdfs:label "Potable Water"@en ; skos:broader brick:Water ; skos:definition "Water that is safe to drink"@en . brick:Power_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Power Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with electrical power."@en ; sh:rule [ a sh:TripleRule ; @@ -29346,13 +30219,9 @@ brick:Power_Alarm a owl:Class, tag:Point, tag:Power . -brick:Power_Factor a brick:Quantity ; - qudt:applicableUnit unit:UNITLESS ; - skos:definition "Power Factor, under periodic conditions, is the ratio of the absolute value of the active power (P) to the apparent power (S)."@en ; - brick:hasQUDTReference qudtqk:PowerFactor . - brick:Preheat_Discharge_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Discharge Air Temperature Sensor"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Sensor ; owl:equivalentClass brick:Preheat_Supply_Air_Temperature_Sensor ; skos:definition "Measures the temperature of discharge air before heating is applied"@en ; @@ -29360,6 +30229,7 @@ brick:Preheat_Discharge_Air_Temperature_Sensor a owl:Class, brick:Pressure_Regulator_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Regulator Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Device to maintain controlled downstream fluid pressure with varying upstream pressure."@en ; sh:rule [ a sh:TripleRule ; @@ -29380,6 +30250,7 @@ brick:Pressure_Regulator_Valve a owl:Class, brick:RC_Panel a owl:Class, sh:NodeShape ; + rdfs:label "RC Panel"@en ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:Radiant_Ceiling_Panel ; skos:definition "See Radiant_Ceiling_Panel"@en ; @@ -29387,6 +30258,7 @@ brick:RC_Panel a owl:Class, brick:RTU a owl:Class, sh:NodeShape ; + rdfs:label "RTU"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:Rooftop_Unit ; skos:definition "see Rooftop_Unit"@en ; @@ -29394,57 +30266,15 @@ brick:RTU a owl:Class, brick:RVAV a owl:Class, sh:NodeShape ; + rdfs:label "RVAV"@en ; rdfs:subClassOf brick:Variable_Air_Volume_Box ; owl:equivalentClass brick:Variable_Air_Volume_Box_With_Reheat ; skos:definition "See Variable_Air_Volume_Box_With_Reheat"@en ; brick:aliasOf brick:Variable_Air_Volume_Box_With_Reheat . -brick:Radiance a brick:Quantity ; - qudt:applicableUnit unit:W-PER-M2-SR ; - skos:narrower brick:Solar_Radiance ; - brick:hasQUDTReference qudtqk:Radiance . - -brick:Radiant_Temperature a brick:Quantity ; - rdfs:label "Radiant_Temperature"@en ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)", - "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)"@en . - -brick:Radioactivity_Concentration_Sensor a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Air_Quality_Sensor ; - skos:definition "Measures the concentration of radioactivity"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Concentration ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Radioactivity ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Concentration, - tag:Point, - tag:Radioactivity, - tag:Sensor ; - brick:hasQuantity brick:Radioactivity_Concentration ; - brick:hasSubstance brick:Air . - brick:Refrigerant_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Refrigerant Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "A valve controlling the flow or pressure of refrigerant in refrigeration or air conditioning systems, crucial for system efficiency"@en ; sh:rule [ a sh:TripleRule ; @@ -29470,6 +30300,7 @@ brick:Refrigerant_Valve a owl:Class, brick:Region a owl:Class, sh:NodeShape ; + rdfs:label "Region"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "A unit of geographic space, usually contigious or somehow related to a geopolitical feature"@en ; @@ -29489,6 +30320,7 @@ brick:Region a owl:Class, brick:Rest_Room a owl:Class, sh:NodeShape ; + rdfs:label "Rest Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; owl:equivalentClass brick:Restroom ; @@ -29499,7 +30331,7 @@ brick:Rest_Room a owl:Class, brick:isReplacedBy rec:RestingRoom . brick:Rotational_Speed a brick:Quantity ; - rdfs:label "Rotational_Speed"@en ; + rdfs:label "Rotational Speed"@en ; qudt:applicableUnit unit:DEG-PER-HR, unit:DEG-PER-MIN, unit:DEG-PER-SEC, @@ -29515,6 +30347,7 @@ brick:Rotational_Speed a brick:Quantity ; brick:Run_Status a owl:Class, sh:NodeShape ; + rdfs:label "Run Status"@en ; rdfs:subClassOf brick:Start_Stop_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Point ; @@ -29534,6 +30367,7 @@ brick:Run_Status a owl:Class, brick:Run_Time_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Run Time Sensor"@en ; rdfs:subClassOf brick:Duration_Sensor ; owl:equivalentClass brick:On_Timer_Sensor ; skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en ; @@ -29541,6 +30375,7 @@ brick:Run_Time_Sensor a owl:Class, brick:Security_Service_Room a owl:Class, sh:NodeShape ; + rdfs:label "Security Service Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces used by the security staff of a facility"@en ; @@ -29575,6 +30410,7 @@ brick:Security_Service_Room a owl:Class, brick:Separation_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Separation Tank"@en ; rdfs:subClassOf brick:Tank ; skos:definition "A tank used in conjunction with a filter to facilitate the separation of filtrate material for disposal."@en ; sh:rule [ a sh:TripleRule ; @@ -29590,6 +30426,7 @@ brick:Separation_Tank a owl:Class, brick:Server a owl:Class, sh:NodeShape ; + rdfs:label "Server"@en ; rdfs:subClassOf brick:ICT_Hardware ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -29614,6 +30451,7 @@ brick:Server a owl:Class, brick:Shading_System a owl:Class, sh:NodeShape ; + rdfs:label "Shading System"@en ; rdfs:subClassOf brick:System ; skos:definition "Devices that can control daylighting through various means"@en ; sh:rule [ a sh:TripleRule ; @@ -29629,6 +30467,7 @@ brick:Shading_System a owl:Class, brick:Smoke_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Smoke Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with smoke."@en ; sh:rule [ a sh:TripleRule ; @@ -29647,8 +30486,17 @@ brick:Smoke_Alarm a owl:Class, tag:Point, tag:Smoke . +brick:Solar_Irradiance a brick:Quantity ; + rdfs:label "Solar Irradiance"@en ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Irradiance ; + skos:definition "The power per unit area of solar electromagnetic radiation incident on a surface"@en . + brick:Solar_Irradiance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Solar Irradiance Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures solar irradiance levels for photovoltaic systems"@en ; sh:rule [ a sh:TripleRule ; @@ -29673,17 +30521,9 @@ brick:Solar_Irradiance_Sensor a owl:Class, tag:Solar ; brick:hasQuantity brick:Solar_Irradiance . -brick:Solar_Radiance a brick:Quantity ; - rdfs:label "Solar_Radiance"@en ; - qudt:applicableUnit unit:W-PER-M2-SR ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Radiance, - brick:Radiance ; - skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction", - "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en . - brick:Solar_Thermal_Collector a owl:Class, sh:NodeShape ; + rdfs:label "Solar Thermal Collector"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "A type of solar panels that converts solar radiation into thermal energy."@en ; sh:rule [ a sh:TripleRule ; @@ -29709,6 +30549,7 @@ brick:Solar_Thermal_Collector a owl:Class, brick:Speed_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Speed Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates the speed mode of a motor with various categorical settings, such as a multi-state value including low, medium, and high."@en ; sh:rule [ a sh:TripleRule ; @@ -29734,6 +30575,7 @@ brick:Speed_Mode_Status a owl:Class, brick:Speed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Speed Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets speed"@en ; sh:rule [ a sh:TripleRule ; @@ -29755,6 +30597,7 @@ brick:Speed_Setpoint a owl:Class, brick:Standby_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Standby Load Shed Command"@en ; rdfs:subClassOf brick:Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -29784,6 +30627,7 @@ brick:Standby_Load_Shed_Command a owl:Class, brick:Standby_Unit_On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Standby Unit On Off Status"@en ; rdfs:subClassOf brick:On_Off_Status ; skos:definition "Indicates the on/off status of a standby unit"@en ; sh:rule [ a sh:TripleRule ; @@ -29819,6 +30663,7 @@ brick:Standby_Unit_On_Off_Status a owl:Class, brick:Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Measures resistance to airflow in a heating and cooling system's components and duct work"@en ; sh:rule [ a sh:TripleRule ; @@ -29841,10 +30686,11 @@ brick:Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Static_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Step Parameter"@en ; rdfs:subClassOf brick:Step_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Parameter ; @@ -29873,11 +30719,13 @@ brick:Static_Pressure_Step_Parameter a owl:Class, tag:Step . brick:Steam a brick:Substance ; + rdfs:label "Steam"@en ; skos:broader brick:Gas ; skos:definition "water in the vapor phase."@en . brick:Steam_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Steam Radiator"@en ; rdfs:subClassOf brick:Radiator ; skos:definition "Radiator that uses steam"@en ; sh:rule [ a sh:TripleRule ; @@ -29898,6 +30746,7 @@ brick:Steam_Radiator a owl:Class, brick:Storey a owl:Class, sh:NodeShape ; + rdfs:label "Storey"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; owl:equivalentClass brick:Floor ; @@ -29907,6 +30756,7 @@ brick:Storey a owl:Class, brick:isReplacedBy rec:Level . brick:Supply_Hot_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Supply Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -29914,6 +30764,7 @@ brick:Supply_Hot_Water_Temperature_Setpoint a owl:Class ; brick:isReplacedBy brick:Leaving_Hot_Water_Temperature_Setpoint . brick:Supply_Water_Flow_Setpoint a owl:Class ; + rdfs:label "Supply Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -29922,6 +30773,7 @@ brick:Supply_Water_Flow_Setpoint a owl:Class ; brick:Switch a owl:Class, sh:NodeShape ; + rdfs:label "Switch"@en ; rdfs:subClassOf brick:Interface ; skos:definition "A switch used to operate all or part of a lighting installation"@en ; sh:rule [ a sh:TripleRule ; @@ -29942,6 +30794,7 @@ brick:Switch a owl:Class, brick:TABS_Panel a owl:Class, sh:NodeShape ; + rdfs:label "TABS Panel"@en ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:Thermally_Activated_Building_System_Panel ; skos:definition "See Thermally_Activated_Building_System_Panel"@en ; @@ -29949,6 +30802,7 @@ brick:TABS_Panel a owl:Class, brick:TVOC_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "TVOC Sensor"@en ; rdfs:subClassOf brick:Particulate_Matter_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Matter ; @@ -29980,6 +30834,7 @@ brick:TVOC_Sensor a owl:Class, brick:Temperature_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Step Parameter"@en ; rdfs:subClassOf brick:Step_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -30005,6 +30860,7 @@ brick:Temperature_Step_Parameter a owl:Class, brick:Thermal_Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Power Sensor"@en ; rdfs:subClassOf brick:Power_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Point ; @@ -30030,6 +30886,7 @@ brick:Thermal_Power_Sensor a owl:Class, brick:Thermostat a owl:Class, sh:NodeShape ; + rdfs:label "Thermostat"@en ; rdfs:subClassOf brick:HVAC_Equipment, brick:Sensor_Equipment ; skos:definition "An automatic control device used to maintain temperature at a fixed or adjustable setpoint."@en ; @@ -30046,6 +30903,7 @@ brick:Thermostat a owl:Class, brick:Torque_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Torque Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures torque, the tendency of a force to rotate an object about some axis"@en ; sh:property [ a sh:PropertyShape ; @@ -30073,6 +30931,7 @@ brick:Torque_Sensor a owl:Class, brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, brick:Cooling_Supply_Air_Flow_Setpoint, brick:Unoccupied_Supply_Air_Flow_Setpoint ; @@ -30082,6 +30941,7 @@ brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint a owl:Class, brick:Unoccupied_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Cooling_Zone_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; skos:definition "Sets temperature of air when unoccupied for cooling within a specific zone"@en ; @@ -30120,16 +30980,18 @@ brick:Unoccupied_Cooling_Zone_Air_Temperature_Setpoint a owl:Class, tag:Temperature, tag:Unoccupied, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Unoccupied_Supply_Air_Flow_Setpoint ; brick:aliasOf brick:Unoccupied_Supply_Air_Flow_Setpoint . brick:Unoccupied_Discharge_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Discharge Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; owl:equivalentClass brick:Unoccupied_Supply_Air_Temperature_Setpoint ; @@ -30137,6 +30999,7 @@ brick:Unoccupied_Discharge_Air_Temperature_Setpoint a owl:Class, brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, brick:Heating_Supply_Air_Flow_Setpoint, brick:Unoccupied_Supply_Air_Flow_Setpoint ; @@ -30145,6 +31008,7 @@ brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint a owl:Class, brick:Unoccupied_Heating_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Heating_Zone_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; skos:definition "Sets temperature of air when unoccupied for heating within a specific zone"@en ; @@ -30183,10 +31047,11 @@ brick:Unoccupied_Heating_Zone_Air_Temperature_Setpoint a owl:Class, tag:Temperature, tag:Unoccupied, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Load Shed Command"@en ; rdfs:subClassOf brick:Load_Shed_Command ; sh:rule [ a sh:TripleRule ; sh:object tag:Command ; @@ -30216,6 +31081,7 @@ brick:Unoccupied_Load_Shed_Command a owl:Class, brick:Unoccupied_Target_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Target Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Target_Zone_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; skos:definition "Target Setpoint (also known as Common Setpoint) is a reference point representing the desired unoccupied air temperature in a specific zone of a building. This setpoint acts as a baseline from which deadband setpoints are established by adding or subtracting a deadband width."@en ; @@ -30254,10 +31120,11 @@ brick:Unoccupied_Target_Zone_Air_Temperature_Setpoint a owl:Class, tag:Temperature, tag:Unoccupied, tag:Zone ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:VAV a owl:Class, sh:NodeShape ; + rdfs:label "VAV"@en ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:Variable_Air_Volume_Box ; skos:definition "See Variable_Air_Volume_Box"@en ; @@ -30265,6 +31132,7 @@ brick:VAV a owl:Class, brick:VFD a owl:Class, sh:NodeShape ; + rdfs:label "VFD"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Motor ; owl:equivalentClass brick:Variable_Frequency_Drive ; @@ -30273,6 +31141,7 @@ brick:VFD a owl:Class, brick:Valve_Command a owl:Class, sh:NodeShape ; + rdfs:label "Valve Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls or reports the openness of a valve (typically as a proportion of its full range of motion)"@en ; sh:rule [ a sh:TripleRule ; @@ -30291,13 +31160,16 @@ brick:Valve_Command a owl:Class, tag:Point, tag:Valve . -brick:Velocity_Pressure_Sensor a owl:Class ; +brick:Velocity_Pressure_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Velocity Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Measures the difference between total pressure and static pressure"@en ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:DynamicPressure . brick:Vibration_Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Vibration Sensor Equipment"@en ; rdfs:subClassOf brick:Sensor_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -30322,6 +31194,7 @@ brick:Vibration_Sensor_Equipment a owl:Class, brick:Voltage_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Voltage Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the voltage is not in a normal state."@en ; sh:rule [ a sh:TripleRule ; @@ -30340,28 +31213,18 @@ brick:Voltage_Alarm a owl:Class, tag:Point, tag:Voltage . -brick:Voltage_Angle a brick:Quantity ; - rdfs:label "VoltageAngle"@en ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; +brick:Voltage_Imbalance a brick:Quantity ; + rdfs:label "Voltage Imbalance"@en ; + qudt:applicableUnit unit:PERCENT ; qudt:hasDimensionVector ; rdfs:isDefinedBy ; - skos:broader brick:Phasor_Angle ; - skos:definition "Angle of voltage phasor", - "Angle of voltage phasor"@en ; - skos:related brick:Voltage . + skos:broader qudtqk:Dimensionless ; + skos:definition "The percent deviation from average voltage", + "The percent deviation from average voltage"@en . brick:Water_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Usage Sensor"@en ; rdfs:subClassOf brick:Usage_Sensor ; skos:definition "Measures the amount of water that is consumed, over some period of time"@en ; sh:rule [ a sh:TripleRule ; @@ -30388,7 +31251,14 @@ brick:Water_Usage_Sensor a owl:Class, brick:Wireless_Access_Point a owl:Class, sh:NodeShape ; + rdfs:label "Wireless Access Point"@en ; rdfs:subClassOf brick:Data_Network_Equipment ; + sh:property [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:in ( "WiFi4"^^xsd:string "WiFi5"^^xsd:string "WiFi6"^^xsd:string "WiFi6E"^^xsd:string "WiFi7"^^xsd:string ) ; + sh:maxCount 1 ; + sh:name "Generation"^^xsd:string ; + sh:path rec:generation ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Access ; sh:predicate brick:hasTag ; @@ -30410,23 +31280,33 @@ brick:Wireless_Access_Point a owl:Class, tag:Point, tag:Wireless . -brick:aggregate a brick:EntityProperty ; +brick:aggregate a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Aggregate"@en ; - skos:definition "Description of how the dta for this point is aggregated" . + skos:definition "Description of how the data for this point is aggregated" . brick:aggregationInterval a owl:DatatypeProperty ; rdfs:label "aggregationInterval"@en . -brick:azimuth a brick:EntityProperty ; +brick:aliasOf a owl:AsymmetricProperty, + owl:IrreflexiveProperty, + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "aliasOf"@en . + +brick:azimuth a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Azimuth"@en ; skos:definition "(Horizontal) angle between a projected vector and a reference vector (typically a compass bearing). The projected vector usually indicates the direction of a face or plane." . -brick:buildingPrimaryFunction a brick:EntityProperty ; +brick:buildingPrimaryFunction a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Building primary function"@en ; rdfs:seeAlso "https://project-haystack.org/tag/primaryFunction" ; skos:definition "Enumerated string applied to a site record to indicate the building's primary function. The list of primary functions is derived from the US Energy Star program (adopted from Project Haystack)" . -brick:buildingThermalTransmittance a brick:EntityProperty ; +brick:buildingThermalTransmittance a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Building thermal transmittance"@en ; rdfs:seeAlso "https://www.iso.org/obp/ui/#iso:std:iso:13789:ed-3:v1:en" ; rdfs:subPropertyOf brick:thermalTransmittance ; @@ -30434,195 +31314,234 @@ brick:buildingThermalTransmittance a brick:EntityProperty ; brick:connectedTo a owl:IrreflexiveProperty, owl:ObjectProperty, - owl:SymmetricProperty ; - rdfs:label "Connected To"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:SymmetricProperty, + brick:Relationship ; + rdfs:label "Connected To"@en . -brick:coolingCapacity a brick:EntityProperty ; +brick:coolingCapacity a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Cooling capacity"@en ; rdfs:seeAlso "https://project-haystack.org/tag/coolingCapacity" ; skos:definition "Measurement of a chiller ability to remove heat (adopted from Project Haystack)" . -brick:coordinates a brick:EntityProperty ; +brick:coordinates a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Coordinates"@en ; skos:definition "The location of an entity in latitude/longitude" . -brick:currentFlowType a brick:EntityProperty ; +brick:currentFlowType a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Current flow type"@en ; skos:definition "The current flow type of the entity" . -brick:electricVehicleChargerDirectionality a brick:EntityProperty ; +brick:electricVehicleChargerDirectionality a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "has electric vehicle charger directionality"@en ; skos:definition "Indicates if the EVSE charger supports bidirectional charging or just unidirectional charging of the EV battery" . -brick:electricVehicleChargerType a brick:EntityProperty ; +brick:electricVehicleChargerType a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "has electric vehicle charger type"@en ; skos:definition "Which type of EVSE charger this is, e.g. Level 1 (up to up to 2.5kW of AC power on 1 phase 120V input), Level 2 (direct AC power but can use higher voltage and up to 3 phases), or Level 3 (direct DC power)" . -brick:electricVehicleConnectorType a brick:EntityProperty ; +brick:electricVehicleConnectorType a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "has electric vehicle connector type"@en ; skos:definition "Identifies which kind of connector the port has. This property helps identify the physical connection required between the vehicle and the charging equipment." . -brick:electricalComplexPower a brick:EntityProperty ; +brick:electricalComplexPower a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "electrical complex power type"@en ; skos:definition "Associated electrical complexity with the entity" . -brick:electricalFlow a brick:EntityProperty ; +brick:electricalFlow a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Electrical flow direction"@en ; skos:definition "Entity has this electrical flow relative to the building'" . -brick:electricalPhaseCount a brick:EntityProperty ; +brick:electricalPhaseCount a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Electrical phase count"@en ; skos:definition "Entity has these phases" . -brick:electricalPhases a brick:EntityProperty ; +brick:electricalPhases a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Electrical phases"@en ; skos:definition "Entity has these electrical AC phases" . -brick:grossArea a brick:EntityProperty ; +brick:grossArea a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Gross area"@en ; rdfs:subPropertyOf brick:area ; skos:definition "Entity has gross 2-dimensional area" . -brick:hasAddress rdfs:label "Has address"@en ; - rdfs:subPropertyOf vcard:hasAddress, - brick:Relationship ; +brick:hasAddress a brick:Relationship ; + rdfs:label "Has address"@en ; + rdfs:subPropertyOf vcard:hasAddress ; skos:definition "To specify the address of a building."@en . brick:hasAmbientTemperature a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "hasAmbientTemperature"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "hasAmbientTemperature"@en . brick:hasInputSubstance a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has input substance"@en ; - rdfs:subPropertyOf brick:Relationship ; skos:definition "The subject receives the given substance as an input to its internal process"@en . brick:hasOutputSubstance a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has output substance"@en ; - rdfs:subPropertyOf brick:Relationship ; skos:definition "The subject produces or exports the given substance from its internal process"@en . brick:hasQUDTReference a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has QUDT reference"@en ; - rdfs:subPropertyOf brick:Relationship ; skos:definition "Points to the relevant QUDT definition"@en . brick:isReplacedBy a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is replaced by"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "Is replaced by"@en . -brick:isVirtualMeter a brick:EntityProperty ; +brick:isVirtualMeter a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "is virtual meter"@en ; skos:definition "True if the associated meter is 'virtual', i.e. a logical meter which includes or aggregates information from a variety of sources such as other submeters or equipment." . -brick:measuredModuleConversionEfficiency a brick:EntityProperty ; +brick:measuredModuleConversionEfficiency a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Measured module conversion efficiency"@en ; rdfs:subPropertyOf brick:conversionEfficiency ; skos:definition "The measured percentage of sunlight that is converted into usable power" . -brick:measuredPowerInput a brick:EntityProperty ; +brick:measuredPowerInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Measured power input"@en ; skos:definition "The nominal measured power input of the entity" . -brick:measuredPowerOutput a brick:EntityProperty ; +brick:measuredPowerOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Measured power output"@en ; skos:definition "The nominal measured power output of the entity" . -brick:netArea a brick:EntityProperty ; +brick:netArea a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Net area"@en ; rdfs:subPropertyOf brick:area ; skos:definition "Entity has net 2-dimensional area" . -brick:operationalStage a brick:EntityProperty ; +brick:operationalStage a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Operational stage"@en ; skos:definition "The associated operational stage" . -brick:operationalStageCount a brick:EntityProperty ; +brick:operationalStageCount a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Operational stage count"@en ; - skos:definition "The number of operational stages supported by this eqiupment" . + skos:definition "The number of operational stages supported by this equipment" . -brick:panelArea a brick:EntityProperty ; +brick:panelArea a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Panel area"@en ; rdfs:subPropertyOf brick:area ; skos:definition "Surface area of a panel, such as a PV panel" . -brick:ratedMaximumCurrentInput a brick:EntityProperty ; +brick:ratedMaximumCurrentInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated maximum current input"@en ; rdfs:subPropertyOf brick:ratedCurrentInput ; skos:definition "The maximum current that can be input to the entity" . -brick:ratedMaximumCurrentOutput a brick:EntityProperty ; +brick:ratedMaximumCurrentOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated maximum current output"@en ; rdfs:subPropertyOf brick:ratedCurrentOutput ; skos:definition "The maximum current that can be output by the entity" . -brick:ratedMaximumVoltageInput a brick:EntityProperty ; +brick:ratedMaximumVoltageInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated maximum voltage input"@en ; rdfs:subPropertyOf brick:ratedVoltageInput ; skos:definition "The maximum voltage that can be input to the entity" . -brick:ratedMaximumVoltageOutput a brick:EntityProperty ; +brick:ratedMaximumVoltageOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated maximum voltage output"@en ; rdfs:subPropertyOf brick:ratedVoltageOutput ; skos:definition "The maximum voltage that can be output by the entity" . -brick:ratedMinimumCurrentInput a brick:EntityProperty ; +brick:ratedMinimumCurrentInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated minimum current input"@en ; rdfs:subPropertyOf brick:ratedCurrentInput ; skos:definition "The minimum current that can be input to the entity" . -brick:ratedMinimumCurrentOutput a brick:EntityProperty ; +brick:ratedMinimumCurrentOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated minimum current output"@en ; rdfs:subPropertyOf brick:ratedCurrentOutput ; skos:definition "The minimum current that can be output by the entity" . -brick:ratedMinimumVoltageInput a brick:EntityProperty ; +brick:ratedMinimumVoltageInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated minimum voltage input"@en ; rdfs:subPropertyOf brick:ratedVoltageInput ; skos:definition "The minimum voltage that can be input to the entity" . -brick:ratedMinimumVoltageOutput a brick:EntityProperty ; +brick:ratedMinimumVoltageOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated minimum voltage output"@en ; rdfs:subPropertyOf brick:ratedVoltageOutput ; skos:definition "The minimum voltage that can be output by the entity" . -brick:ratedModuleConversionEfficiency a brick:EntityProperty ; +brick:ratedModuleConversionEfficiency a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated module conversion efficiency"@en ; rdfs:subPropertyOf brick:conversionEfficiency ; skos:definition "The *rated* percentage of sunlight that is converted into usable power, as measured using Standard Test Conditions (STC): 1000 W/sqm irradiance, 25 degC panel temperature, no wind" . -brick:ratedPowerInput a brick:EntityProperty ; +brick:ratedPowerInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated power input"@en ; skos:definition "The nominal rated power input of the entity" . -brick:ratedPowerOutput a brick:EntityProperty ; +brick:ratedPowerOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated power output"@en ; skos:definition "The nominal rated power output of the entity" . -brick:temperatureCoefficientofPmax a brick:EntityProperty ; +brick:resolution a owl:ObjectProperty, + brick:EntityProperty ; + rdfs:label "Resolution"@en ; + skos:definition "The resolution of the entity specifing the smallest measurable or controllable increment" . + +brick:temperatureCoefficientofPmax a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Temperature coefficient"@en ; skos:definition "The % change in power output for every degree celsius that the entity is hotter than 25 degrees celsius" . -brick:tilt a brick:EntityProperty ; +brick:tilt a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Tilt"@en ; skos:definition "The direction an entity is facing in degrees above the horizon" . -brick:volume a brick:EntityProperty ; +brick:volume a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Volume"@en ; skos:definition "Entity has 3-dimensional volume" . -brick:yearBuilt a brick:EntityProperty ; +brick:yearBuilt a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Year built"@en ; rdfs:seeAlso "https://project-haystack.org/tag/yearBuilt" ; skos:definition "Four digit year that a building was first built. (adopted from Project Haystack)" . @@ -30702,7 +31621,7 @@ bsh:AzimuthShape a owl:Class, sh:or bsh:NumericValue ; sh:path brick:value ], [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:MicroRAD unit:MilliRAD unit:GON unit:DEG unit:ARCMIN unit:MIL unit:MilliARCSEC unit:MIN_Angle unit:RAD unit:REV unit:GRAD ) ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:REV unit:MIL unit:MIN_Angle unit:RAD unit:2PiRAD unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; sh:path brick:hasUnit ] . @@ -30722,15 +31641,15 @@ bsh:CoolingCapacityShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:TON_FG unit:BTU_IT-PER-HR unit:BTU_TH-PER-HR unit:W ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:TON_FG unit:BTU_IT-PER-HR unit:BTU_TH-PER-HR unit:W ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:CoordinateShape a owl:Class, sh:NodeShape, @@ -30739,11 +31658,11 @@ bsh:CoordinateShape a owl:Class, sh:property [ a sh:PropertyShape ; sh:minCount 1 ; sh:or bsh:NumericValue ; - sh:path brick:longitude ], + sh:path brick:latitude ], [ a sh:PropertyShape ; sh:minCount 1 ; sh:or bsh:NumericValue ; - sh:path brick:latitude ] . + sh:path brick:longitude ] . bsh:CurrentFlowTypeShape a owl:Class, sh:NodeShape, @@ -30755,6 +31674,77 @@ bsh:CurrentFlowTypeShape a owl:Class, sh:minCount 1 ; sh:path brick:value ] . +bsh:DeprecationRule a sh:NodeShape ; + sh:property [ sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path brick:deprecatedInVersion ], + [ sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path brick:deprecationMitigationMessage ], + [ sh:class sh:NodeShape ; + sh:maxCount 1 ; + sh:path brick:deprecationMitigationRule ], + [ sh:maxCount 0 ; + sh:message "This concept is deprecated" ; + sh:path ( rdf:type brick:deprecation ) ; + sh:severity sh:Warning ] ; + sh:rule [ a sh:SPARQLRule ; + sh:construct """ + CONSTRUCT { $this owl:deprecated true } + WHERE { $this brick:deprecation ?dep } + """ ; + sh:prefixes ] ; + sh:targetSubjectsOf brick:deprecation . + +bsh:DeprecationShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + skos:definition "The version in which the entity was deprecated" ; + sh:datatype xsd:string ; + sh:minCount 1 ; + sh:path brick:deprecatedInVersion ], + [ a sh:PropertyShape ; + skos:definition "A SHACL rule which will mitigate the deprecation" ; + sh:class sh:NodeShape ; + sh:path brick:deprecationMitigationRule ], + [ a sh:PropertyShape ; + skos:definition "A message describing how to mitigate or address the deprecation" ; + sh:datatype xsd:string ; + sh:minCount 1 ; + sh:path brick:deprecationMitigationMessage ] . + +bsh:ElectricVehicleChargingDirectionalityShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + sh:in ( "unidirectional"^^xsd:string "bidirectional"^^xsd:string "unidirectional" "bidirectional" ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path brick:value ] . + +bsh:ElectricVehicleChargingTypeShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + sh:in ( "Level 1"^^xsd:string "Level 2"^^xsd:string "Level 3"^^xsd:string "Level 1" "Level 2" "Level 3" ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path brick:value ] . + +bsh:ElectricVehicleConnectorTypeShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + sh:in ( "Type 1 (CSS)"^^xsd:string "Type 2 (CSS)"^^xsd:string "GB/T"^^xsd:string "Type 1 (SAE J1772)"^^xsd:string "Type 2 (IEC 62196)"^^xsd:string "CHAdeMO"^^xsd:string "CCS (Combined Charging System)"^^xsd:string "Tesla Supercharger"^^xsd:string "Wireless"^^xsd:string "Type 1 (CSS)" "Type 2 (CSS)" "GB/T" "Type 1 (SAE J1772)" "Type 2 (IEC 62196)" "CHAdeMO" "CCS (Combined Charging System)" "Tesla Supercharger" "Wireless" ) ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path brick:value ] . + bsh:ElectricalComplexPowerShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; @@ -30795,6 +31785,17 @@ bsh:PhasesShape a owl:Class, sh:minCount 1 ; sh:path brick:value ] . +bsh:ResolutionShape a owl:Class, + sh:NodeShape, + brick:EntityPropertyValue ; + rdfs:subClassOf bsh:ValueShape ; + sh:property [ a sh:PropertyShape ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:minExclusive 0 ; + sh:or bsh:NumericValue ; + sh:path brick:value ] . + bsh:TemperatureCoefficientPerDegreeCelsiusShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; @@ -30815,15 +31816,15 @@ bsh:TiltShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:ARCSEC unit:MicroRAD unit:MilliRAD unit:GON unit:DEG unit:ARCMIN unit:MIL unit:MilliARCSEC unit:MIN_Angle unit:RAD unit:REV unit:GRAD ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:GON unit:GRAD unit:MicroRAD unit:ARCSEC unit:MilliRAD unit:ARCMIN unit:MilliARCSEC unit:REV unit:MIL unit:MIN_Angle unit:RAD unit:2PiRAD unit:DEG ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:VirtualMeterShape a owl:Class, sh:NodeShape, @@ -30840,15 +31841,15 @@ bsh:VolumeShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:FT3 unit:M3 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:FT3 unit:M3 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:YearBuiltShape a owl:Class, sh:NodeShape, @@ -30860,6 +31861,10 @@ bsh:YearBuiltShape a owl:Class, sh:minCount 1 ; sh:path brick:value ] . +bsh:aliasOfShape a sh:PropertyShape ; + sh:class brick:Entity ; + sh:path brick:aliasOf . + bsh:hasAddressShape a sh:PropertyShape ; sh:class vcard:Address ; sh:path brick:hasAddress . @@ -30942,7 +31947,7 @@ bsh:hascurrentFlowTypeShape a sh:PropertyShape ; bsh:hasdeprecationShape a sh:PropertyShape ; rdfs:label "has Deprecation Notice property"@en ; - sh:node brick:DeprecationShape ; + sh:node bsh:DeprecationShape ; sh:path brick:deprecation . bsh:haselectricVehicleChargerTypeShape a sh:PropertyShape ; @@ -31090,6 +32095,11 @@ bsh:hasratedVoltageOutputShape a sh:PropertyShape ; sh:node bsh:VoltageQuantityShape ; sh:path brick:ratedVoltageOutput . +bsh:hasresolutionShape a sh:PropertyShape ; + rdfs:label "has Resolution property"@en ; + sh:node bsh:ResolutionShape ; + sh:path brick:resolution . + bsh:hastemperatureCoefficientofPmaxShape a sh:PropertyShape ; rdfs:label "has Temperature coefficient property"@en ; sh:node bsh:TemperatureCoefficientPerDegreeCelsiusShape ; @@ -31134,7 +32144,7 @@ bsh:isSubMeterOfShape a sh:PropertyShape ; sh:path brick:isSubMeterOf . bsh:isTagOfShape a sh:PropertyShape ; - sh:class owl:Class ; + sh:or ( [ sh:class brick:Entity ] [ sh:class brick:Measurable ] ) ; sh:path brick:isTagOf . bsh:latitudeShape a sh:PropertyShape ; @@ -31157,9 +32167,6 @@ bsh:valueShape a sh:PropertyShape ; sh:class rdfs:Resource ; sh:path brick:value . - rdfs:label "RealEstateCore"^^xsd:string ; - owl:versionInfo "4.0"^^xsd:string . - rec:IPAddress a owl:DatatypeProperty ; rdfs:label "IPAddress"@en . @@ -31215,9 +32222,6 @@ rec:area a owl:AsymmetricProperty, rec:assetTag a owl:DatatypeProperty ; rdfs:label "assetTag"@en . -rec:batteryPercentage a owl:DatatypeProperty ; - rdfs:label "batteryPercentage"@en . - rec:capacity a owl:AsymmetricProperty, owl:IrreflexiveProperty, owl:ObjectProperty ; @@ -31288,9 +32292,6 @@ rec:familyName a owl:DatatypeProperty ; rec:gender a owl:DatatypeProperty ; rdfs:label "gender"@en . -rec:generation a owl:DatatypeProperty ; - rdfs:label "generation"@en . - rec:georeference a owl:AsymmetricProperty, owl:IrreflexiveProperty, owl:ObjectProperty ; @@ -31307,9 +32308,6 @@ rec:hasMember a owl:AsymmetricProperty, owl:ObjectProperty ; rdfs:label "hasMember"@en . -rec:heightRUs a owl:DatatypeProperty ; - rdfs:label "heightRUs"@en . - rec:heightScaleFactor a owl:DatatypeProperty ; rdfs:label "heightScaleFactor"@en . @@ -31382,9 +32380,6 @@ rec:mountedOn a owl:AsymmetricProperty, rec:netArea a owl:DatatypeProperty ; rdfs:label "netArea"@en . -rec:numberOfPorts a owl:DatatypeProperty ; - rdfs:label "numberOfPorts"@en . - rec:objectOfInterest a owl:AsymmetricProperty, owl:IrreflexiveProperty, owl:ObjectProperty ; @@ -31411,12 +32406,6 @@ rec:owns a owl:AsymmetricProperty, owl:ObjectProperty ; rdfs:label "owns"@en . -rec:poeType a owl:DatatypeProperty ; - rdfs:label "poeType"@en . - -rec:portSpeed a owl:DatatypeProperty ; - rdfs:label "portSpeed"@en . - rec:postalCode a owl:DatatypeProperty ; rdfs:label "postalCode"@en . @@ -31460,9 +32449,6 @@ rec:servicedBy a owl:AsymmetricProperty, rec:severity a owl:DatatypeProperty ; rdfs:label "severity"@en . -rec:standard a owl:DatatypeProperty ; - rdfs:label "standard"@en . - rec:start a owl:DatatypeProperty ; rdfs:label "start"@en . @@ -31497,9 +32483,6 @@ rec:weight a owl:DatatypeProperty ; rec:widthScaleFactor a owl:DatatypeProperty ; rdfs:label "widthScaleFactor"@en . -rec:wifiSignalStrength a owl:DatatypeProperty ; - rdfs:label "wifiSignalStrength"@en . - rec:xRotationalScaleFactor a owl:DatatypeProperty ; rdfs:label "xRotationalScaleFactor"@en . @@ -31508,6 +32491,7 @@ rec:yRotationalScaleFactor a owl:DatatypeProperty ; brick:Adjust_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Adjust Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures user-provided adjustment of some value"@en ; sh:property [ a sh:PropertyShape ; @@ -31535,6 +32519,7 @@ brick:Adjust_Sensor a owl:Class, brick:Air_Enthalpy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Enthalpy Sensor"@en ; rdfs:subClassOf brick:Enthalpy_Sensor ; skos:definition "Measures the total heat content of air"@en ; sh:rule [ a sh:TripleRule ; @@ -31562,6 +32547,7 @@ brick:Air_Enthalpy_Sensor a owl:Class, brick:Air_Flow_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Demand Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint, brick:Demand_Setpoint ; skos:definition "Sets the rate of air flow required for a process"@en ; @@ -31595,6 +32581,7 @@ brick:Air_Flow_Demand_Setpoint a owl:Class, brick:Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Flow_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -31630,6 +32617,7 @@ brick:Air_Flow_Setpoint_Limit a owl:Class, brick:Air_Grains_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Grains Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the mass of water vapor in air"@en ; sh:property [ a sh:PropertyShape ; @@ -31663,6 +32651,7 @@ brick:Air_Grains_Sensor a owl:Class, brick:Air_Static_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Air Static Pressure Step Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Step_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -31697,6 +32686,7 @@ brick:Air_Static_Pressure_Step_Parameter a owl:Class, brick:Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Limit, brick:Temperature_Parameter ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Air_Temperature_Setpoint."@en ; @@ -31728,6 +32718,7 @@ brick:Air_Temperature_Setpoint_Limit a owl:Class, brick:Air_Temperature_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Air Temperature Step Parameter"@en ; rdfs:subClassOf brick:Temperature_Step_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -31757,6 +32748,7 @@ brick:Air_Temperature_Step_Parameter a owl:Class, brick:Alarm_Sensitivity_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Alarm Sensitivity Parameter"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "A parameter indicates the sensitivity to activate an alarm."@en ; sh:rule [ a sh:TripleRule ; @@ -31780,22 +32772,8 @@ brick:Alarm_Sensitivity_Parameter a owl:Class, tag:Point, tag:Sensitivity . -brick:Alternating_Current_Frequency a brick:Quantity ; - rdfs:label "Alternating_Current_Frequency"@en ; - qudt:applicableUnit unit:GigaHZ, - unit:HZ, - unit:KiloHZ, - unit:MegaHZ ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Frequency, - brick:Frequency ; - skos:definition "The frequency of the oscillations of alternating current", - "The frequency of the oscillations of alternating current"@en ; - skos:related brick:Electric_Current . - brick:Ammonia_Concentration a brick:Quantity ; - rdfs:label "AmmoniaConcentration"@en ; + rdfs:label "Ammonia Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -31806,6 +32784,7 @@ brick:Ammonia_Concentration a brick:Quantity ; brick:Angle_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Angle Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measues the planar angle of some phenomenon"@en ; sh:property [ a sh:PropertyShape ; @@ -31833,6 +32812,7 @@ brick:Angle_Sensor a owl:Class, brick:Automated_External_Defibrillator a owl:Class, sh:NodeShape ; + rdfs:label "Automated External Defibrillator"@en ; rdfs:subClassOf brick:Safety_Equipment ; owl:equivalentClass brick:AED ; sh:rule [ a sh:TripleRule ; @@ -31858,6 +32838,7 @@ brick:Automated_External_Defibrillator a owl:Class, brick:Automatic_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Automatic Switch"@en ; rdfs:subClassOf brick:Switchgear ; skos:definition "An automatic switch operates automatically in the event of some current threshold or other designed event. Criteria for automatic operation is generally a physical property of the switch."@en ; sh:rule [ a sh:TripleRule ; @@ -31878,6 +32859,7 @@ brick:Automatic_Switch a owl:Class, brick:Average_Supply_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Average Supply Air Flow Sensor"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Sensor ; owl:equivalentClass brick:Average_Discharge_Air_Flow_Sensor ; skos:definition "The computed average flow of supply air over some interval"@en ; @@ -31920,6 +32902,7 @@ brick:Average_Supply_Air_Flow_Sensor a owl:Class, brick:Boiler a owl:Class, sh:NodeShape ; + rdfs:label "Boiler"@en ; rdfs:subClassOf brick:HVAC_Equipment, brick:Water_Heater ; skos:definition "A closed, pressure vessel that uses fuel or electricity for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; @@ -31936,6 +32919,7 @@ brick:Boiler a owl:Class, brick:Break_Room a owl:Class, sh:NodeShape ; + rdfs:label "Break Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; owl:equivalentClass brick:Breakroom ; @@ -31971,8 +32955,10 @@ brick:Break_Room a owl:Class, brick:Bypass_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Bypass Valve"@en ; rdfs:seeAlso ; - rdfs:subClassOf brick:HVAC_Equipment ; + rdfs:subClassOf brick:HVAC_Equipment, + brick:Valve ; skos:definition "A type of valve installed in a bypass pipeline"@en ; sh:rule [ a sh:TripleRule ; sh:object tag:Bypass ; @@ -31992,6 +32978,7 @@ brick:Bypass_Valve a owl:Class, brick:Chilled_Beam a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Beam"@en ; rdfs:subClassOf brick:Terminal_Unit ; skos:definition "A device with an integrated coil that performs sensible heating of a space via circulation of room air. Chilled Beams are not designed to perform latent cooling; see Induction Units. Despite their name, Chilled Beams may perform heating or cooling of a space depending on their configuration."@en ; sh:rule [ a sh:TripleRule ; @@ -32012,6 +32999,7 @@ brick:Chilled_Beam a owl:Class, brick:Chilled_Water_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Pump"@en ; rdfs:subClassOf brick:Water_Pump ; skos:definition "A pump that performs work on chilled water; typically part of a chilled water system"@en ; sh:rule [ a sh:TripleRule ; @@ -32037,6 +33025,7 @@ brick:Chilled_Water_Pump a owl:Class, brick:Coil a owl:Class, sh:NodeShape ; + rdfs:label "Coil"@en ; rdfs:subClassOf brick:Heat_Exchanger ; skos:definition "Cooling or heating element made of pipe or tube that may or may not be finned and formed into helical or serpentine shape (ASHRAE Dictionary)"@en ; sh:rule [ a sh:TripleRule ; @@ -32052,6 +33041,7 @@ brick:Coil a owl:Class, brick:Computer_Room_Air_Handler a owl:Class, sh:NodeShape ; + rdfs:label "Computer Room Air Handler"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:CRAH ; skos:definition "a computer room air handler (CRAH) uses fans, cooling coils and a water-chiller system to remove heat."@en ; @@ -32088,6 +33078,7 @@ brick:Computer_Room_Air_Handler a owl:Class, brick:Condenser_Water_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Pump"@en ; rdfs:subClassOf brick:Water_Pump ; skos:definition "A pump that is part of a condenser system; the pump circulates condenser water from the chiller back to the cooling tower"@en ; sh:rule [ a sh:TripleRule ; @@ -32113,6 +33104,7 @@ brick:Condenser_Water_Pump a owl:Class, brick:Constant_Air_Volume_Box a owl:Class, sh:NodeShape ; + rdfs:label "Constant Air Volume Box"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:CAV ; @@ -32145,6 +33137,7 @@ brick:Constant_Air_Volume_Box a owl:Class, brick:Cooling_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Coil"@en ; rdfs:subClassOf brick:Coil ; skos:definition "A cooling element made of pipe or tube that removes heat from equipment, machines or airflows. Typically filled with either refrigerant or cold water."@en ; sh:rule [ a sh:TripleRule ; @@ -32165,6 +33158,7 @@ brick:Cooling_Coil a owl:Class, brick:Cooling_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates whether a system, device or control loop is in a cooling mode"@en ; sh:rule [ a sh:TripleRule ; @@ -32190,6 +33184,7 @@ brick:Cooling_Mode_Status a owl:Class, brick:Cooling_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Supply Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Discharge_Air_Temperature_Cooling_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; @@ -32235,11 +33230,12 @@ brick:Cooling_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Discharge_Air . brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Supply Air Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; @@ -32295,6 +33291,7 @@ brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Supply Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; @@ -32348,18 +33345,9 @@ brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, tag:Supply, tag:Temperature . -brick:Current_Imbalance a brick:Quantity ; - rdfs:label "CurrentImbalance"@en ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The percent deviation from average current", - "The percent deviation from average current"@en ; - skos:related brick:Electric_Current . - brick:Current_Output_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Current Output Sensor"@en ; rdfs:subClassOf brick:Current_Sensor ; skos:definition "Senses the amperes of electrical current produced as output by a device"@en ; sh:rule [ a sh:TripleRule ; @@ -32386,6 +33374,7 @@ brick:Current_Output_Sensor a owl:Class, brick:DDAHU a owl:Class, sh:NodeShape ; + rdfs:label "DDAHU"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:Dual_Duct_Air_Handling_Unit ; skos:definition "See Dual_Duct_Air_Handling_Unit"@en ; @@ -32393,6 +33382,7 @@ brick:DDAHU a owl:Class, brick:Dedicated_Outdoor_Air_System_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Dedicated Outdoor Air System Unit"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:DOAS ; skos:definition "A device that conditions and delivers 100% outdoor air to its assigned spaces. It decouples air-conditioning of the outdoor air, usually used to provide minimum outdoor air ventilation, from conditioning of the internal loads."@en ; @@ -32428,94 +33418,28 @@ brick:Dedicated_Outdoor_Air_System_Unit a owl:Class, tag:System . brick:Differential_CO2_Concentration a brick:Quantity ; - rdfs:label "ΔCO2Concentration"@en ; + rdfs:label "Differential CO2 Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; + qudt:hasDimensionVector ; qudt:isDeltaQuantity true ; rdfs:isDefinedBy ; skos:broader brick:CO2_Concentration ; skos:definition "The difference in carbon dioxide concentration between two areas" . brick:Differential_CO_Concentration a brick:Quantity ; - rdfs:label "ΔCOConcentration"@en ; + rdfs:label "Differential CO Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; + qudt:hasDimensionVector ; qudt:isDeltaQuantity true ; rdfs:isDefinedBy ; skos:broader brick:CO_Concentration ; skos:definition "The difference in carbon monoxide concentration between two areas" . -brick:Differential_Dynamic_Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - qudt:isDeltaQuantity true ; - skos:broader brick:Differential_Pressure, - brick:Velocity_Pressure ; - brick:hasQUDTReference qudtqk:DynamicPressure . - brick:Differential_Entering_Leaving_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Differential Entering Leaving Water Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ; skos:definition "Measures the difference in temperature between entering and leaving water of water a circuit"@en ; sh:rule [ a sh:TripleRule ; @@ -32558,81 +33482,13 @@ brick:Differential_Entering_Leaving_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Chilled_Water, brick:Leaving_Chilled_Water . -brick:Differential_Static_Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - qudt:isDeltaQuantity true ; - skos:broader brick:Differential_Pressure, - brick:Static_Pressure ; - brick:hasQUDTReference qudtqk:StaticPressure . - brick:Differential_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Differential Temperature Setpoint"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Differential_Setpoint ; skos:definition "A type of Setpoints that is related to the difference between two temperature measurements"@en ; @@ -32659,6 +33515,7 @@ brick:Differential_Temperature_Setpoint a owl:Class, brick:hasQuantity brick:Differential_Temperature . brick:Discharge_Water_Flow_Setpoint a owl:Class ; + rdfs:label "Discharge Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -32667,6 +33524,7 @@ brick:Discharge_Water_Flow_Setpoint a owl:Class ; brick:Distribution_Frame a owl:Class, sh:NodeShape ; + rdfs:label "Distribution Frame"@en ; rdfs:subClassOf brick:Telecom_Room ; owl:deprecated true ; skos:definition "A class of spaces where the cables carrying signals meet and connect, e.g. a wiring closet or a broadcast downlink room"@en ; @@ -32706,6 +33564,7 @@ brick:Distribution_Frame a owl:Class, brick:Domestic_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, brick:Water_Temperature_Setpoint ; skos:definition "Sets temperature of domestic hot water"@en ; @@ -32739,23 +33598,17 @@ brick:Domestic_Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . -brick:Dry_Bulb_Temperature a brick:Quantity ; - rdfs:label "Dry_Bulb_Temperature"@en ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)", - "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation and moisture. (https://en.wikipedia.org/wiki/Dry-bulb_temperature)"@en ; - skos:narrower brick:Differential_Dry_Bulb_Temperature . +brick:Domestic_Water a brick:Substance ; + rdfs:label "Domestic Water"@en ; + skos:broader brick:Water ; + skos:definition "A collection of equipment that transport and regulate domestic water among each other"@en ; + skos:narrower brick:Domestic_Hot_Water . brick:Dual_Duct_Air_Handling_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Dual Duct Air Handling Unit"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:DDAHU ; skos:definition "An air handling unit that contains hot and cold decks to supply heating and cooling to a building"@en ; @@ -32782,6 +33635,7 @@ brick:Dual_Duct_Air_Handling_Unit a owl:Class, brick:Duct_Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Duct Fan Coil Unit"@en ; rdfs:subClassOf brick:Fan_Coil_Unit ; owl:equivalentClass brick:Horizontal_Fan_Coil_Unit ; skos:definition "An inline HVAC component, the Duct Fan Coil Unit is integrated within the ductwork system, rather than within the served space, to distribute conditioned air through ducts to various areas or rooms."@en ; @@ -32821,11 +33675,9 @@ brick:Duct_Fan_Coil_Unit a owl:Class, tag:Horizontal, tag:Unit . -brick:Dynamic_Pressure a brick:Quantity ; - skos:broader brick:Pressure . - brick:Effective_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Supply Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Effective_Discharge_Air_Temperature_Setpoint ; @@ -32869,10 +33721,11 @@ brick:Effective_Supply_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Electric_Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Electric Power Sensor"@en ; rdfs:subClassOf brick:Power_Sensor ; skos:definition "Measures the amount of instantaneous electric power consumed"@en ; sh:rule [ a sh:TripleRule ; @@ -32899,6 +33752,7 @@ brick:Electric_Power_Sensor a owl:Class, brick:Electric_Vehicle_Charging_Hub a owl:Class, sh:NodeShape ; + rdfs:label "Electric Vehicle Charging Hub"@en ; rdfs:subClassOf brick:Collection ; owl:equivalentClass brick:EV_Charging_Hub ; skos:definition "A collection of charging stations for charging electric vehicles. A hub may be located in a parking lot, for example"@en ; @@ -32932,6 +33786,7 @@ brick:Electric_Vehicle_Charging_Hub a owl:Class, brick:Electric_Vehicle_Charging_Port a owl:Class, sh:NodeShape ; + rdfs:label "Electric Vehicle Charging Port"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "An individual point of attachment for charing a single electric vehicle"@en ; sh:property bsh:haselectricVehicleChargerDirectionalityShape, @@ -32964,6 +33819,7 @@ brick:Electric_Vehicle_Charging_Port a owl:Class, brick:Electric_Vehicle_Charging_Station a owl:Class, sh:NodeShape ; + rdfs:label "Electric Vehicle Charging Station"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "An individual piece of equipment supplying electrical power for charging electric vehicles. Contains 1 or more electric vehicle charging ports"@en ; sh:property [ sh:class brick:Electric_Vehicle_Charging_Port ; @@ -32998,6 +33854,7 @@ brick:Electric_Vehicle_Charging_Station a owl:Class, brick:Elevator_Shaft a owl:Class, sh:NodeShape ; + rdfs:label "Elevator Shaft"@en ; rdfs:subClassOf brick:Vertical_Space ; owl:deprecated true ; owl:equivalentClass brick:Elevator_Space ; @@ -33033,6 +33890,7 @@ brick:Elevator_Shaft a owl:Class, brick:Embedded_Surface_System_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Embedded Surface System Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:ESS_Panel ; @@ -33070,6 +33928,7 @@ brick:Embedded_Surface_System_Panel a owl:Class, brick:Emergency_Power_Off_System_Status a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Power Off System Status"@en ; rdfs:subClassOf brick:Off_Status, brick:System_Status ; sh:rule [ a sh:TripleRule ; @@ -33105,6 +33964,7 @@ brick:Emergency_Power_Off_System_Status a owl:Class, brick:Energy_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Energy Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures energy consumption"@en ; sh:property [ a sh:PropertyShape ; @@ -33128,10 +33988,11 @@ brick:Energy_Sensor a owl:Class, brick:hasAssociatedTag tag:Energy, tag:Point, tag:Sensor ; - brick:hasQuantity brick:Energy . + brick:hasQuantity qudtqk:Energy . brick:Energy_System a owl:Class, sh:NodeShape ; + rdfs:label "Energy System"@en ; rdfs:subClassOf brick:Electrical_System ; skos:definition "A collection of devices that generates, stores or transports electricity"@en ; sh:rule [ a sh:TripleRule ; @@ -33147,6 +34008,7 @@ brick:Energy_System a owl:Class, brick:Energy_Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Energy Usage Sensor"@en ; rdfs:subClassOf brick:Energy_Sensor, brick:Usage_Sensor ; skos:definition "Measures the total amount of energy used over some period of time"@en ; @@ -33170,10 +34032,11 @@ brick:Energy_Usage_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Usage ; - brick:hasQuantity brick:Energy . + brick:hasQuantity qudtqk:Energy . brick:Entering_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of entering water"@en ; sh:rule [ a sh:TripleRule ; @@ -33206,6 +34069,7 @@ brick:Entering_Water_Flow_Setpoint a owl:Class, brick:Exhaust_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Exhaust Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Sensor ; skos:definition "The static pressure of air within exhaust regions of an HVAC system"@en ; sh:rule [ a sh:TripleRule ; @@ -33238,11 +34102,12 @@ brick:Exhaust_Air_Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Exhaust_Air . brick:Failure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Failure Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "Alarms that indicate the failure of devices, equipment, systems and control loops"@en ; sh:rule [ a sh:TripleRule ; @@ -33263,6 +34128,7 @@ brick:Failure_Alarm a owl:Class, brick:Fault_Status a owl:Class, sh:NodeShape ; + rdfs:label "Fault Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates the presence of a fault in a device, system or control loop"@en ; sh:rule [ a sh:TripleRule ; @@ -33283,6 +34149,7 @@ brick:Fault_Status a owl:Class, brick:Filter_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Filter Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Differential_Pressure_Sensor ; skos:definition "Measures the difference in pressure on either side of a filter"@en ; sh:rule [ a sh:TripleRule ; @@ -33314,6 +34181,7 @@ brick:Filter_Differential_Pressure_Sensor a owl:Class, brick:Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Flow Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets flow"@en ; sh:rule [ a sh:TripleRule ; @@ -33334,7 +34202,7 @@ brick:Flow_Setpoint a owl:Class, brick:hasQuantity qudtqk:VolumeFlowRate . brick:Formaldehyde_Concentration a brick:Quantity ; - rdfs:label "FormaldehydeConcentration"@en ; + rdfs:label "Formaldehyde Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -33345,6 +34213,7 @@ brick:Formaldehyde_Concentration a brick:Quantity ; brick:Frequency_Command a owl:Class, sh:NodeShape ; + rdfs:label "Frequency Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the frequency of a device's operation (e.g. rotational frequency)"@en ; sh:rule [ a sh:TripleRule ; @@ -33362,10 +34231,11 @@ brick:Frequency_Command a owl:Class, brick:hasAssociatedTag tag:Command, tag:Frequency, tag:Point ; - brick:hasQuantity brick:Frequency . + brick:hasQuantity qudtqk:Frequency . brick:Fresh_Air_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Fresh Air Setpoint Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -33395,11 +34265,13 @@ brick:Fresh_Air_Setpoint_Limit a owl:Class, tag:Setpoint . brick:Frost a brick:Substance ; + rdfs:label "Frost"@en ; skos:broader brick:Solid ; skos:definition "frost formed on the cold surface (tubes, plates) of a cooling coil."@en . brick:Gauge_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Gauge Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Pressure sensor which is zero-referenced against ambient air pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -33422,14 +34294,16 @@ brick:Gauge_Pressure_Sensor a owl:Class, tag:Point, tag:Pressure, tag:Sensor ; - brick:hasQuantity brick:Gauge_Pressure . + brick:hasQuantity qudtqk:GaugePressure . brick:Hail a brick:Substance ; + rdfs:label "Hail"@en ; skos:broader brick:Solid ; skos:definition "pellets of frozen rain which fall in showers from cumulonimbus clouds."@en . brick:Heat_Exchanger_Leaving_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Heat Exchanger Leaving Water Temperature Sensor"@en ; rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Ice ; @@ -33466,10 +34340,11 @@ brick:Heat_Exchanger_Leaving_Water_Temperature_Sensor a owl:Class, tag:Tank, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Heat_Recovery_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Recovery Condensing Unit"@en ; rdfs:subClassOf brick:Condensing_Unit ; skos:definition "An advanced outdoor HVAC unit equipped for both heating and cooling, with the added capability of heat recovery. It efficiently recycles heat from the cooling process for heating purposes, featuring components like a condenser coil, compressor, and heat recovery systems."@en ; sh:rule [ a sh:TripleRule ; @@ -33510,6 +34385,7 @@ brick:Heat_Recovery_Condensing_Unit a owl:Class, brick:Heating_Coil a owl:Class, sh:NodeShape ; + rdfs:label "Heating Coil"@en ; rdfs:subClassOf brick:Coil ; skos:definition "A heating element typically made of pipe, tube or wire that emits heat. Typically filled with hot water, or, in the case of wire, uses electricity."@en ; sh:rule [ a sh:TripleRule ; @@ -33530,6 +34406,7 @@ brick:Heating_Coil a owl:Class, brick:Heating_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Heating Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates whether a system, device or control loop is in a heating mode"@en ; sh:rule [ a sh:TripleRule ; @@ -33555,6 +34432,7 @@ brick:Heating_Mode_Status a owl:Class, brick:Heating_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Supply Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Discharge_Air_Temperature_Heating_Setpoint, brick:Heating_Temperature_Setpoint, brick:Supply_Air_Temperature_Deadband_Setpoint ; @@ -33600,11 +34478,12 @@ brick:Heating_Supply_Air_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Discharge_Air . brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Heating Supply Air Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ; owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; @@ -33660,6 +34539,7 @@ brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class, brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Heating Supply Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ; owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; @@ -33715,6 +34595,7 @@ brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, brick:High_Supply_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Supply Air Temperature Alarm"@en ; rdfs:subClassOf brick:High_Temperature_Alarm, brick:Supply_Air_Temperature_Alarm ; owl:equivalentClass brick:High_Discharge_Air_Temperature_Alarm ; @@ -33756,6 +34637,7 @@ brick:High_Supply_Air_Temperature_Alarm a owl:Class, brick:Hot_Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Water_Differential_Pressure_Sensor ; skos:definition "Measures the difference in water pressure on either side of a hot water valve"@en ; sh:rule [ a sh:TripleRule ; @@ -33793,6 +34675,7 @@ brick:Hot_Water_Differential_Pressure_Sensor a owl:Class, brick:Hot_Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Water_Differential_Pressure_Setpoint ; skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit used to carry hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -33829,6 +34712,7 @@ brick:Hot_Water_Differential_Pressure_Setpoint a owl:Class, brick:hasSubstance brick:Hot_Water . brick:Hot_Water_Discharge_Temperature_Sensor a owl:Class ; + rdfs:label "Hot Water Discharge Temperature Sensor"@en ; rdfs:subClassOf brick:Discharge_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -33837,6 +34721,7 @@ brick:Hot_Water_Discharge_Temperature_Sensor a owl:Class ; brick:Hot_Water_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Pump"@en ; rdfs:subClassOf brick:Water_Pump ; skos:definition "A pump that performs work on hot water; typically part of a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -33861,6 +34746,7 @@ brick:Hot_Water_Pump a owl:Class, tag:Water . brick:Hot_Water_Return_Temperature_Sensor a owl:Class ; + rdfs:label "Hot Water Return Temperature Sensor"@en ; rdfs:subClassOf brick:Return_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -33869,6 +34755,7 @@ brick:Hot_Water_Return_Temperature_Sensor a owl:Class ; brick:Hot_Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Valve"@en ; rdfs:subClassOf brick:Heating_Valve, brick:Water_Valve ; skos:definition "A valve regulating the flow of hot water"@en ; @@ -33895,6 +34782,7 @@ brick:Hot_Water_Valve a owl:Class, brick:Humidity_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the concentration of water vapor in the air."@en ; sh:rule [ a sh:TripleRule ; @@ -33915,6 +34803,7 @@ brick:Humidity_Alarm a owl:Class, brick:Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Sensor"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the concentration of water vapor in air"@en ; @@ -33937,6 +34826,7 @@ brick:Humidity_Sensor a owl:Class, brick:Imbalance_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Imbalance Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "A sensor which measures difference (imbalance) between phases of an electrical system"@en ; sh:property [ a sh:PropertyShape ; @@ -33964,6 +34854,7 @@ brick:Imbalance_Sensor a owl:Class, brick:Integral_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Integral Gain Parameter"@en ; rdfs:subClassOf brick:Gain_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Gain ; @@ -33993,6 +34884,7 @@ brick:Integral_Gain_Parameter a owl:Class, brick:Intercom_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Intercom Equipment"@en ; rdfs:subClassOf brick:Security_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -34012,6 +34904,7 @@ brick:Intercom_Equipment a owl:Class, brick:Interface a owl:Class, sh:NodeShape ; + rdfs:label "Interface"@en ; rdfs:subClassOf brick:Lighting_Equipment ; skos:definition "A device that provides an occupant control over a lighting system"@en ; sh:rule [ a sh:TripleRule ; @@ -34027,6 +34920,7 @@ brick:Interface a owl:Class, brick:Isolation_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Isolation Switch"@en ; rdfs:subClassOf brick:Switchgear ; owl:equivalentClass brick:Disconnect_Switch ; skos:definition "See 'Disconnect_Switch'"@en ; @@ -34048,6 +34942,7 @@ brick:Isolation_Switch a owl:Class, brick:Leaving_Chilled_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Chilled Water Flow Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Sensor, brick:Leaving_Water_Flow_Sensor ; skos:definition "Measures the rate of flow of chilled leaving water"@en ; @@ -34086,6 +34981,7 @@ brick:Leaving_Chilled_Water_Flow_Sensor a owl:Class, brick:Leaving_Chilled_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Chilled Water Flow Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint, brick:Leaving_Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of chilled leaving water"@en ; @@ -34124,6 +35020,7 @@ brick:Leaving_Chilled_Water_Flow_Setpoint a owl:Class, brick:Leaving_Chilled_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Chilled Water Temperature Sensor"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ; skos:definition "Measures the temperature of chilled water that is supplied from a chiller"@en ; sh:rule [ a sh:TripleRule ; @@ -34156,11 +35053,12 @@ brick:Leaving_Chilled_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Chilled_Water . brick:Leaving_Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint, brick:Leaving_Water_Temperature_Setpoint ; skos:definition "Temperature setpoint for leaving chilled water"@en ; @@ -34194,10 +35092,11 @@ brick:Leaving_Chilled_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Condenser_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Flow_Sensor, brick:Leaving_Water_Flow_Sensor ; skos:definition "Measures the flow of the leaving condenser water"@en ; @@ -34236,6 +35135,7 @@ brick:Leaving_Condenser_Water_Flow_Sensor a owl:Class, brick:Leaving_Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ; skos:definition "Measures the temperature of the leaving condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -34268,11 +35168,12 @@ brick:Leaving_Condenser_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Condenser_Water . brick:Leaving_Condenser_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Condenser Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ; skos:definition "The temperature setpoint for the leaving condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -34305,10 +35206,11 @@ brick:Leaving_Condenser_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Domestic_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Domestic Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor, brick:Leaving_Hot_Water_Temperature_Sensor ; skos:definition "Measures the temperature of domestic water supplied by a hot water system"@en ; @@ -34347,10 +35249,11 @@ brick:Leaving_Domestic_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Domestic_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Domestic Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint, brick:Leaving_Water_Temperature_Setpoint ; skos:definition "Sets temperature of leavinging part of domestic hot water"@en ; @@ -34389,10 +35292,11 @@ brick:Leaving_Domestic_Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving High Temperature Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Sensor ; skos:definition "Measures the temperature of high-temperature hot water supplied by a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -34430,10 +35334,89 @@ brick:Leaving_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . + +brick:Leaving_Hot_Water_Flow_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Leaving Hot Water Flow Sensor"@en ; + rdfs:subClassOf brick:Hot_Water_Flow_Sensor, + brick:Leaving_Water_Flow_Sensor ; + skos:definition "Measures the rate of flow of hot leaving water"@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Flow ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Hot ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Leaving ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Sensor ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Water ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Flow, + tag:Hot, + tag:Leaving, + tag:Point, + tag:Sensor, + tag:Water ; + brick:hasQuantity qudtqk:VolumeFlowRate ; + brick:hasSubstance brick:Leaving_Hot_Water . + +brick:Leaving_Hot_Water_Flow_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Leaving Hot Water Flow Setpoint"@en ; + rdfs:subClassOf brick:Hot_Water_Flow_Setpoint, + brick:Leaving_Water_Flow_Setpoint ; + skos:definition "Sets the target flow rate of hot leaving water"@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Flow ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Hot ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Leaving ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Setpoint ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Water ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Flow, + tag:Hot, + tag:Leaving, + tag:Point, + tag:Setpoint, + tag:Water ; + brick:hasQuantity qudtqk:VolumeFlowRate ; + brick:hasSubstance brick:Leaving_Hot_Water . brick:Leaving_Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint, brick:Leaving_Water_Temperature_Setpoint ; skos:definition "Temperature setpoint for leaving hot water"@en ; @@ -34467,10 +35450,11 @@ brick:Leaving_Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Medium Temperature Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Sensor ; skos:definition "Measures the temperature of medium-temperature hot water supplied by a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -34508,13 +35492,15 @@ brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . -brick:Lighting a owl:Class ; +brick:Lighting a owl:Class, + sh:NodeShape ; + rdfs:label "Lighting"@en ; rdfs:subClassOf brick:Lighting_Equipment . brick:Linear_Speed a brick:Quantity ; - rdfs:label "Linear_Speed"@en ; + rdfs:label "Linear Speed"@en ; qudt:applicableUnit unit:FT-PER-HR, unit:FT-PER-SEC, unit:KiloM-PER-HR, @@ -34531,6 +35517,7 @@ brick:Linear_Speed a brick:Quantity ; brick:Load_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Load Parameter"@en ; rdfs:subClassOf brick:Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Load ; @@ -34550,6 +35537,7 @@ brick:Load_Parameter a owl:Class, brick:Lobby a owl:Class, sh:NodeShape ; + rdfs:label "Lobby"@en ; rdfs:subClassOf brick:Common_Space ; owl:deprecated true ; skos:definition "A space just after the entrance to a building or other space of a building, where visitors can wait"@en ; @@ -34579,6 +35567,7 @@ brick:Lobby a owl:Class, brick:Low_Air_Flow_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Air Flow Alarm"@en ; rdfs:subClassOf brick:Air_Flow_Alarm ; skos:definition "An alarm that indicates that the air flow is lower than normal."@en ; sh:rule [ a sh:TripleRule ; @@ -34609,6 +35598,7 @@ brick:Low_Air_Flow_Alarm a owl:Class, brick:Low_Supply_Air_Flow_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Supply Air Flow Alarm"@en ; rdfs:subClassOf brick:Low_Air_Flow_Alarm ; owl:equivalentClass brick:Low_Discharge_Air_Flow_Alarm ; sh:rule [ a sh:TripleRule ; @@ -34649,6 +35639,7 @@ brick:Low_Supply_Air_Flow_Alarm a owl:Class, brick:Low_Supply_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Supply Air Temperature Alarm"@en ; rdfs:subClassOf brick:Low_Temperature_Alarm, brick:Supply_Air_Temperature_Alarm ; owl:equivalentClass brick:Low_Discharge_Air_Temperature_Alarm ; @@ -34690,6 +35681,7 @@ brick:Low_Supply_Air_Temperature_Alarm a owl:Class, brick:Makeup_Air_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Makeup Air Unit"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:MAU ; skos:definition "A device designed to condition ventilation air introduced into a space or to replace air exhausted from a process or general area exhaust. The device may be used to prevent negative pressure within buildings or to reduce airborne contaminants in a space."@en ; @@ -34721,6 +35713,7 @@ brick:Makeup_Air_Unit a owl:Class, brick:Manual_Fire_Alarm_Activation_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Manual Fire Alarm Activation Equipment"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Fire_Safety_Equipment ; skos:definition "A device for manually activating fire alarm"@en ; @@ -34757,6 +35750,7 @@ brick:Manual_Fire_Alarm_Activation_Equipment a owl:Class, brick:Max_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Occupied Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -34818,6 +35812,7 @@ brick:Max_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Occupied Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ; @@ -34879,6 +35874,7 @@ brick:Max_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Static_Pressure_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; @@ -34920,6 +35916,7 @@ brick:Max_Static_Pressure_Setpoint_Limit a owl:Class, brick:Max_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Supply Air Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Max_Static_Pressure_Setpoint_Limit ; owl:equivalentClass brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit ; @@ -34977,6 +35974,7 @@ brick:Max_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, brick:Max_Supply_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Supply Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Max_Discharge_Air_Temperature_Setpoint_Limit ; @@ -35024,6 +36022,7 @@ brick:Max_Supply_Air_Temperature_Setpoint_Limit a owl:Class, brick:Max_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Limit, brick:Temperature_Parameter ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Temperature_Setpoint."@en ; @@ -35055,6 +36054,7 @@ brick:Max_Temperature_Setpoint_Limit a owl:Class, brick:Max_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Unoccupied Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -35116,6 +36116,7 @@ brick:Max_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Unoccupied Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ; @@ -35175,18 +36176,8 @@ brick:Max_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, tag:Supply, tag:Unoccupied . -brick:Measurable a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Class, - brick:Entity ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Measurable ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Measurable . - brick:Methane_Concentration a brick:Quantity ; - rdfs:label "MethaneConcentration"@en ; + rdfs:label "Methane Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -35197,6 +36188,7 @@ brick:Methane_Concentration a brick:Quantity ; brick:Min_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Occupied Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -35258,6 +36250,7 @@ brick:Min_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Occupied Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ; @@ -35319,6 +36312,7 @@ brick:Min_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Static_Pressure_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; @@ -35360,6 +36354,7 @@ brick:Min_Static_Pressure_Setpoint_Limit a owl:Class, brick:Min_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Supply Air Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Min_Static_Pressure_Setpoint_Limit ; owl:equivalentClass brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit ; @@ -35417,6 +36412,7 @@ brick:Min_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class, brick:Min_Supply_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Supply Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Temperature_Setpoint_Limit, brick:Supply_Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Min_Discharge_Air_Temperature_Setpoint_Limit ; @@ -35464,6 +36460,7 @@ brick:Min_Supply_Air_Temperature_Setpoint_Limit a owl:Class, brick:Min_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Limit, brick:Temperature_Parameter ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Temperature_Setpoint."@en ; @@ -35495,6 +36492,7 @@ brick:Min_Temperature_Setpoint_Limit a owl:Class, brick:Min_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Unoccupied Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -35556,6 +36554,7 @@ brick:Min_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Unoccupied Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ; @@ -35617,6 +36616,7 @@ brick:Min_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Mixing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Mixing Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Valve used for mixing hot and cold fluid to a desired temperature."@en ; sh:rule [ a sh:TripleRule ; @@ -35632,6 +36632,7 @@ brick:Mixing_Valve a owl:Class, brick:Motor a owl:Class, sh:NodeShape ; + rdfs:label "Motor"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "A machine in which power is applied to do work by the conversion of various forms of energy into mechanical force and motion."@en ; @@ -35647,7 +36648,7 @@ brick:Motor a owl:Class, tag:Motor . brick:NO2_Concentration a brick:Quantity ; - rdfs:label "PM10Concentration"@en ; + rdfs:label "NO2 Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -35657,6 +36658,7 @@ brick:NO2_Concentration a brick:Quantity ; brick:Natural_Gas_Boiler a owl:Class, sh:NodeShape ; + rdfs:label "Natural Gas Boiler"@en ; rdfs:subClassOf brick:Boiler ; skos:definition "A closed, pressure vessel that uses natural gas for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ; sh:rule [ a sh:TripleRule ; @@ -35682,6 +36684,7 @@ brick:Natural_Gas_Boiler a owl:Class, brick:Network_Video_Recorder a owl:Class, sh:NodeShape ; + rdfs:label "Network Video Recorder"@en ; rdfs:subClassOf brick:Video_Surveillance_Equipment ; owl:equivalentClass brick:NVR ; sh:rule [ a sh:TripleRule ; @@ -35721,7 +36724,8 @@ brick:Network_Video_Recorder a owl:Class, tag:Video . brick:Occupancy_Count a brick:Quantity ; - rdfs:label "Occupancy_Count"@en ; + rdfs:label "Occupancy Count"@en ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader qudtqk:Dimensionless, brick:Occupancy ; @@ -35730,6 +36734,7 @@ brick:Occupancy_Count a brick:Quantity ; brick:Occupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Cooling Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, brick:Cooling_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; @@ -35779,6 +36784,7 @@ brick:Occupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, brick:Occupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Heating Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, brick:Heating_Supply_Air_Flow_Setpoint, brick:Occupied_Supply_Air_Flow_Setpoint ; @@ -35828,6 +36834,7 @@ brick:Occupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, brick:Occupied_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; skos:definition "Indicates if a system, device or control loop is in \"Occupied\" mode"@en ; sh:rule [ a sh:TripleRule ; @@ -35853,6 +36860,7 @@ brick:Occupied_Mode_Status a owl:Class, brick:Occupied_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Supply Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Occupied_Discharge_Air_Temperature_Setpoint ; @@ -35896,15 +36904,17 @@ brick:Occupied_Supply_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Oil a brick:Substance ; + rdfs:label "Oil"@en ; skos:broader brick:Liquid ; skos:definition "a viscous liquid derived from petroleum, especially for use as a fuel or lubricant."@en ; skos:narrower brick:Fuel_Oil . brick:On_Status a owl:Class, sh:NodeShape ; + rdfs:label "On Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a control loop, relay or equipment is on"@en ; sh:rule [ a sh:TripleRule ; @@ -35925,6 +36935,7 @@ brick:On_Status a owl:Class, brick:On_Timer_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "On Timer Sensor"@en ; rdfs:subClassOf brick:Duration_Sensor ; owl:equivalentClass brick:Run_Time_Sensor ; skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en ; @@ -35962,6 +36973,7 @@ brick:On_Timer_Sensor a owl:Class, brick:Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Lockout Temperature Differential Parameter"@en ; rdfs:subClassOf brick:Lockout_Temperature_Differential_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -36001,6 +37013,7 @@ brick:Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class, brick:Overridden_Status a owl:Class, sh:NodeShape ; + rdfs:label "Overridden Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if the expected operating status of an equipment or control loop has been overridden"@en ; sh:rule [ a sh:TripleRule ; @@ -36020,7 +37033,7 @@ brick:Overridden_Status a owl:Class, tag:Status . brick:Ozone_Concentration a brick:Quantity ; - rdfs:label "OzoneConcentration"@en ; + rdfs:label "Ozone Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -36031,6 +37044,7 @@ brick:Ozone_Concentration a brick:Quantity ; brick:PV_Array a owl:Class, sh:NodeShape ; + rdfs:label "PV Array"@en ; rdfs:subClassOf brick:Collection, rec:Collection ; owl:equivalentClass brick:Photovoltaic_Array ; @@ -36044,6 +37058,7 @@ brick:PV_Array a owl:Class, brick:Packaged_Heat_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Packaged Heat Pump"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A self-contained unit designed to transfer heat energy to or from a designated space, capable of offering both heating and cooling functions"@en ; sh:rule [ a sh:TripleRule ; @@ -36062,12 +37077,27 @@ brick:Packaged_Heat_Pump a owl:Class, tag:Heat, tag:Pump . -brick:Phasor a brick:Quantity ; - skos:related brick:Phasor_Angle, - brick:Phasor_Magnitude . +brick:Phasor_Angle a brick:Quantity ; + rdfs:label "Phasor Angle"@en ; + qudt:applicableUnit unit:ARCMIN, + unit:ARCSEC, + unit:DEG, + unit:GON, + unit:GRAD, + unit:MIL, + unit:MicroRAD, + unit:MilliARCSEC, + unit:MilliRAD, + unit:RAD, + unit:REV ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:PlaneAngle ; + skos:definition "Angle component of a phasor" . brick:Photovoltaic_Array a owl:Class, sh:NodeShape ; + rdfs:label "Photovoltaic Array"@en ; rdfs:subClassOf brick:Collection ; owl:deprecated true ; owl:equivalentClass brick:PV_Array ; @@ -36097,6 +37127,7 @@ brick:Photovoltaic_Array a owl:Class, brick:Photovoltaic_Current_Output_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Photovoltaic Current Output Sensor"@en ; rdfs:subClassOf brick:Current_Output_Sensor ; owl:equivalentClass brick:PV_Current_Output_Sensor ; skos:definition "Senses the amperes of electrical current produced as output by a photovoltaic device"@en ; @@ -36134,6 +37165,7 @@ brick:Photovoltaic_Current_Output_Sensor a owl:Class, brick:Position_Command a owl:Class, sh:NodeShape ; + rdfs:label "Position Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls or reports the position of some object"@en ; sh:rule [ a sh:TripleRule ; @@ -36155,6 +37187,7 @@ brick:Position_Command a owl:Class, brick:Position_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Position Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Position_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -36175,6 +37208,7 @@ brick:Position_Limit a owl:Class, brick:Power_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Power Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the amount of instantaneous power consumed"@en ; sh:property [ a sh:PropertyShape ; @@ -36202,6 +37236,7 @@ brick:Power_Sensor a owl:Class, brick:Pre-Cooling_Air_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Pre-Cooling Air Unit"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:PAU ; skos:definition "A type of AHU, use to pre-treat the outdoor air before feed to AHU"@en ; @@ -36236,6 +37271,7 @@ brick:Precipitation a brick:Quantity ; brick:Preheat_Supply_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Preheat Supply Air Temperature Sensor"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Sensor ; owl:equivalentClass brick:Preheat_Discharge_Air_Temperature_Sensor ; skos:definition "Measures the temperature of supply air before it is heated"@en ; @@ -36274,10 +37310,11 @@ brick:Preheat_Supply_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Pressure_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with pressure."@en ; sh:rule [ a sh:TripleRule ; @@ -36298,6 +37335,7 @@ brick:Pressure_Alarm a owl:Class, brick:Pressure_Reducing_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Reducing Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Valve used to reduce a high supply pressure to a usable level; maintains uniform outlet pressure despite inlet pressure variation."@en ; sh:rule [ a sh:TripleRule ; @@ -36318,6 +37356,7 @@ brick:Pressure_Reducing_Valve a owl:Class, brick:Pressure_Relief_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Relief Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "Pressure-actuated valve to automatically relieve excessive pressure; prevents explosive shattering of the housing."@en ; sh:rule [ a sh:TripleRule ; @@ -36338,6 +37377,7 @@ brick:Pressure_Relief_Valve a owl:Class, brick:Proportional_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Proportional Gain Parameter"@en ; rdfs:subClassOf brick:Gain_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Gain ; @@ -36367,6 +37407,7 @@ brick:Proportional_Gain_Parameter a owl:Class, brick:Radiant_Ceiling_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Radiant Ceiling Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:RC_Panel ; @@ -36398,30 +37439,33 @@ brick:Radiant_Ceiling_Panel a owl:Class, tag:Radiant . brick:Radon_Concentration a brick:Quantity ; - rdfs:label "RadonConcentration"@en ; + rdfs:label "Radon Concentration"@en ; qudt:applicableUnit unit:BQ-PER-M3 ; qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader qudtqk:ActivityConcentration, - brick:Radioactivity_Concentration ; + brick:Air_Quality ; skos:definition "The concentration of radioactivity due to Radon in a medium" . brick:Reactive_Energy a brick:Quantity ; - rdfs:label "Reactive_Energy"@en ; + rdfs:label "Reactive Energy"@en ; qudt:applicableUnit unit:KiloV-A_Reactive-HR, unit:MegaV-A_Reactive-HR, unit:V-A_Reactive-HR ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Electric_Energy ; skos:definition "The integral of the reactive power over a time interval" . brick:Refrigerant a brick:Substance ; + rdfs:label "Refrigerant"@en ; rdfs:seeAlso ; skos:broader brick:Fluid ; skos:definition "A refrigerant is a working fluid used in the refrigeration cycle of air conditioning systems and heat pumps where in most cases they undergo a repeated phase transition from a liquid to a gas and back again."@en . brick:Restroom a owl:Class, sh:NodeShape ; + rdfs:label "Restroom"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; owl:equivalentClass brick:Rest_Room ; @@ -36457,6 +37501,7 @@ brick:Restroom a owl:Class, brick:Return_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Temperature Alarm"@en ; rdfs:subClassOf brick:Air_Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of return air."@en ; sh:rule [ a sh:TripleRule ; @@ -36486,6 +37531,7 @@ brick:Return_Air_Temperature_Alarm a owl:Class, tag:Temperature . brick:Return_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Return Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -36494,6 +37540,7 @@ brick:Return_Water_Temperature_Sensor a owl:Class ; brick:Rooftop_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Rooftop Unit"@en ; rdfs:subClassOf brick:Air_Handling_Unit ; owl:equivalentClass brick:RTU ; skos:definition "Packaged air conditioner mounted on a roof, the conditioned air being discharged directly into the rooms below or through a duct system."@en ; @@ -36520,6 +37567,7 @@ brick:Rooftop_Unit a owl:Class, brick:Shading_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Shading Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -36534,6 +37582,7 @@ brick:Shading_Equipment a owl:Class, brick:Site a owl:Class, sh:NodeShape ; + rdfs:label "Site"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "A geographic region containing 0 or more buildings. Typically used as the encapsulating location for a collection of Brick entities through the hasPart/isPartOf relationships"@en ; @@ -36555,6 +37604,7 @@ brick:Site a owl:Class, brick:Smoke_Detection_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Smoke Detection Alarm"@en ; rdfs:subClassOf brick:Smoke_Alarm ; sh:rule [ a sh:TripleRule ; sh:object tag:Alarm ; @@ -36578,21 +37628,12 @@ brick:Smoke_Detection_Alarm a owl:Class, tag:Smoke . brick:Soil a brick:Substance ; + rdfs:label "Soil"@en ; skos:broader brick:Solid . -brick:Solar_Irradiance a brick:Quantity ; - rdfs:label "SolarIrradiance"@en ; - qudt:applicableUnit unit:W-PER-CentiM2, - unit:W-PER-FT2, - unit:W-PER-IN2, - unit:W-PER-M2 ; - rdfs:isDefinedBy ; - skos:broader brick:Irradiance ; - skos:definition "The power per unit area of solar electromagnetic radiation incident on a surface", - "The power per unit area of solar electromagnetic radiation incident on a surface"@en . - brick:Speed_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Speed Setpoint Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Speed_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -36623,6 +37664,7 @@ brick:Speed_Setpoint_Limit a owl:Class, brick:Static_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Deadband_Setpoint, brick:Static_Pressure_Setpoint ; skos:definition "Sets the size of a deadband of static pressure"@en ; @@ -36651,10 +37693,11 @@ brick:Static_Pressure_Deadband_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Static ; - brick:hasQuantity brick:Static_Pressure . + brick:hasQuantity qudtqk:StaticPressure . brick:Static_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Integral ; @@ -36694,6 +37737,7 @@ brick:Static_Pressure_Integral_Time_Parameter a owl:Class, brick:Steam_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Steam Valve"@en ; rdfs:subClassOf brick:HVAC_Equipment, brick:Valve ; sh:rule [ a sh:TripleRule ; @@ -36714,6 +37758,7 @@ brick:Steam_Valve a owl:Class, brick:Storage_Room a owl:Class, sh:NodeShape ; + rdfs:label "Storage Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces used for storage"@en ; @@ -36743,6 +37788,7 @@ brick:Storage_Room a owl:Class, brick:Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Storage Tank"@en ; rdfs:subClassOf brick:Tank ; skos:definition "A specialized type of tank intended primarily for the storage of fluids or gases for extended periods."@en ; sh:rule [ a sh:TripleRule ; @@ -36763,6 +37809,7 @@ brick:Storage_Tank a owl:Class, brick:Supply_Air_Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Dewpoint Sensor"@en ; rdfs:subClassOf brick:Dewpoint_Sensor ; owl:equivalentClass brick:Discharge_Air_Dewpoint_Sensor ; sh:rule [ a sh:TripleRule ; @@ -36800,6 +37847,7 @@ brick:Supply_Air_Dewpoint_Sensor a owl:Class, brick:Supply_Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ; owl:equivalentClass brick:Discharge_Air_Differential_Pressure_Sensor ; skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to supply air into the building"@en ; @@ -36843,6 +37891,7 @@ brick:Supply_Air_Differential_Pressure_Sensor a owl:Class, brick:Supply_Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ; owl:equivalentClass brick:Discharge_Air_Differential_Pressure_Setpoint ; skos:definition "Sets the target air differential pressure between an upstream and downstream point in a supply air duct or conduit"@en ; @@ -36886,6 +37935,7 @@ brick:Supply_Air_Differential_Pressure_Setpoint a owl:Class, brick:Supply_Air_Duct_Pressure_Status a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Duct Pressure Status"@en ; rdfs:subClassOf brick:Pressure_Status ; owl:equivalentClass brick:Discharge_Air_Duct_Pressure_Status ; skos:definition "Indicates if air pressure in supply duct is within expected bounds"@en ; @@ -36924,10 +37974,11 @@ brick:Supply_Air_Duct_Pressure_Status a owl:Class, tag:Pressure, tag:Status, tag:Supply ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Supply_Air_Flow_Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow Demand Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Demand_Setpoint, brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Discharge_Air_Flow_Demand_Setpoint ; @@ -36973,6 +38024,7 @@ brick:Supply_Air_Flow_Demand_Setpoint a owl:Class, brick:Supply_Air_Flow_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow High Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Flow_High_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -37019,6 +38071,7 @@ brick:Supply_Air_Flow_High_Reset_Setpoint a owl:Class, brick:Supply_Air_Flow_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow Low Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Flow_Low_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -37065,6 +38118,7 @@ brick:Supply_Air_Flow_Low_Reset_Setpoint a owl:Class, brick:Supply_Air_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Humidity Sensor"@en ; rdfs:subClassOf brick:Relative_Humidity_Sensor ; owl:equivalentClass brick:Discharge_Air_Humidity_Sensor ; skos:definition "Measures the relative humidity of supply air"@en ; @@ -37109,6 +38163,7 @@ brick:Supply_Air_Humidity_Sensor a owl:Class, brick:Supply_Air_Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Humidity Setpoint"@en ; rdfs:subClassOf brick:Humidity_Setpoint ; owl:equivalentClass brick:Discharge_Air_Humidity_Setpoint ; skos:definition "Humidity setpoint for supply air"@en ; @@ -37148,6 +38203,7 @@ brick:Supply_Air_Humidity_Setpoint a owl:Class, brick:Supply_Air_Integral_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Integral Gain Parameter"@en ; rdfs:subClassOf brick:Integral_Gain_Parameter ; owl:equivalentClass brick:Discharge_Air_Integral_Gain_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37193,6 +38249,7 @@ brick:Supply_Air_Integral_Gain_Parameter a owl:Class, brick:Supply_Air_Proportional_Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Proportional Gain Parameter"@en ; rdfs:subClassOf brick:Proportional_Gain_Parameter ; owl:equivalentClass brick:Discharge_Air_Proportional_Gain_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37238,6 +38295,7 @@ brick:Supply_Air_Proportional_Gain_Parameter a owl:Class, brick:Supply_Air_Smoke_Detection_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Smoke Detection Alarm"@en ; rdfs:subClassOf brick:Air_Alarm, brick:Smoke_Detection_Alarm ; owl:equivalentClass brick:Discharge_Air_Smoke_Detection_Alarm ; @@ -37279,6 +38337,7 @@ brick:Supply_Air_Smoke_Detection_Alarm a owl:Class, brick:Supply_Air_Static_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Discharge_Air_Static_Pressure_Setpoint, brick:Static_Pressure_Deadband_Setpoint, brick:Supply_Air_Static_Pressure_Setpoint ; @@ -37324,12 +38383,13 @@ brick:Supply_Air_Static_Pressure_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Static, tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:Supply_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter ; owl:equivalentClass brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37385,6 +38445,7 @@ brick:Supply_Air_Static_Pressure_Integral_Time_Parameter a owl:Class, brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ; owl:equivalentClass brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37440,6 +38501,7 @@ brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class, brick:Supply_Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Sensor ; owl:equivalentClass brick:Discharge_Air_Static_Pressure_Sensor ; skos:definition "The static pressure of air within supply regions of an HVAC system"@en ; @@ -37478,12 +38540,13 @@ brick:Supply_Air_Static_Pressure_Sensor a owl:Class, tag:Sensor, tag:Static, tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:Supply_Air_Static_Pressure_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Step Parameter"@en ; rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter ; owl:equivalentClass brick:Discharge_Air_Static_Pressure_Step_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37529,6 +38592,7 @@ brick:Supply_Air_Static_Pressure_Step_Parameter a owl:Class, brick:Supply_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Cooling Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_Cooling_Setpoint ; @@ -37567,10 +38631,11 @@ brick:Supply_Air_Temperature_Cooling_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Supply_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Heating Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_Heating_Setpoint ; @@ -37609,10 +38674,11 @@ brick:Supply_Air_Temperature_Heating_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Supply_Air_Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Reset_Differential_Setpoint, brick:Temperature_High_Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_High_Reset_Setpoint ; @@ -37661,11 +38727,12 @@ brick:Supply_Air_Temperature_High_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Supply_Air . brick:Supply_Air_Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Reset_Differential_Setpoint, brick:Temperature_Low_Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_Low_Reset_Setpoint ; @@ -37714,11 +38781,12 @@ brick:Supply_Air_Temperature_Low_Reset_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Supply_Air . brick:Supply_Air_Temperature_Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Step Parameter"@en ; rdfs:subClassOf brick:Air_Temperature_Step_Parameter ; owl:equivalentClass brick:Discharge_Air_Temperature_Step_Parameter ; sh:rule [ a sh:TripleRule ; @@ -37759,6 +38827,7 @@ brick:Supply_Air_Temperature_Step_Parameter a owl:Class, brick:Supply_Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Velocity Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Velocity_Pressure_Sensor ; owl:equivalentClass brick:Discharge_Air_Velocity_Pressure_Sensor ; sh:rule [ a sh:TripleRule ; @@ -37796,12 +38865,13 @@ brick:Supply_Air_Velocity_Pressure_Sensor a owl:Class, tag:Sensor, tag:Supply, tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure ; + brick:hasQuantity qudtqk:DynamicPressure ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:Supply_Fan a owl:Class, sh:NodeShape ; + rdfs:label "Supply Fan"@en ; rdfs:subClassOf brick:Fan ; owl:equivalentClass brick:Discharge_Fan ; skos:definition "Fan moving supply air -- air that is supplied from the HVAC system into the building"@en ; @@ -37828,6 +38898,7 @@ brick:Supply_Fan a owl:Class, brick:System_Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "System Enable Command"@en ; rdfs:subClassOf brick:Enable_Command ; skos:definition "Enables operation of a system"@en ; sh:rule [ a sh:TripleRule ; @@ -37853,6 +38924,7 @@ brick:System_Enable_Command a owl:Class, brick:Temperature_Differential_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Differential Reset Setpoint"@en ; rdfs:subClassOf brick:Differential_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -37881,41 +38953,9 @@ brick:Temperature_Differential_Reset_Setpoint a owl:Class, tag:Temperature ; brick:hasQuantity brick:Differential_Temperature . -brick:Thermal_Energy a brick:Quantity ; - qudt:applicableUnit unit:BTU_39DEG_F, - unit:BTU_59DEG_F, - unit:BTU_60DEG_F, - unit:BTU_IT, - unit:BTU_MEAN, - unit:BTU_TH, - unit:CAL_15_DEG_C, - unit:CAL_20DEG_C, - unit:CAL_IT, - unit:CAL_MEAN, - unit:CAL_TH, - unit:GigaJ, - unit:J, - unit:KiloBTU_IT, - unit:KiloBTU_TH, - unit:KiloCAL, - unit:KiloCAL_IT, - unit:KiloCAL_Mean, - unit:KiloCAL_TH, - unit:KiloJ, - unit:MegaJ, - unit:NanoJ, - unit:PicoJ, - unit:THERM_EC, - unit:THERM_US, - unit:THM_EEC, - unit:THM_US, - unit:TON_FG-HR ; - skos:broader brick:Energy ; - skos:definition "Thermal Energy} is the portion of the thermodynamic or internal energy of a system that is responsible for the temperature of the system. From a macroscopic thermodynamic description, the thermal energy of a system is given by its constant volume specific heat capacity C(T), a temperature coefficient also called thermal capacity, at any given absolute temperature (T): (U_{thermal = C(T) \\cdot T)."@en ; - brick:hasQUDTReference qudtqk:ThermalEnergy . - brick:Thermal_Energy_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Energy Storage Tank"@en ; rdfs:subClassOf brick:Storage_Tank ; skos:definition "A Thermal Energy Storage (TES) tank is a specialized container for storing thermal energy, enabling more efficient heating and cooling by balancing supply and demand. It helps reduce operational costs and minimizes the need for larger equipment."@en ; sh:rule [ a sh:TripleRule ; @@ -37946,6 +38986,7 @@ brick:Thermal_Energy_Storage_Tank a owl:Class, brick:Thermally_Activated_Building_System_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Thermally Activated Building System Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Radiant_Panel ; owl:equivalentClass brick:TABS_Panel ; @@ -37988,6 +39029,7 @@ brick:Thermally_Activated_Building_System_Panel a owl:Class, brick:Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Time Parameter"@en ; rdfs:subClassOf brick:PID_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Parameter ; @@ -38007,6 +39049,7 @@ brick:Time_Parameter a owl:Class, brick:Time_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Time Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Point ; @@ -38023,10 +39066,11 @@ brick:Time_Setpoint a owl:Class, brick:hasAssociatedTag tag:Point, tag:Setpoint, tag:Time ; - brick:hasQuantity brick:Time . + brick:hasQuantity qudtqk:Time . brick:Tolerance_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Tolerance Parameter"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "difference between upper and lower limits of size for a given nominal dimension or value."@en ; sh:rule [ a sh:TripleRule ; @@ -38047,6 +39091,7 @@ brick:Tolerance_Parameter a owl:Class, brick:Transfer_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Transfer Switch"@en ; rdfs:subClassOf brick:Switchgear ; skos:definition "An electrical switch that switches a load between two (or more) sources."@en ; sh:rule [ a sh:TripleRule ; @@ -38067,6 +39112,7 @@ brick:Transfer_Switch a owl:Class, brick:Unoccupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Cooling Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Cooling_Discharge_Air_Flow_Setpoint, brick:Cooling_Supply_Air_Flow_Setpoint, brick:Unoccupied_Supply_Air_Flow_Setpoint ; @@ -38115,6 +39161,7 @@ brick:Unoccupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class, brick:Unoccupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Heating Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Heating_Discharge_Air_Flow_Setpoint, brick:Heating_Supply_Air_Flow_Setpoint, brick:Unoccupied_Supply_Air_Flow_Setpoint ; @@ -38163,6 +39210,7 @@ brick:Unoccupied_Heating_Supply_Air_Flow_Setpoint a owl:Class, brick:Unoccupied_Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Mode Status"@en ; rdfs:subClassOf brick:Mode_Status ; sh:rule [ a sh:TripleRule ; sh:object tag:Mode ; @@ -38187,6 +39235,7 @@ brick:Unoccupied_Mode_Status a owl:Class, brick:Unoccupied_Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Supply Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Temperature_Setpoint, brick:Unoccupied_Air_Temperature_Setpoint ; owl:equivalentClass brick:Unoccupied_Discharge_Air_Temperature_Setpoint ; @@ -38230,10 +39279,11 @@ brick:Unoccupied_Supply_Air_Temperature_Setpoint a owl:Class, tag:Supply, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Variable_Air_Volume_Box_With_Reheat a owl:Class, sh:NodeShape ; + rdfs:label "Variable Air Volume Box With Reheat"@en ; rdfs:subClassOf brick:Variable_Air_Volume_Box ; owl:equivalentClass brick:RVAV ; skos:definition "A VAV box with a reheat coil mounted on the discharge end of the unit that can heat the air delivered to a zone"@en ; @@ -38268,18 +39318,9 @@ brick:Variable_Air_Volume_Box_With_Reheat a owl:Class, tag:Variable, tag:Volume . -brick:Voltage_Imbalance a brick:Quantity ; - rdfs:label "VoltageImbalance"@en ; - qudt:applicableUnit unit:PERCENT ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Dimensionless ; - skos:definition "The percent deviation from average voltage", - "The percent deviation from average voltage"@en ; - skos:related brick:Voltage . - brick:Water_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Water Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint ; skos:definition "Sets the target water differential pressure between an upstream and downstream point in a water pipe or conduit"@en ; sh:rule [ a sh:TripleRule ; @@ -38312,6 +39353,7 @@ brick:Water_Differential_Pressure_Setpoint a owl:Class, brick:Water_Heater a owl:Class, sh:NodeShape ; + rdfs:label "Water Heater"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "An apparatus for heating and usually storing hot water"@en ; @@ -38333,6 +39375,7 @@ brick:Water_Heater a owl:Class, brick:Water_Level_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Level Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the height/level of water in some container"@en ; sh:property [ a sh:PropertyShape ; @@ -38366,6 +39409,7 @@ brick:Water_Level_Sensor a owl:Class, brick:Water_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Measures the pressure exerted by water in a system."@en ; sh:rule [ a sh:TripleRule ; @@ -38388,10 +39432,11 @@ brick:Water_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Water ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Water_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Water Temperature Alarm"@en ; rdfs:subClassOf brick:Temperature_Alarm, brick:Water_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with temperature of water."@en ; @@ -38416,8 +39461,19 @@ brick:Water_Temperature_Alarm a owl:Class, tag:Temperature, tag:Water . +brick:Wet_Bulb_Temperature a brick:Quantity ; + rdfs:label "Wet Bulb Temperature"@en ; + qudt:applicableUnit unit:DEG_C, + unit:DEG_F, + unit:K ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Temperature ; + skos:definition "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)", + "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)"@en . + brick:Wind_Direction a brick:Quantity ; - rdfs:label "Wind_Direction"@en ; + rdfs:label "Wind Direction"@en ; qudt:applicableUnit unit:ARCMIN, unit:ARCSEC, unit:DEG, @@ -38437,6 +39493,7 @@ brick:Wind_Direction a brick:Quantity ; brick:Wing a owl:Class, sh:NodeShape ; + rdfs:label "Wing"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "A wing is part of a building – or any feature of a building – that is subordinate to the main, central structure."@en ; @@ -38456,71 +39513,72 @@ brick:Wing a owl:Class, brick:aggregationFunction a owl:AsymmetricProperty, owl:DatatypeProperty, - owl:IrreflexiveProperty ; - rdfs:label "aggregationFunction"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:IrreflexiveProperty, + brick:Relationship ; + rdfs:label "aggregationFunction"@en . brick:hasAssociatedTag a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has associated tag"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:isAssociatedWith ; skos:definition "The class is associated with the given tag"@en . brick:hasSubMeter a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "has sub-meter"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:isSubMeterOf ; skos:definition "Indicates a submeter of this meter"@en . brick:isAssociatedWith a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Is associated with"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:hasAssociatedTag ; skos:definition "The tag is associated with the given class"@en . brick:isLocationOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Is location of"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:isLocationOf ; owl:inverseOf brick:hasLocation ; skos:definition "Subject is the physical location encapsulating the object"@en . brick:isSubMeterOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "is sub-meter of"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:hasSubMeter ; skos:definition "Indicates the parent for which this meter is a submeter"@en . brick:isTagOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Is tag of"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "Is tag of"@en . brick:latitude a owl:DatatypeProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Latitude"@en ; - rdfs:subPropertyOf sdo:latitude, - brick:Relationship . + rdfs:subPropertyOf sdo:latitude . brick:longitude a owl:DatatypeProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Longitude"@en ; - rdfs:subPropertyOf sdo:longitude, - brick:Relationship . + rdfs:subPropertyOf sdo:longitude . brick:powerComplexity brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; + brick:deprecationMitigationMessage "powerComplexity is deprecated in favor of electricalComplexPower because the latter is more clear" ; + brick:deprecationMitigationRule [ a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; sh:construct """ CONSTRUCT { @@ -38529,10 +39587,10 @@ brick:powerComplexity brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; $this brick:powerComplexity ?prop . }""" ; sh:prefixes ] ; - sh:targetSubjectsOf brick:powerComplexity ] ; - brick:deprecationMitigationMessage "powerComplexity is deprecated in favor of electricalComplexPower because the latter is more clear" ], + sh:targetSubjectsOf brick:powerComplexity ] ], [ brick:deprecatedInVersion "1.3.1" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; + brick:deprecationMitigationMessage "powerComplexity is deprecated in favor of electricalComplexPower because the latter is more clear" ; + brick:deprecationMitigationRule [ a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; sh:construct """ CONSTRUCT { @@ -38541,11 +39599,11 @@ brick:powerComplexity brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; $this brick:powerComplexity ?prop . }""" ; sh:prefixes ] ; - sh:targetSubjectsOf brick:powerComplexity ] ; - brick:deprecationMitigationMessage "powerComplexity is deprecated in favor of electricalComplexPower because the latter is more clear" ] . + sh:targetSubjectsOf brick:powerComplexity ] ] . brick:powerFlow brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; + brick:deprecationMitigationMessage "powerFlow is deprecated in favor of electricalFlow as the latter is more clear" ; + brick:deprecationMitigationRule [ a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; sh:construct """ CONSTRUCT { @@ -38554,10 +39612,10 @@ brick:powerFlow brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; $this brick:powerFlow ?prop . }""" ; sh:prefixes ] ; - sh:targetSubjectsOf brick:powerFlow ] ; - brick:deprecationMitigationMessage "powerFlow is deprecated in favor of electricalFlow as the latter is more clear" ], + sh:targetSubjectsOf brick:powerFlow ] ], [ brick:deprecatedInVersion "1.3.1" ; - brick:deprecationMigitationRule [ a sh:NodeShape ; + brick:deprecationMitigationMessage "powerFlow is deprecated in favor of electricalFlow as the latter is more clear" ; + brick:deprecationMitigationRule [ a sh:NodeShape ; sh:rule [ a sh:SPARQLRule ; sh:construct """ CONSTRUCT { @@ -38566,10 +39624,10 @@ brick:powerFlow brick:deprecation [ brick:deprecatedInVersion "1.3.1" ; $this brick:powerFlow ?prop . }""" ; sh:prefixes ] ; - sh:targetSubjectsOf brick:powerFlow ] ; - brick:deprecationMitigationMessage "powerFlow is deprecated in favor of electricalFlow as the latter is more clear" ] . + sh:targetSubjectsOf brick:powerFlow ] ] . -brick:thermalTransmittance a brick:EntityProperty ; +brick:thermalTransmittance a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Thermal transmittance"@en ; rdfs:seeAlso "https://www.iso.org/obp/ui/#iso:std:iso:13789:ed-3:v1:en" ; skos:definition "The area-weighted average heat transfer coefficient (commonly referred to as a U-value)" . @@ -38645,15 +39703,15 @@ bsh:ThermalTransmittanceShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:in ( unit:BTU_IT unit:W-PER-M2-K ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ], + sh:or bsh:NumericValue ; + sh:path brick:value ], [ a sh:PropertyShape ; + sh:in ( unit:BTU_IT unit:W-PER-M2-K ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ] . + sh:path brick:hasUnit ] . bsh:hasPointShape a sh:PropertyShape ; sh:class brick:Point ; @@ -38811,6 +39869,9 @@ tag:Communication a brick:Tag ; tag:Compressor a brick:Tag ; rdfs:label "Compressor"@en . +tag:Concentration a brick:Tag ; + rdfs:label "Concentration"@en . + tag:Concessions a brick:Tag ; rdfs:label "Concessions"@en . @@ -39198,9 +40259,6 @@ tag:Rack a brick:Tag ; tag:Radiation a brick:Tag ; rdfs:label "Radiation"@en . -tag:Radioactivity a brick:Tag ; - rdfs:label "Radioactivity"@en . - tag:Radon a brick:Tag ; rdfs:label "Radon"@en . @@ -39399,18 +40457,43 @@ rec:Lounge a rdf:Class, rdfs:comment "This concept definition comes from the Brick distribution until it is added in the REC ontology Turtle distribution." ; rdfs:subClassOf rec:Room . +rec:batteryPercentage a owl:DatatypeProperty ; + rdfs:label "batteryPercentage"@en . + +rec:generation a owl:DatatypeProperty ; + rdfs:label "generation"@en . + +rec:heightRUs a owl:DatatypeProperty ; + rdfs:label "heightRUs"@en . + rec:isLocationOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, owl:ObjectProperty ; rdfs:label "isLocationOf"@en . +rec:numberOfPorts a owl:DatatypeProperty ; + rdfs:label "numberOfPorts"@en . + +rec:poeType a owl:DatatypeProperty ; + rdfs:label "poeType"@en . + +rec:portSpeed a owl:DatatypeProperty ; + rdfs:label "portSpeed"@en . + rec:sourcePoint a owl:AsymmetricProperty, owl:IrreflexiveProperty, owl:ObjectProperty ; rdfs:label "sourcePoint"@en . +rec:standard a owl:DatatypeProperty ; + rdfs:label "standard"@en . + +rec:wifiSignalStrength a owl:DatatypeProperty ; + rdfs:label "wifiSignalStrength"@en . + brick:Air_Diffuser a owl:Class, sh:NodeShape ; + rdfs:label "Air Diffuser"@en ; rdfs:subClassOf brick:Terminal_Unit ; skos:definition "A device that is a component of the air distribution system that controls the delivery of conditioned and/or ventilating air into a room"@en ; sh:rule [ a sh:TripleRule ; @@ -39431,6 +40514,7 @@ brick:Air_Diffuser a owl:Class, brick:Air_Flow_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Alarm"@en ; rdfs:subClassOf brick:Air_Alarm ; skos:definition "An alarm related to air flow."@en ; sh:rule [ a sh:TripleRule ; @@ -39456,6 +40540,7 @@ brick:Air_Flow_Alarm a owl:Class, brick:Air_Plenum a owl:Class, sh:NodeShape ; + rdfs:label "Air Plenum"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A component of the HVAC the receives air from the air handling unit or room to distribute or exhaust to or from the building"@en ; sh:rule [ a sh:TripleRule ; @@ -39476,6 +40561,7 @@ brick:Air_Plenum a owl:Class, brick:Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Air Temperature Alarm"@en ; rdfs:subClassOf brick:Air_Alarm, brick:Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of air."@en ; @@ -39502,6 +40588,7 @@ brick:Air_Temperature_Alarm a owl:Class, brick:Air_Velocity_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Velocity Pressure Sensor"@en ; rdfs:subClassOf brick:Velocity_Pressure_Sensor ; skos:definition "Measures the difference between total air pressure and static air pressure."@en ; sh:rule [ a sh:TripleRule ; @@ -39524,10 +40611,11 @@ brick:Air_Velocity_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Velocity ; - brick:hasQuantity brick:Velocity_Pressure . + brick:hasQuantity qudtqk:DynamicPressure . brick:Baseboard_Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Baseboard Radiator"@en ; rdfs:subClassOf brick:Radiator ; skos:definition "Steam, hydronic, or electric heating device located at or near the floor."@en ; sh:rule [ a sh:TripleRule ; @@ -39548,6 +40636,7 @@ brick:Baseboard_Radiator a owl:Class, brick:Booster_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Booster Pump"@en ; rdfs:subClassOf brick:Pump ; skos:definition "Used to increase the pressure and flow of a fluid, typically water, in a system to ensure adequate supply where needed."@en ; sh:rule [ a sh:TripleRule ; @@ -39568,6 +40657,7 @@ brick:Booster_Pump a owl:Class, brick:Building a owl:Class, sh:NodeShape ; + rdfs:label "Building"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "An independent unit of the built environment with a characteristic spatial structure, intended to serve at least one function or user activity [ISO 12006-2:2013]"@en ; @@ -39592,15 +40682,18 @@ brick:Building a owl:Class, brick:isReplacedBy rec:Building . brick:Bypass_Air a brick:Substance ; + rdfs:label "Bypass Air"@en ; skos:broader brick:Air ; skos:definition "air in a bypass duct, used to relieve static pressure"@en . brick:Bypass_Water a brick:Substance ; + rdfs:label "Bypass Water"@en ; skos:broader brick:Water ; skos:definition "Water that circumvents a piece of equipment or system"@en . brick:Circulator_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Circulator Pump"@en ; rdfs:subClassOf brick:Pump ; skos:definition "Used to move hot or cold water in a closed circuit, ensuring continuous fluid flow."@en ; sh:rule [ a sh:TripleRule ; @@ -39620,12 +40713,14 @@ brick:Circulator_Pump a owl:Class, tag:Pump . brick:Collection_Basin_Water a brick:Substance ; + rdfs:label "Collection Basin Water"@en ; rdfs:seeAlso ; skos:broader brick:Water ; skos:definition "Water transiently collected and directed to the sump or pump suction line, typically integral with a cooling tower"@en . brick:Computer_Room_Air_Conditioning a owl:Class, sh:NodeShape ; + rdfs:label "Computer Room Air Conditioning"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:CRAC ; skos:definition "A device that monitors and maintains the temperature, air distribution and humidity in a network room or data center."@en ; @@ -39662,6 +40757,7 @@ brick:Computer_Room_Air_Conditioning a owl:Class, brick:Controller a owl:Class, sh:NodeShape ; + rdfs:label "Controller"@en ; rdfs:subClassOf brick:ICT_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Controller ; @@ -39681,6 +40777,7 @@ brick:Controller a owl:Class, brick:Cooling_Only_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Only Condensing Unit"@en ; rdfs:subClassOf brick:Condensing_Unit ; sh:rule [ a sh:TripleRule ; sh:object tag:Condenser ; @@ -39710,6 +40807,7 @@ brick:Cooling_Only_Condensing_Unit a owl:Class, brick:Current_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Current Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Senses the amperes of electrical current passing through the sensor"@en ; sh:property [ a sh:PropertyShape ; @@ -39736,11 +40834,13 @@ brick:Current_Sensor a owl:Class, brick:hasQuantity qudtqk:ElectricCurrent . brick:Deionized_Water a brick:Substance ; + rdfs:label "Deionized Water"@en ; skos:broader brick:Water ; skos:definition "Water which has been purified by removing its ions (constituting the majority of non-particulate contaminants)"@en . brick:Demand_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Demand Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the amount of power consumed by the use of some process; typically found by multiplying the tonnage of a unit (e.g. RTU) by the efficiency rating in kW/ton"@en ; sh:property [ a sh:PropertyShape ; @@ -39768,6 +40868,7 @@ brick:Demand_Sensor a owl:Class, brick:Differential_Pressure_Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Load Shed Status"@en ; rdfs:subClassOf brick:Load_Shed_Status, brick:Pressure_Status ; sh:rule [ a sh:TripleRule ; @@ -39803,6 +40904,7 @@ brick:Differential_Pressure_Load_Shed_Status a owl:Class, brick:Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Pressure_Sensor ; skos:definition "Measures the difference between two applied pressures"@en ; sh:rule [ a sh:TripleRule ; @@ -39829,6 +40931,7 @@ brick:Differential_Pressure_Sensor a owl:Class, brick:Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Differential_Setpoint ; skos:definition "Sets differential pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -39855,6 +40958,7 @@ brick:Differential_Pressure_Setpoint a owl:Class, brick:Discharge_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; owl:equivalentClass brick:Supply_Air_Static_Pressure_Setpoint ; skos:definition "Sets static pressure of discharge air"@en ; @@ -39862,6 +40966,7 @@ brick:Discharge_Air_Static_Pressure_Setpoint a owl:Class, brick:Discharge_Air_Temperature_Cooling_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Cooling Setpoint"@en ; rdfs:subClassOf brick:Cooling_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_Cooling_Setpoint ; @@ -39870,6 +40975,7 @@ brick:Discharge_Air_Temperature_Cooling_Setpoint a owl:Class, brick:Discharge_Air_Temperature_Heating_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Heating Setpoint"@en ; rdfs:subClassOf brick:Heating_Temperature_Setpoint, brick:Supply_Air_Temperature_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_Heating_Setpoint ; @@ -39878,12 +40984,14 @@ brick:Discharge_Air_Temperature_Heating_Setpoint a owl:Class, brick:Discharge_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Discharge Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; owl:equivalentClass brick:Supply_Air_Temperature_Setpoint ; skos:definition "Sets temperature of discharge air"@en ; brick:aliasOf brick:Supply_Air_Temperature_Setpoint . brick:Discharge_Water_Flow_Sensor a owl:Class ; + rdfs:label "Discharge Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -39892,6 +41000,7 @@ brick:Discharge_Water_Flow_Sensor a owl:Class ; brick:Disconnect_Switch a owl:Class, sh:NodeShape ; + rdfs:label "Disconnect Switch"@en ; rdfs:subClassOf brick:Switchgear ; owl:equivalentClass brick:Isolation_Switch ; skos:definition "A disconnect switch performs the task of manually cutting or reconnecting power from an electrical supply by creating or closing an air insulation gap between two conduction points. Also known as an 'Isolation Switch'."@en ; @@ -39914,6 +41023,7 @@ brick:Disconnect_Switch a owl:Class, brick:Domestic_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Domestic Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; sh:rule [ a sh:TripleRule ; sh:object tag:Domestic ; @@ -39945,10 +41055,11 @@ brick:Domestic_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Duration_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Duration Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the duration of a phenomenon or event"@en ; sh:property [ a sh:PropertyShape ; @@ -39976,6 +41087,7 @@ brick:Duration_Sensor a owl:Class, brick:Electrical_Room a owl:Class, sh:NodeShape ; + rdfs:label "Electrical Room"@en ; rdfs:subClassOf brick:Service_Room ; owl:deprecated true ; skos:definition "A class of service rooms that house electrical equipment for a building"@en ; @@ -40010,6 +41122,7 @@ brick:Electrical_Room a owl:Class, brick:Emergency_Wash_Station a owl:Class, sh:NodeShape ; + rdfs:label "Emergency Wash Station"@en ; rdfs:subClassOf brick:Safety_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Emergency ; @@ -40039,6 +41152,7 @@ brick:Emergency_Wash_Station a owl:Class, brick:Enclosed_Office a owl:Class, sh:NodeShape ; + rdfs:label "Enclosed Office"@en ; rdfs:subClassOf brick:Office ; owl:deprecated true ; skos:definition "A space for individuals to work with walls and a door"@en ; @@ -40073,6 +41187,7 @@ brick:Enclosed_Office a owl:Class, brick:Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Flow Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the rate of flow of some substance"@en ; sh:property [ a sh:PropertyShape ; @@ -40099,6 +41214,7 @@ brick:Flow_Sensor a owl:Class, brick:hasQuantity qudtqk:VolumeFlowRate . brick:Fluid a brick:Substance ; + rdfs:label "Fluid"@en ; skos:definition "substance, as a liquid or gas, that is capable of flowing and that changes shape when acted on by a force."@en ; skos:narrower brick:Gas, brick:Liquid, @@ -40106,6 +41222,7 @@ brick:Fluid a brick:Substance ; brick:Gain_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Gain Parameter"@en ; rdfs:subClassOf brick:PID_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Gain ; @@ -40128,16 +41245,9 @@ brick:Gain_Parameter a owl:Class, tag:Parameter, tag:Point . -brick:GrainsOfMoisture a brick:Quantity ; - rdfs:label "GrainsOfMoisture"@en ; - qudt:applicableUnit unit:GRAIN ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Mass ; - skos:definition "Mass of moisture per pround of air, measured in grains of water" . - brick:HVAC_Valve a owl:Class, sh:NodeShape ; + rdfs:label "HVAC Valve"@en ; rdfs:subClassOf brick:HVAC_Equipment, brick:Valve ; sh:rule [ a sh:TripleRule ; @@ -40158,6 +41268,7 @@ brick:HVAC_Valve a owl:Class, brick:Heat_Pump_Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Heat Pump Condensing Unit"@en ; rdfs:subClassOf brick:Condensing_Unit ; skos:definition "An outdoor HVAC unit that functions in both heating and cooling modes. It includes a reversing valve along with a condenser coil and compressor, enabling the switch between cooling and heating by reversing refrigerant flow."@en ; sh:rule [ a sh:TripleRule ; @@ -40193,7 +41304,9 @@ brick:Heat_Pump_Condensing_Unit a owl:Class, brick:Heating_Valve a owl:Class, sh:NodeShape ; - rdfs:subClassOf brick:HVAC_Equipment ; + rdfs:label "Heating Valve"@en ; + rdfs:subClassOf brick:HVAC_Equipment, + brick:Valve ; skos:definition "A valve that controls air temperature by modulating the amount of hot water flowing through a heating coil"@en ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -40213,6 +41326,7 @@ brick:Heating_Valve a owl:Class, brick:High_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "High Temperature Alarm"@en ; rdfs:subClassOf brick:Temperature_Alarm ; skos:definition "An alarm that indicates high temperature."@en ; sh:rule [ a sh:TripleRule ; @@ -40238,6 +41352,7 @@ brick:High_Temperature_Alarm a owl:Class, brick:Hot_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -40269,6 +41384,7 @@ brick:Hot_Water_Flow_Setpoint a owl:Class, brick:hasSubstance brick:Hot_Water . brick:Hot_Water_Supply_Temperature_Sensor a owl:Class ; + rdfs:label "Hot Water Supply Temperature Sensor"@en ; rdfs:subClassOf brick:Supply_Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -40277,6 +41393,7 @@ brick:Hot_Water_Supply_Temperature_Sensor a owl:Class ; brick:Hot_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Sets the temperature of hot water"@en ; sh:rule [ a sh:TripleRule ; @@ -40304,11 +41421,12 @@ brick:Hot_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Hot_Water . brick:Humidity_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Parameter"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "Parameters relevant to humidity-related systems and points"@en ; sh:rule [ a sh:TripleRule ; @@ -40329,6 +41447,7 @@ brick:Humidity_Parameter a owl:Class, brick:ICT_Hardware a owl:Class, sh:NodeShape ; + rdfs:label "ICT Hardware"@en ; rdfs:subClassOf brick:ICT_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -40348,6 +41467,7 @@ brick:ICT_Hardware a owl:Class, brick:Load_Shed_Command a owl:Class, sh:NodeShape ; + rdfs:label "Load Shed Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls load shedding behavior provided by a control system"@en ; sh:rule [ a sh:TripleRule ; @@ -40373,6 +41493,7 @@ brick:Load_Shed_Command a owl:Class, brick:Load_Shed_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Load Shed Setpoint"@en ; rdfs:subClassOf brick:Load_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Load ; @@ -40398,6 +41519,7 @@ brick:Load_Shed_Setpoint a owl:Class, brick:Load_Shed_Status a owl:Class, sh:NodeShape ; + rdfs:label "Load Shed Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a load shedding policy is in effect"@en ; sh:rule [ a sh:TripleRule ; @@ -40423,6 +41545,7 @@ brick:Load_Shed_Status a owl:Class, brick:Loop a owl:Class, sh:NodeShape ; + rdfs:label "Loop"@en ; rdfs:subClassOf brick:Collection, rec:Collection ; skos:definition "A collection of connected equipment; part of a System"@en ; @@ -40447,6 +41570,7 @@ brick:Loop a owl:Class, brick:Low_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Low Temperature Alarm"@en ; rdfs:subClassOf brick:Temperature_Alarm ; skos:definition "An alarm that indicates low temperature."@en ; sh:rule [ a sh:TripleRule ; @@ -40470,8 +41594,20 @@ brick:Low_Temperature_Alarm a owl:Class, tag:Point, tag:Temperature . +brick:Measurable a owl:Class, + sh:NodeShape ; + rdfs:label "Measurable"@en ; + rdfs:subClassOf brick:Class, + brick:Entity ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Measurable ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Measurable . + brick:Media_Room a owl:Class, sh:NodeShape ; + rdfs:label "Media Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces related to the creation of media"@en ; @@ -40501,6 +41637,7 @@ brick:Media_Room a owl:Class, brick:Mode_Command a owl:Class, sh:NodeShape ; + rdfs:label "Mode Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Controls the operating mode of a device or controller"@en ; sh:rule [ a sh:TripleRule ; @@ -40520,11 +41657,14 @@ brick:Mode_Command a owl:Class, tag:Point . brick:Occupancy a brick:Quantity ; + rdfs:label "Occupancy"@en ; + qudt:hasDimensionVector ; skos:narrower brick:Occupancy_Count, brick:Occupancy_Percentage . brick:Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "Off Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if a control loop, relay or equipment is off"@en ; sh:rule [ a sh:TripleRule ; @@ -40545,6 +41685,7 @@ brick:Off_Status a owl:Class, brick:Office a owl:Class, sh:NodeShape ; + rdfs:label "Office"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of rooms dedicated for work or study"@en ; @@ -40574,6 +41715,7 @@ brick:Office a owl:Class, brick:Outside_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "Measures the temperature of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -40601,38 +41743,42 @@ brick:Outside_Air_Temperature_Sensor a owl:Class, tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Outside_Air . brick:PM10_Concentration a brick:Quantity ; - rdfs:label "PM10Concentration"@en ; + rdfs:label "PM10 Concentration"@en ; qudt:applicableUnit unit:MicroGM-PER-M3, unit:PPB, unit:PPM ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Air_Quality ; skos:definition "The concentration of particulates with diameter of 10 microns or less in air" . brick:PM1_Concentration a brick:Quantity ; - rdfs:label "PM1Concentration"@en ; + rdfs:label "PM1 Concentration"@en ; qudt:applicableUnit unit:MicroGM-PER-M3, unit:PPB, unit:PPM ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Air_Quality ; skos:definition "The concentration of particulates with diameter of 1 microns or less in air" . brick:PM2.5_Concentration a brick:Quantity ; - rdfs:label "PM2.5Concentration"@en ; + rdfs:label "PM2.5 Concentration"@en ; qudt:applicableUnit unit:MicroGM-PER-M3, unit:PPB, unit:PPM ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; skos:broader brick:Air_Quality ; skos:definition "The concentration of particulates with diameter of 2.5 microns or less in air" . brick:PV_Panel a owl:Class, sh:NodeShape ; + rdfs:label "PV Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Equipment ; skos:definition "An integrated assembly of interconnected photovoltaic cells designed to deliver a selected level of working voltage and current at its output terminals packaged for protection against environment degradation and suited for incorporation in photovoltaic power systems."@en ; @@ -40659,27 +41805,9 @@ brick:PV_Panel a owl:Class, tag:Panel, tag:Solar . -brick:Phasor_Angle a brick:Quantity ; - rdfs:label "PhasorAngle"@en ; - qudt:applicableUnit unit:ARCMIN, - unit:ARCSEC, - unit:DEG, - unit:GON, - unit:GRAD, - unit:MIL, - unit:MicroRAD, - unit:MilliARCSEC, - unit:MilliRAD, - unit:RAD, - unit:REV ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:PlaneAngle ; - skos:definition "Angle component of a phasor" ; - skos:related brick:Phasor . - brick:Position_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Position Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the current position of a component in terms of a fraction of its full range of motion"@en ; sh:property [ a sh:PropertyShape ; @@ -40707,6 +41835,7 @@ brick:Position_Sensor a owl:Class, brick:Pressure_Status a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates if pressure is within expected bounds"@en ; sh:rule [ a sh:TripleRule ; @@ -40724,10 +41853,11 @@ brick:Pressure_Status a owl:Class, brick:hasAssociatedTag tag:Point, tag:Pressure, tag:Status ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Pump a owl:Class, sh:NodeShape ; + rdfs:label "Pump"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Machine for imparting energy to a fluid, causing it to do work, drawing a fluid into itself through an entrance port, and forcing the fluid out through an exhaust port."@en ; sh:rule [ a sh:TripleRule ; @@ -40743,6 +41873,7 @@ brick:Pump a owl:Class, brick:Radiant_Panel_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Radiant Panel Temperature Sensor"@en ; rdfs:subClassOf brick:Temperature_Sensor ; skos:definition "Measures the temperature of the radiant panel of the radiant heating and cooling HVAC system."@en ; sh:property [ sh:class brick:Radiant_Panel ; @@ -40772,10 +41903,11 @@ brick:Radiant_Panel_Temperature_Sensor a owl:Class, tag:Radiant, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Radiant_Panel_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Radiant Panel Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "Sets temperature of radiant panel."@en ; sh:rule [ a sh:TripleRule ; @@ -40803,14 +41935,11 @@ brick:Radiant_Panel_Temperature_Setpoint a owl:Class, tag:Radiant, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . - -brick:Radioactivity_Concentration a brick:Quantity ; - skos:broader brick:Air_Quality ; - skos:narrower brick:Radon_Concentration . + brick:hasQuantity qudtqk:Temperature . brick:Refrigerant_Metering_Device a owl:Class, sh:NodeShape ; + rdfs:label "Refrigerant Metering Device"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Responsible for regulating refrigerant flow, which includes mechanisms like TXVs, EXVs, and capillary tubes"@en ; sh:rule [ a sh:TripleRule ; @@ -40831,6 +41960,7 @@ brick:Refrigerant_Metering_Device a owl:Class, brick:Reset_Command a owl:Class, sh:NodeShape ; + rdfs:label "Reset Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Commands that reset a flag, property or value to its default"@en ; sh:rule [ a sh:TripleRule ; @@ -40851,6 +41981,7 @@ brick:Reset_Command a owl:Class, brick:Return_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Return Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "The target temperature for return air, often used as an approximation of zone air temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -40878,10 +42009,11 @@ brick:Return_Air_Temperature_Setpoint a owl:Class, tag:Return, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Return_Air . brick:Return_Water_Flow_Sensor a owl:Class ; + rdfs:label "Return Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -40889,6 +42021,7 @@ brick:Return_Water_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Entering_Water_Flow_Sensor . brick:Return_Water_Temperature_Setpoint a owl:Class ; + rdfs:label "Return Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -40897,6 +42030,7 @@ brick:Return_Water_Temperature_Setpoint a owl:Class ; brick:Room_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Room Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Sets temperature of room air"@en ; sh:rule [ a sh:TripleRule ; @@ -40924,11 +42058,12 @@ brick:Room_Air_Temperature_Setpoint a owl:Class, tag:Room, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Air . brick:Safety_System a owl:Class, sh:NodeShape ; + rdfs:label "Safety System"@en ; rdfs:subClassOf brick:System ; sh:rule [ a sh:TripleRule ; sh:object tag:Safety ; @@ -40943,6 +42078,7 @@ brick:Safety_System a owl:Class, brick:Service_Room a owl:Class, sh:NodeShape ; + rdfs:label "Service Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces related to the operations of building subsystems, e.g. HVAC, electrical, IT, plumbing, etc"@en ; @@ -40972,6 +42108,7 @@ brick:Service_Room a owl:Class, brick:Speed_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Speed Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the magnitude of velocity of some form of movement"@en ; sh:property [ a sh:PropertyShape ; @@ -40999,6 +42136,7 @@ brick:Speed_Sensor a owl:Class, brick:Static_Pressure_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -41038,6 +42176,7 @@ brick:Static_Pressure_Proportional_Band_Parameter a owl:Class, brick:Static_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Static_Pressure_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -41073,6 +42212,7 @@ brick:Static_Pressure_Setpoint_Limit a owl:Class, brick:Step_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Step Parameter"@en ; rdfs:subClassOf brick:PID_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Parameter ; @@ -41092,6 +42232,7 @@ brick:Step_Parameter a owl:Class, brick:Supply_Air_Plenum a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Plenum"@en ; rdfs:subClassOf brick:Air_Plenum ; owl:equivalentClass brick:Discharge_Air_Plenum ; skos:definition "A component of the HVAC the receives air from the air handling unit to distribute to the building"@en ; @@ -41122,6 +42263,7 @@ brick:Supply_Air_Plenum a owl:Class, tag:Supply . brick:Supply_Water_Flow_Sensor a owl:Class ; + rdfs:label "Supply Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -41129,7 +42271,7 @@ brick:Supply_Water_Flow_Sensor a owl:Class ; brick:isReplacedBy brick:Leaving_Water_Flow_Sensor . brick:TVOC_Concentration a brick:Quantity ; - rdfs:label "TVOCConcentration"@en ; + rdfs:label "TVOC Concentration"@en ; qudt:applicableUnit unit:MicroGM-PER-M3, unit:PPB, unit:PPM ; @@ -41141,6 +42283,7 @@ brick:TVOC_Concentration a brick:Quantity ; brick:Tank a owl:Class, sh:NodeShape ; + rdfs:label "Tank"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "A container designed to hold or store fluids for various applications within a system."@en ; sh:rule [ a sh:TripleRule ; @@ -41156,6 +42299,7 @@ brick:Tank a owl:Class, brick:Thermal_Expansion_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Thermal Expansion Tank"@en ; rdfs:subClassOf brick:Tank ; skos:definition "A tank designed to accommodate the expansion and contraction of a fluid, typically water, in a closed heating or cooling system."@en ; sh:rule [ a sh:TripleRule ; @@ -41171,6 +42315,7 @@ brick:Thermal_Expansion_Tank a owl:Class, brick:Video_Surveillance_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Video Surveillance Equipment"@en ; rdfs:subClassOf brick:Security_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -41193,27 +42338,9 @@ brick:Video_Surveillance_Equipment a owl:Class, tag:Surveillance, tag:Video . -brick:Voltage a brick:Quantity ; - qudt:applicableUnit unit:FemtoV, - unit:GigaV, - unit:KiloV, - unit:MegaV, - unit:MicroV, - unit:MilliV, - unit:NanoV, - unit:PicoV, - unit:PlanckVolt, - unit:TeraV, - unit:V, - unit:V_Ab, - unit:V_Stat ; - skos:definition "Voltage, also referred to as Electric Tension, is the difference between electrical potentials of two points. For an electric field within a medium, (U_{ab} = - \\int_{r_a}^{r_b} E . {dr}), where (E) is electric field strength. For an irrotational electric field, the voltage is independent of the path between the two points (a) and (b)."@en ; - skos:related brick:Voltage_Angle, - brick:Voltage_Imbalance ; - brick:hasQUDTReference qudtqk:Voltage . - brick:Voltage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Voltage Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the voltage of an electrical device or object"@en ; sh:property [ a sh:PropertyShape ; @@ -41241,6 +42368,7 @@ brick:Voltage_Sensor a owl:Class, brick:Water_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Differential_Pressure_Sensor ; skos:definition "Measures the difference in water pressure between two points in a system."@en ; sh:rule [ a sh:TripleRule ; @@ -41272,6 +42400,7 @@ brick:Water_Differential_Pressure_Sensor a owl:Class, brick:Water_Level_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Water Level Alarm"@en ; rdfs:subClassOf brick:Water_Alarm ; skos:definition "An alarm that indicates a high or low water level e.g. in a basin"@en ; sh:rule [ a sh:TripleRule ; @@ -41297,6 +42426,7 @@ brick:Water_Level_Alarm a owl:Class, brick:Water_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Water Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A meter that measures the usage or consumption of water"@en ; sh:rule [ a sh:TripleRule ; @@ -41318,6 +42448,7 @@ brick:Water_Meter a owl:Class, brick:Water_Pump a owl:Class, sh:NodeShape ; + rdfs:label "Water Pump"@en ; rdfs:subClassOf brick:Pump ; skos:definition "A pump that performs work on water"@en ; sh:rule [ a sh:TripleRule ; @@ -41338,6 +42469,7 @@ brick:Water_Pump a owl:Class, brick:Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Water System"@en ; rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ; skos:definition "The equipment, devices and conduits that handle the production and distribution of water in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -41351,20 +42483,9 @@ brick:Water_System a owl:Class, brick:hasAssociatedTag tag:System, tag:Water . -brick:Wet_Bulb_Temperature a brick:Quantity ; - rdfs:label "Wet_Bulb_Temperature"@en ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:K ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Temperature, - brick:Temperature ; - skos:definition "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)", - "The temperature read by a thermometer covered in water-soaked cloth (wet-bulb thermometer) over which air is passed. A wet-bulb thermometer indicates a temperature close to the true (thermodynamic) wet-bulb temperature. The wet-bulb temperature is the lowest temperature that can be reached under current ambient conditions by the evaporation of water only. DBT is the temperature that is usually thought of as air temperature, and it is the true thermodynamic temperature. It indicates the amount of heat in the air and is directly proportional to the mean kinetic energy of the air molecule. (https://en.wikipedia.org/wiki/Wet-bulb_temperature)"@en . - brick:Zone_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Zone Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; skos:definition "A physical or virtual sensor which represents the temperature of an HVAC Zone"@en ; sh:rule [ a sh:TripleRule ; @@ -41392,78 +42513,80 @@ brick:Zone_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Zone_Air . -brick:conversionEfficiency a brick:EntityProperty ; +brick:conversionEfficiency a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Conversion efficiency"@en ; skos:definition "The percent efficiency of the conversion process (usually to power or energy) carried out by the entity" . brick:deprecatedInVersion a owl:AsymmetricProperty, owl:DatatypeProperty, - owl:IrreflexiveProperty ; - rdfs:label "deprecatedInVersion"@en ; - rdfs:subPropertyOf brick:Relationship . - -brick:deprecation a brick:EntityProperty ; - rdfs:label "Deprecation Notice"@en ; - skos:definition "Marks a concept as deprecated" . + owl:IrreflexiveProperty, + brick:Relationship ; + rdfs:label "deprecatedInVersion"@en . brick:deprecationMitigationMessage a owl:AsymmetricProperty, owl:DatatypeProperty, - owl:IrreflexiveProperty ; - rdfs:label "deprecationMitigationMessage"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:IrreflexiveProperty, + brick:Relationship ; + rdfs:label "deprecationMitigationMessage"@en . brick:deprecationMitigationRule a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "deprecationMitigationRule"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "deprecationMitigationRule"@en . brick:hasSubstance a owl:AsymmetricProperty, - owl:IrreflexiveProperty ; - rdfs:label "Has Substance"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:IrreflexiveProperty, + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "Has Substance"@en . brick:isFedBy a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Is fed by"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:isFedBy ; owl:inverseOf brick:feeds . brick:isMeteredBy a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "is metered by"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:meters ; skos:definition "Indicates the meter measuring the consumption/production of some substance by the subject entity"@en . brick:isPointOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Is point of"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:isPointOf ; owl:inverseOf brick:hasPoint ; skos:definition "The subject is a source of telemetry related to the object. In some systems the source of telemetry may be represented as a digital/analog input/output point"@en . -brick:ratedCurrentInput a brick:EntityProperty ; +brick:ratedCurrentInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated current input"@en ; skos:definition "The nominal rated current input of the entity" . -brick:ratedCurrentOutput a brick:EntityProperty ; +brick:ratedCurrentOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated current output"@en ; skos:definition "The nominal rated current output of the entity" . -brick:ratedVoltageInput a brick:EntityProperty ; +brick:ratedVoltageInput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Measured voltage input"@en ; skos:definition "The nominal rated voltage input of the entity" . -brick:ratedVoltageOutput a brick:EntityProperty ; +brick:ratedVoltageOutput a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Rated voltage output"@en ; skos:definition "The nominal rated voltage output of the entity" . @@ -41519,15 +42642,15 @@ bsh:TemperatureShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:MilliDEG_C unit:MilliK unit:K unit:DEG_F unit:MegaK unit:PlanckTemperature unit:DEG_R unit:DecaK unit:DEG_C ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:K unit:DEG_F unit:PlanckTemperature unit:DEG_C unit:MilliDEG_C unit:DEG_R ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:isMeteredByShape a sh:PropertyShape ; sh:class brick:Meter ; @@ -41545,6 +42668,7 @@ rec:locatedIn a owl:AsymmetricProperty, brick:Air_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Air Alarm"@en ; rdfs:subClassOf brick:Alarm ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -41564,6 +42688,7 @@ brick:Air_Alarm a owl:Class, brick:Air_Differential_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Differential Pressure Setpoint"@en ; rdfs:subClassOf brick:Differential_Pressure_Setpoint ; skos:definition "Sets the target air differential pressure between an upstream and downstream point in a air duct or conduit"@en ; sh:rule [ a sh:TripleRule ; @@ -41596,6 +42721,7 @@ brick:Air_Differential_Pressure_Setpoint a owl:Class, brick:Air_Temperature_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Air Temperature Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter, brick:Temperature_Parameter ; sh:rule [ a sh:TripleRule ; @@ -41635,11 +42761,13 @@ brick:Air_Temperature_Integral_Time_Parameter a owl:Class, tag:Time . brick:Building_Air a brick:Substance ; + rdfs:label "Building Air"@en ; skos:broader brick:Air ; skos:definition "air contained within a building"@en . brick:CO2_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO2 Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures properties of CO2 in air"@en ; sh:rule [ a sh:TripleRule ; @@ -41662,6 +42790,7 @@ brick:CO2_Sensor a owl:Class, brick:CO_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "CO Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Measures properties of CO"@en ; sh:rule [ a sh:TripleRule ; @@ -41684,6 +42813,7 @@ brick:CO_Sensor a owl:Class, brick:Chilled_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -41716,6 +42846,7 @@ brick:Chilled_Water_Flow_Setpoint a owl:Class, brick:Chiller a owl:Class, sh:NodeShape ; + rdfs:label "Chiller"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Refrigerating machine used to transfer heat between fluids. Chillers are either direct expansion with a compressor or absorption type."@en ; sh:property bsh:hascoolingCapacityShape ; @@ -41732,6 +42863,7 @@ brick:Chiller a owl:Class, brick:Condenser_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the flow of the condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -41764,6 +42896,7 @@ brick:Condenser_Water_Flow_Sensor a owl:Class, brick:Condensing_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Condensing Unit"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "An outdoor HVAC unit that typically condenses refrigerant from gas to liquid, integral to the refrigeration cycle. It comprises a condenser coil, compressor, fan, and potentially a reversing valve in heat pump applications."@en ; sh:rule [ a sh:TripleRule ; @@ -41789,6 +42922,7 @@ brick:Condensing_Unit a owl:Class, brick:Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Deadband Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets the size of a deadband"@en ; sh:rule [ a sh:TripleRule ; @@ -41810,6 +42944,7 @@ brick:Deadband_Setpoint a owl:Class, brick:Demand_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Demand Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets the rate required for a process"@en ; sh:rule [ a sh:TripleRule ; @@ -41831,6 +42966,7 @@ brick:Demand_Setpoint a owl:Class, brick:Differential_Pressure_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Deadband Setpoint"@en ; rdfs:subClassOf brick:Differential_Setpoint ; skos:definition "Sets the size of a deadband of differential pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -41862,6 +42998,7 @@ brick:Differential_Pressure_Deadband_Setpoint a owl:Class, brick:Differential_Pressure_Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Integral Time Parameter"@en ; rdfs:subClassOf brick:Integral_Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Differential ; @@ -41901,6 +43038,7 @@ brick:Differential_Pressure_Integral_Time_Parameter a owl:Class, brick:Differential_Pressure_Proportional_Band a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Proportional Band"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -41935,6 +43073,7 @@ brick:Differential_Pressure_Proportional_Band a owl:Class, brick:Differential_Pressure_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Differential Pressure Setpoint Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Differential_Pressure_Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -41968,8 +43107,14 @@ brick:Differential_Pressure_Setpoint_Limit a owl:Class, tag:Pressure, tag:Setpoint . +brick:Direction a brick:Quantity ; + rdfs:label "Direction"@en ; + qudt:hasDimensionVector ; + skos:narrower brick:Wind_Direction . + brick:Entering_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of water enteringed to a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -42002,11 +43147,12 @@ brick:Entering_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Hot_Water . brick:Entering_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the rate of flow of water entering a piece of equipment or system"@en ; sh:rule [ a sh:TripleRule ; @@ -42037,19 +43183,18 @@ brick:Entering_Water_Flow_Sensor a owl:Class, brick:hasQuantity qudtqk:VolumeFlowRate ; brick:hasSubstance brick:Entering_Water . -brick:Gauge_Pressure a brick:Quantity ; - rdfs:label "Gauge_Pressure"@en ; - qudt:applicableUnit unit:BAR, - unit:IN_H2O, - unit:LB_F-PER-IN2, - unit:MilliM_H2O ; +brick:GrainsOfMoisture a brick:Quantity ; + rdfs:label "GrainsOfMoisture"@en ; + qudt:applicableUnit unit:GRAIN ; + qudt:hasDimensionVector ; rdfs:isDefinedBy ; - skos:broader qudtqk:Pressure, - brick:Pressure ; - skos:definition "Pressure relative to atmospheric pressure" . + skos:broader qudtqk:Mass, + brick:Air_Quality ; + skos:definition "Mass of moisture per pround of air, measured in grains of water" . brick:Hot_Water_System a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water System"@en ; rdfs:subClassOf brick:Water_System ; skos:definition "The equipment, devices and conduits that handle the production and distribution of hot water in a building"@en ; sh:rule [ a sh:TripleRule ; @@ -42070,6 +43215,7 @@ brick:Hot_Water_System a owl:Class, brick:Laboratory a owl:Class, sh:NodeShape ; + rdfs:label "Laboratory"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "facility acceptable to the local, national, or international recognized authority having jurisdiction and which provides uniform testing and examination procedures and standards for meeting design, manufacturing, and factory testing requirements."@en ; @@ -42094,6 +43240,7 @@ brick:Laboratory a owl:Class, brick:Leaving_Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Flow Setpoint"@en ; rdfs:subClassOf brick:Water_Flow_Setpoint ; skos:definition "Sets the target flow rate of leaving water"@en ; sh:rule [ a sh:TripleRule ; @@ -42126,6 +43273,7 @@ brick:Leaving_Water_Flow_Setpoint a owl:Class, brick:Leaving_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of water leaving a piece of equipment or system"@en ; sh:rule [ a sh:TripleRule ; @@ -42153,11 +43301,12 @@ brick:Leaving_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Water . brick:Lighting_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Lighting Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:property [ sh:or ( [ sh:class brick:Lighting_Equipment ] [ sh:class rec:Space ] ) ; sh:path brick:feeds ], @@ -42176,6 +43325,7 @@ brick:Lighting_Equipment a owl:Class, brick:Outdoor_Area a owl:Class, sh:NodeShape ; + rdfs:label "Outdoor Area"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "A class of spaces that exist outside of a building"@en ; @@ -42200,6 +43350,7 @@ brick:Outdoor_Area a owl:Class, brick:PID_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "PID Parameter"@en ; rdfs:subClassOf brick:Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:PID ; @@ -42219,6 +43370,7 @@ brick:PID_Parameter a owl:Class, brick:Particulate_Matter_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Particulate Matter Sensor"@en ; rdfs:subClassOf brick:Air_Quality_Sensor ; skos:definition "Detects pollutants in the ambient air"@en ; sh:rule [ a sh:TripleRule ; @@ -42246,6 +43398,7 @@ brick:Particulate_Matter_Sensor a owl:Class, brick:Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -42263,10 +43416,11 @@ brick:Pressure_Setpoint a owl:Class, brick:hasAssociatedTag tag:Point, tag:Pressure, tag:Setpoint ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Radiator a owl:Class, sh:NodeShape ; + rdfs:label "Radiator"@en ; rdfs:subClassOf brick:Terminal_Unit ; skos:definition "Heat exchangers designed to transfer thermal energy from one medium to another"@en ; sh:rule [ a sh:TripleRule ; @@ -42282,6 +43436,7 @@ brick:Radiator a owl:Class, brick:Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Reset Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Setpoints used in reset strategies"@en ; sh:rule [ a sh:TripleRule ; @@ -42303,6 +43458,7 @@ brick:Reset_Setpoint a owl:Class, brick:Safety_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Safety Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -42317,6 +43473,7 @@ brick:Safety_Equipment a owl:Class, brick:Security_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Security Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -42330,6 +43487,7 @@ brick:Security_Equipment a owl:Class, tag:Security . brick:Solid a brick:Substance ; + rdfs:label "Solid"@en ; skos:definition "one of the three states or phases of matter characterized by stability of dimensions, relative incompressibility, and molecular motion held to limited oscillation."@en ; skos:narrower brick:Frost, brick:Hail, @@ -42338,6 +43496,7 @@ brick:Solid a brick:Substance ; brick:Supply_Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow Sensor"@en ; rdfs:subClassOf brick:Air_Flow_Sensor ; owl:equivalentClass brick:Discharge_Air_Flow_Sensor ; skos:definition "Measures the rate of flow of supply air"@en ; @@ -42377,6 +43536,7 @@ brick:Supply_Air_Flow_Sensor a owl:Class, brick:Supply_Air_Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Static_Pressure_Setpoint ; owl:equivalentClass brick:Discharge_Air_Static_Pressure_Setpoint ; skos:definition "Sets static pressure of supply air"@en ; @@ -42415,12 +43575,13 @@ brick:Supply_Air_Static_Pressure_Setpoint a owl:Class, tag:Setpoint, tag:Static, tag:Supply ; - brick:hasQuantity brick:Static_Pressure ; + brick:hasQuantity qudtqk:StaticPressure ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:Supply_Air_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Sensor"@en ; rdfs:subClassOf brick:Air_Temperature_Sensor ; owl:equivalentClass brick:Discharge_Air_Temperature_Sensor ; skos:definition "Measures the temperature of supply air"@en ; @@ -42454,12 +43615,13 @@ brick:Supply_Air_Temperature_Sensor a owl:Class, tag:Sensor, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:System_Status a owl:Class, sh:NodeShape ; + rdfs:label "System Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates properties of the activity of a system"@en ; sh:rule [ a sh:TripleRule ; @@ -42480,6 +43642,7 @@ brick:System_Status a owl:Class, brick:Telecom_Room a owl:Class, sh:NodeShape ; + rdfs:label "Telecom Room"@en ; rdfs:subClassOf brick:Room ; owl:deprecated true ; skos:definition "A class of spaces used to support telecommuncations and IT equipment"@en ; @@ -42509,6 +43672,7 @@ brick:Telecom_Room a owl:Class, brick:Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with temperature."@en ; sh:rule [ a sh:TripleRule ; @@ -42529,6 +43693,7 @@ brick:Temperature_Alarm a owl:Class, brick:Usage_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Usage Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures the amount of some substance that is consumed or used, over some period of time"@en ; sh:property [ a sh:PropertyShape ; @@ -42556,6 +43721,7 @@ brick:Usage_Sensor a owl:Class, brick:Variable_Air_Volume_Box a owl:Class, sh:NodeShape ; + rdfs:label "Variable Air Volume Box"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:VAV ; @@ -42588,6 +43754,7 @@ brick:Variable_Air_Volume_Box a owl:Class, brick:Vertical_Space a owl:Class, sh:NodeShape ; + rdfs:label "Vertical Space"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "A class of spaces used to connect multiple floors or levels.."@en ; @@ -42612,6 +43779,7 @@ brick:Vertical_Space a owl:Class, brick:Water_Differential_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Differential Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the difference in water temperature between an upstream and downstream point in a pipe or conduit"@en ; sh:rule [ a sh:TripleRule ; @@ -42644,6 +43812,7 @@ brick:Water_Differential_Temperature_Sensor a owl:Class, brick:Water_Loop a owl:Class, sh:NodeShape ; + rdfs:label "Water Loop"@en ; rdfs:subClassOf brick:Loop ; skos:definition "A collection of equipment that transport and regulate water among each other"@en ; sh:rule [ a sh:TripleRule ; @@ -42660,43 +43829,53 @@ brick:Water_Loop a owl:Class, brick:ambientTemperatureOfMeasurement a owl:AsymmetricProperty, owl:DatatypeProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "ambientTemperatureOfMeasurement"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "ambientTemperatureOfMeasurement"@en . -brick:area a brick:EntityProperty ; +brick:area a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Area"@en ; skos:definition "Entity has 2-dimensional area" . +brick:deprecation a owl:AsymmetricProperty, + owl:IrreflexiveProperty, + owl:ObjectProperty, + brick:EntityProperty, + brick:Relationship ; + rdfs:label "Deprecation Notice"@en ; + skos:definition "Marks a concept as deprecated" . + brick:hasLocation a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has location"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:locatedIn ; owl:inverseOf brick:isLocationOf ; skos:definition "Subject is physically located in the location given by the object"@en . brick:hasPoint a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has point"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:hasPoint ; owl:inverseOf brick:isPointOf ; skos:definition "The subject has a source of telemetry identified by the object. In some systems the source of telemetry may be represented as a digital/analog input/output point"@en . brick:hasQuantity a owl:AsymmetricProperty, - owl:IrreflexiveProperty ; + owl:IrreflexiveProperty, + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has Quantity"@en ; - rdfs:subPropertyOf qudt:hasQuantityKind, - brick:Relationship . + rdfs:subPropertyOf qudt:hasQuantityKind . brick:meters a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "meters"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:isMeteredBy ; skos:definition "Indicates the entity whose consumption/production of some substance is measured by this meter."@en . @@ -42711,15 +43890,15 @@ bsh:AreaShape a owl:Class, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; + sh:in ( unit:FT2 unit:M2 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:or bsh:NumericValue ; - sh:path brick:value ], + sh:path brick:hasUnit ], [ a sh:PropertyShape ; - sh:in ( unit:FT2 unit:M2 ) ; sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:or bsh:NumericValue ; + sh:path brick:value ] . bsh:PowerQuantityShape a owl:Class, sh:NodeShape, @@ -42760,9 +43939,6 @@ tag:Color a brick:Tag ; tag:Computer a brick:Tag ; rdfs:label "Computer"@en . -tag:Concentration a brick:Tag ; - rdfs:label "Concentration"@en . - tag:Conductivity a brick:Tag ; rdfs:label "Conductivity"@en . @@ -42970,6 +44146,7 @@ rec:isPartOf a owl:AsymmetricProperty, brick:Air_Differential_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Differential Pressure Sensor"@en ; rdfs:subClassOf brick:Air_Pressure_Sensor, brick:Differential_Pressure_Sensor ; skos:definition "Measures the difference in pressure between two regions of air"@en ; @@ -43003,6 +44180,7 @@ brick:Air_Differential_Pressure_Sensor a owl:Class, brick:Air_Static_Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Static Pressure Sensor"@en ; rdfs:subClassOf brick:Static_Pressure_Sensor ; skos:definition "Measures the pressure exerted by the air in a system, not influenced by its motion."@en ; sh:rule [ a sh:TripleRule ; @@ -43030,10 +44208,11 @@ brick:Air_Static_Pressure_Sensor a owl:Class, tag:Pressure, tag:Sensor, tag:Static ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Chilled_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the rate of flow in a chilled water circuit"@en ; sh:rule [ a sh:TripleRule ; @@ -43066,6 +44245,7 @@ brick:Chilled_Water_Flow_Sensor a owl:Class, brick:Chilled_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Sets the temperature of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -43093,13 +44273,17 @@ brick:Chilled_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Chilled_Water . -brick:Class a owl:Class . +brick:Class a owl:Class, + sh:NodeShape ; + rdfs:label "Class"@en ; + rdfs:subClassOf brick:Entity . brick:Condenser_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Condenser Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of condenser water"@en ; sh:rule [ a sh:TripleRule ; @@ -43127,11 +44311,12 @@ brick:Condenser_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Condenser_Water . brick:Cooling_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Cooling_Supply_Air_Flow_Setpoint ; skos:definition "Sets discharge air flow for cooling"@en ; @@ -43139,6 +44324,7 @@ brick:Cooling_Discharge_Air_Flow_Setpoint a owl:Class, brick:Cooling_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "The cooling setpoint for a specific zone in a building."@en ; sh:rule [ a sh:TripleRule ; @@ -43171,14 +44357,12 @@ brick:Cooling_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Zone_Air . -brick:Direction a brick:Quantity ; - skos:narrower brick:Wind_Direction . - brick:Disable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Disable Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Commands that disable functionality"@en ; sh:rule [ a sh:TripleRule ; @@ -43198,41 +44382,41 @@ brick:Disable_Command a owl:Class, tag:Point . brick:Discharge_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Discharge Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; brick:deprecationMitigationMessage "Swapped supply/return for entering/leaving with water-related points" ; brick:isReplacedBy brick:Leaving_Water_Temperature_Sensor . -brick:Electric_Current a brick:Quantity ; - qudt:applicableUnit unit:A, - unit:A_Ab, - unit:A_Stat, - unit:AttoA, - unit:BIOT, - unit:FemtoA, - unit:GigaA, - unit:KiloA, - unit:MegaA, - unit:MicroA, - unit:MilliA, - unit:NanoA, - unit:PetaA, - unit:PicoA, - unit:PlanckCurrent, - unit:TeraA ; - skos:related brick:Alternating_Current_Frequency, - brick:Current_Angle, - brick:Current_Imbalance, - brick:Current_Total_Harmonic_Distortion ; - brick:hasQUDTReference qudtqk:ElectricCurrent . +brick:Electric_Energy a brick:Quantity ; + rdfs:label "Electric Energy"@en ; + qudt:applicableUnit unit:J, + unit:KiloV-A-HR, + unit:KiloV-A_Reactive-HR, + unit:KiloW-HR, + unit:MegaV-A-HR, + unit:MegaV-A_Reactive-HR, + unit:MegaW-HR, + unit:V-A-HR, + unit:V-A_Reactive-HR, + unit:W-HR ; + qudt:hasDimensionVector ; + rdfs:isDefinedBy ; + skos:broader qudtqk:Energy ; + skos:definition "A form of energy resulting from the flow of electrical charge" ; + skos:narrower brick:Active_Energy, + brick:Apparent_Energy, + brick:Reactive_Energy . brick:Entering_Condenser_Water a brick:Substance ; + rdfs:label "Entering Condenser Water"@en ; skos:broader brick:Condenser_Water ; skos:definition "In a condenser water loop, this is water being brought away from the condenser side of a heat-rejection device (e.g. chiller). It is the 'warm' side."@en . brick:Entering_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Entering Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Sets temperature of entering water"@en ; sh:rule [ a sh:TripleRule ; @@ -43260,11 +44444,12 @@ brick:Entering_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Entering_Water . brick:Filter a owl:Class, sh:NodeShape ; + rdfs:label "Filter"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Device to remove gases from a mixture of gases or to remove solid material from a fluid"@en ; sh:rule [ a sh:TripleRule ; @@ -43280,6 +44465,7 @@ brick:Filter a owl:Class, brick:Heating_Discharge_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Discharge Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Heating_Supply_Air_Flow_Setpoint ; skos:definition "Sets discharge air flow for heating"@en ; @@ -43287,6 +44473,7 @@ brick:Heating_Discharge_Air_Flow_Setpoint a owl:Class, brick:Heating_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "The heating setpoint for a specific zone in a building."@en ; sh:rule [ a sh:TripleRule ; @@ -43319,11 +44506,12 @@ brick:Heating_Zone_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Zone_Air . brick:Hot_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Hot Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the rate of flow in a hot water circuit"@en ; sh:rule [ a sh:TripleRule ; @@ -43355,11 +44543,13 @@ brick:Hot_Water_Flow_Sensor a owl:Class, brick:hasSubstance brick:Hot_Water . brick:Leaving_Condenser_Water a brick:Substance ; + rdfs:label "Leaving Condenser Water"@en ; skos:broader brick:Condenser_Water ; skos:definition "In a condenser water loop, this is water being brought to the condenser side of a heat-rejection device (e.g. chiller). It is the 'cold' side."@en . brick:Leaving_Hot_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Hot Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of water supplied by a hot water system"@en ; sh:rule [ a sh:TripleRule ; @@ -43392,11 +44582,12 @@ brick:Leaving_Hot_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Hot_Water . brick:Leaving_Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Flow Sensor"@en ; rdfs:subClassOf brick:Water_Flow_Sensor ; skos:definition "Measures the rate of flow of water that is leaving a piece of equipment or system"@en ; sh:rule [ a sh:TripleRule ; @@ -43446,6 +44637,7 @@ brick:Level a brick:Quantity ; brick:Max_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint_Limit, brick:Max_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Air_Flow_Setpoint."@en ; @@ -43487,6 +44679,7 @@ brick:Max_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint_Limit, brick:Min_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Air_Flow_Setpoint."@en ; @@ -43527,11 +44720,13 @@ brick:Min_Air_Flow_Setpoint_Limit a owl:Class, tag:Setpoint . brick:Natural_Gas a brick:Substance ; + rdfs:label "Natural Gas"@en ; skos:broader brick:Gas ; skos:definition "Fossil fuel energy source consisting largely of methane and other hydrocarbons"@en . brick:Outside_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Outside Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Sets temperature of outside air"@en ; sh:rule [ a sh:TripleRule ; @@ -43559,11 +44754,12 @@ brick:Outside_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Outside_Air . brick:Switchgear a owl:Class, sh:NodeShape ; + rdfs:label "Switchgear"@en ; rdfs:subClassOf brick:Electrical_Equipment ; skos:definition "A main disconnect or service disconnect feeds power to a switchgear, which then distributes power to the rest of the building through smaller amperage-rated disconnects."@en ; sh:rule [ a sh:TripleRule ; @@ -43579,6 +44775,7 @@ brick:Switchgear a owl:Class, brick:Target_Zone_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Target Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -43610,57 +44807,12 @@ brick:Target_Zone_Air_Temperature_Setpoint a owl:Class, tag:Target, tag:Temperature, tag:Zone ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Zone_Air . -brick:Time a brick:Quantity ; - qudt:applicableUnit unit:AttoSEC, - unit:CentiPOISE-PER-BAR, - unit:DAY, - unit:DAY_Sidereal, - unit:DeciSEC, - unit:FemtoSEC, - unit:H-PER-KiloOHM, - unit:H-PER-OHM, - unit:HR, - unit:HR_Sidereal, - unit:KiloSEC, - unit:KiloYR, - unit:MIN, - unit:MIN_Sidereal, - unit:MO, - unit:MO_MeanGREGORIAN, - unit:MO_MeanJulian, - unit:MO_Synodic, - unit:MegaSEC, - unit:MegaYR, - unit:MicroH-PER-KiloOHM, - unit:MicroH-PER-OHM, - unit:MicroSEC, - unit:MilliH-PER-KiloOHM, - unit:MilliH-PER-OHM, - unit:MilliPA-SEC-PER-BAR, - unit:MilliSEC, - unit:NanoSEC, - unit:PA-SEC-PER-BAR, - unit:POISE-PER-BAR, - unit:POISE-PER-PA, - unit:PicoSEC, - unit:PlanckTime, - unit:SEC, - unit:SH, - unit:WK, - unit:YR, - unit:YR_Common, - unit:YR_Metrology, - unit:YR_Sidereal, - unit:YR_TROPICAL ; - skos:narrower brick:Acceleration_Time, - brick:Deceleration_Time ; - brick:hasQUDTReference qudtqk:Time . - brick:Variable_Frequency_Drive a owl:Class, sh:NodeShape ; + rdfs:label "Variable Frequency Drive"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Motor ; owl:equivalentClass brick:VFD ; @@ -43691,78 +44843,9 @@ brick:Variable_Frequency_Drive a owl:Class, tag:VFD, tag:Variable . -brick:Velocity_Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - skos:definition "Dynamic Pressure (indicated with q, or Q, and sometimes called velocity pressure) is the quantity defined by: (q = 1/2 * ρ v^{2}), where (using SI units), (q) is dynamic pressure in (pascals), (ρ) is fluid density in (kg/m^{3}) (for example, density of air) and (v ) is fluid velocity in (m/s)."@en ; - skos:narrower brick:Differential_Dynamic_Pressure ; - brick:hasQUDTReference qudtqk:DynamicPressure, - brick:Dynamic_Pressure . - brick:Water_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Water Alarm"@en ; rdfs:subClassOf brick:Alarm ; skos:definition "Alarm that indicates an undesirable event with a pipe, container, or equipment carrying water e.g. water leak"@en ; sh:rule [ a sh:TripleRule ; @@ -43783,6 +44866,7 @@ brick:Water_Alarm a owl:Class, brick:Water_Storage_Tank a owl:Class, sh:NodeShape ; + rdfs:label "Water Storage Tank"@en ; rdfs:subClassOf brick:Storage_Tank ; skos:definition "A specialized type of tank intended for the storage of water for extended periods."@en ; sh:rule [ a sh:TripleRule ; @@ -43802,6 +44886,7 @@ brick:Water_Storage_Tank a owl:Class, tag:Water . brick:Zone_Air_Temperature_Setpoint a owl:Class ; + rdfs:label "Zone Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; owl:deprecated true ; skos:definition "Sets temperature of zone air"@en ; @@ -43811,22 +44896,23 @@ brick:Zone_Air_Temperature_Setpoint a owl:Class ; brick:feeds a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Feeds"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:equivalentProperty rec:feeds ; owl:inverseOf brick:isFedBy ; skos:definition "The subject is upstream of the object in the context of some sequential process; some media is passed between them"@en . brick:isPartOf a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Is part of"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:hasPart . brick:Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Setpoint"@en ; rdfs:subClassOf brick:Flow_Setpoint ; skos:definition "Sets air flow"@en ; sh:rule [ a sh:TripleRule ; @@ -43854,6 +44940,7 @@ brick:Air_Flow_Setpoint a owl:Class, brick:Building_Meter a owl:Class, sh:NodeShape ; + rdfs:label "Building Meter"@en ; rdfs:subClassOf brick:Meter ; skos:definition "A meter that measures usage or consumption of some media for a whole building"@en ; sh:property [ sh:class brick:Building ; @@ -43875,7 +44962,7 @@ brick:Building_Meter a owl:Class, tag:Meter . brick:CO_Concentration a brick:Quantity ; - rdfs:label "COConcentration"@en ; + rdfs:label "CO Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -43887,6 +44974,7 @@ brick:CO_Concentration a brick:Quantity ; brick:Common_Space a owl:Class, sh:NodeShape ; + rdfs:label "Common Space"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "A class of spaces that are used by multiple people at the same time"@en ; @@ -43911,6 +44999,7 @@ brick:Common_Space a owl:Class, brick:Cooling_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Cooling_Discharge_Air_Flow_Setpoint ; skos:definition "Sets supply air flow rate for cooling"@en ; @@ -43953,6 +45042,7 @@ brick:Cooling_Supply_Air_Flow_Setpoint a owl:Class, brick:Data_Network_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Data Network Equipment"@en ; rdfs:subClassOf brick:ICT_Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Data ; @@ -43972,6 +45062,7 @@ brick:Data_Network_Equipment a owl:Class, brick:Dewpoint_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Dewpoint Sensor"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Sensor ; skos:definition "Senses the dewpoint temperature . Dew point is the temperature to which air must be cooled to become saturated with water vapor"@en ; @@ -43998,47 +45089,27 @@ brick:Dewpoint_Sensor a owl:Class, tag:Sensor ; brick:hasQuantity qudtqk:DewPointTemperature . -brick:Differential_Setpoint a owl:Class ; +brick:Differential_Setpoint a owl:Class, + sh:NodeShape ; + rdfs:label "Differential Setpoint"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Setpoint ; skos:definition "A type of Setpoints that is related to the difference between two measurements"@en ; brick:hasQuantity qudtqk:Dimensionless . -brick:Electric_Energy a brick:Quantity ; - rdfs:label "ElectricEnergy"@en ; - qudt:applicableUnit unit:J, - unit:KiloV-A-HR, - unit:KiloV-A_Reactive-HR, - unit:KiloW-HR, - unit:MegaV-A-HR, - unit:MegaV-A_Reactive-HR, - unit:MegaW-HR, - unit:V-A-HR, - unit:V-A_Reactive-HR, - unit:W-HR ; - qudt:hasDimensionVector ; - rdfs:isDefinedBy ; - skos:broader qudtqk:Energy, - brick:Energy ; - skos:definition "A form of energy resulting from the flow of electrical charge" ; - skos:narrower brick:Active_Energy, - brick:Apparent_Energy, - brick:Reactive_Energy . - -brick:Energy a brick:Quantity ; - skos:narrower brick:Electric_Energy, - brick:Thermal_Energy . - brick:Entering_Chilled_Water a brick:Substance ; + rdfs:label "Entering Chilled Water"@en ; skos:broader brick:Chilled_Water, brick:Entering_Water . brick:Entering_Hot_Water a brick:Substance ; + rdfs:label "Entering Hot Water"@en ; skos:broader brick:Entering_Water, brick:Hot_Water . brick:Fire_Safety_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Fire Safety Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; @@ -44057,6 +45128,7 @@ brick:Fire_Safety_Equipment a owl:Class, tag:Safety . brick:Gas a brick:Substance ; + rdfs:label "Gas"@en ; skos:broader brick:Fluid ; skos:definition "state of matter in which substances exist in the form of nonaggregated molecules and which, within acceptable limits of accuracy, satisfy the ideal gas laws; usually a highly superheated vapor. See [[state]]."@en ; skos:narrower brick:Air, @@ -44067,6 +45139,7 @@ brick:Gas a brick:Substance ; brick:Heat_Exchanger a owl:Class, sh:NodeShape ; + rdfs:label "Heat Exchanger"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:HX ; skos:definition "A heat exchanger is a piece of equipment built for efficient heat transfer from one medium to another. The media may be separated by a solid wall to prevent mixing or they may be in direct contact (BEDES)"@en ; @@ -44093,6 +45166,7 @@ brick:Heat_Exchanger a owl:Class, brick:Heating_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Heating_Discharge_Air_Flow_Setpoint ; skos:definition "Sets supply air flow rate for heating"@en ; @@ -44135,6 +45209,7 @@ brick:Heating_Supply_Air_Flow_Setpoint a owl:Class, brick:Integral_Time_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Integral Time Parameter"@en ; rdfs:subClassOf brick:Time_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Integral ; @@ -44164,6 +45239,7 @@ brick:Integral_Time_Parameter a owl:Class, brick:Leaving_Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Leaving Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Water_Temperature_Setpoint ; skos:definition "Sets temperature of leaving water"@en ; sh:rule [ a sh:TripleRule ; @@ -44191,10 +45267,11 @@ brick:Leaving_Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Leaving_Water . brick:Liquid a brick:Substance ; + rdfs:label "Liquid"@en ; skos:broader brick:Fluid ; skos:definition "state of matter intermediate between crystalline substances and gases in which the volume of a substance, but not the shape, remains relatively constant."@en ; skos:narrower brick:Gasoline, @@ -44205,6 +45282,7 @@ brick:Liquid a brick:Substance ; brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -44261,6 +45339,7 @@ brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Max_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en ; @@ -44317,6 +45396,7 @@ brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Cooling Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Cooling_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Cooling_Supply_Air_Flow_Setpoint."@en ; @@ -44373,6 +45453,7 @@ brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class, brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Heating Supply Air Flow Setpoint Limit"@en ; rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ; owl:equivalentClass brick:Min_Heating_Discharge_Air_Flow_Setpoint_Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Heating_Supply_Air_Flow_Setpoint."@en ; @@ -44428,11 +45509,13 @@ brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class, tag:Supply . brick:Mixed_Air a brick:Substance ; + rdfs:label "Mixed Air"@en ; skos:broader brick:Air ; skos:definition "(1) air that contains two or more streams of air. (2) combined outdoor air and recirculated air."@en . brick:Occupied_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Occupied_Discharge_Air_Flow_Setpoint ; skos:definition "Sets supply air flow rate when occupied"@en ; @@ -44475,6 +45558,7 @@ brick:Occupied_Supply_Air_Flow_Setpoint a owl:Class, brick:On_Off_Command a owl:Class, sh:NodeShape ; + rdfs:label "On Off Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "An On/Off Command controls or reports the binary status of a control loop, relay or equipment activity"@en ; sh:rule [ a sh:TripleRule ; @@ -44500,6 +45584,7 @@ brick:On_Off_Command a owl:Class, brick:Pressure_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Pressure Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measure the amount of force acting on a unit area"@en ; sh:property [ a sh:PropertyShape ; @@ -44523,10 +45608,11 @@ brick:Pressure_Sensor a owl:Class, brick:hasAssociatedTag tag:Point, tag:Pressure, tag:Sensor ; - brick:hasQuantity brick:Pressure . + brick:hasQuantity qudtqk:Pressure . brick:Start_Stop_Status a owl:Class, sh:NodeShape ; + rdfs:label "Start Stop Status"@en ; rdfs:subClassOf brick:On_Off_Status ; skos:definition "Indicates the active/inactive status of a control loop (but not equipment activities or relays -- use On/Off for this purpose)"@en ; sh:rule [ a sh:TripleRule ; @@ -44552,6 +45638,7 @@ brick:Start_Stop_Status a owl:Class, brick:Supply_Air_Flow_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow Reset Setpoint"@en ; rdfs:subClassOf brick:Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Flow_Reset_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -44594,6 +45681,7 @@ brick:Supply_Air_Flow_Reset_Setpoint a owl:Class, brick:Supply_Air_Temperature_Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Alarm"@en ; rdfs:subClassOf brick:Air_Temperature_Alarm ; owl:equivalentClass brick:Discharge_Air_Temperature_Alarm ; skos:definition "An alarm that indicates the off-normal conditions associated with the temperature of supply air."@en ; @@ -44630,6 +45718,7 @@ brick:Supply_Air_Temperature_Alarm a owl:Class, brick:Supply_Air_Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint, brick:Discharge_Air_Temperature_Setpoint, brick:Temperature_Deadband_Setpoint ; @@ -44670,12 +45759,13 @@ brick:Supply_Air_Temperature_Deadband_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Proportional Band Parameter"@en ; rdfs:subClassOf brick:Proportional_Band_Parameter, brick:Temperature_Parameter ; owl:equivalentClass brick:Discharge_Air_Temperature_Proportional_Band_Parameter ; @@ -44727,6 +45817,7 @@ brick:Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class, brick:Supply_Air_Temperature_Reset_Differential_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Reset Differential Setpoint"@en ; rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_Reset_Differential_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -44775,6 +45866,7 @@ brick:Supply_Air_Temperature_Reset_Differential_Setpoint a owl:Class, brick:Supply_Air_Temperature_Setpoint_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Setpoint Limit"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint_Limit ; owl:equivalentClass brick:Discharge_Air_Temperature_Setpoint_Limit ; skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en ; @@ -44815,6 +45907,7 @@ brick:Supply_Air_Temperature_Setpoint_Limit a owl:Class, tag:Temperature . brick:Supply_Water_Temperature_Sensor a owl:Class ; + rdfs:label "Supply Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; owl:deprecated true ; brick:deprecatedInVersion "1.3.0" ; @@ -44823,6 +45916,7 @@ brick:Supply_Water_Temperature_Sensor a owl:Class ; brick:Temperature_High_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Temperature High Reset Setpoint"@en ; rdfs:subClassOf brick:Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:High ; @@ -44849,10 +45943,11 @@ brick:Temperature_High_Reset_Setpoint a owl:Class, tag:Reset, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Temperature_Low_Reset_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Low Reset Setpoint"@en ; rdfs:subClassOf brick:Reset_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Low ; @@ -44879,10 +45974,11 @@ brick:Temperature_Low_Reset_Setpoint a owl:Class, tag:Reset, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Supply_Air_Flow_Setpoint ; owl:equivalentClass brick:Unoccupied_Discharge_Air_Flow_Setpoint ; sh:rule [ a sh:TripleRule ; @@ -44924,6 +46020,7 @@ brick:Unoccupied_Supply_Air_Flow_Setpoint a owl:Class, brick:Water_Valve a owl:Class, sh:NodeShape ; + rdfs:label "Water Valve"@en ; rdfs:subClassOf brick:Valve ; skos:definition "A valve that modulates the flow of water"@en ; sh:rule [ a sh:TripleRule ; @@ -44944,6 +46041,7 @@ brick:Water_Valve a owl:Class, brick:Zone a owl:Class, sh:NodeShape ; + rdfs:label "Zone"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "(1) a separately controlled heated or cooled space. (2) one occupied space or several occupied spaces with similar occupancy category, occupant density, zone air distribution effectiveness, and zone primary airflow per unit area. (3) space or group of spaces within a building for which the heating, cooling, or lighting requirements are sufficiently similar that desired conditions can be maintained throughout by a single controlling device."@en ; @@ -44964,9 +46062,9 @@ brick:Zone a owl:Class, brick:isReplacedBy rec:Zone . brick:timestamp a rdf:Property, - owl:DatatypeProperty ; - rdfs:label "Timestamp"@en ; - rdfs:subPropertyOf brick:Relationship . + owl:DatatypeProperty, + brick:Relationship ; + rdfs:label "Timestamp"@en . bsh:Electric_CurrentQuantityShape a owl:Class, sh:NodeShape, @@ -44975,29 +46073,20 @@ bsh:Electric_CurrentQuantityShape a owl:Class, sh:property [ a sh:PropertyShape ; skos:definition "The ambient temperature at which the current input was measured" ; sh:class bsh:TemperatureShape ; - sh:path brick:ambientTemperatureOfMeasurement ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ], - [ a sh:PropertyShape ; - sh:in ( unit:BIOT unit:KiloA unit:NanoA unit:PlanckCurrent unit:PicoA unit:AttoA unit:MicroA unit:GigaA unit:PetaA unit:MilliA unit:TeraA unit:MegaA unit:FemtoA unit:A unit:A_Stat unit:A_Ab ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ] . + sh:path brick:ambientTemperatureOfMeasurement ] . bsh:LastKnownValueShape a owl:Class, sh:NodeShape, brick:EntityPropertyValue ; rdfs:subClassOf bsh:ValueShape ; sh:property [ a sh:PropertyShape ; - sh:maxCount 1 ; + sh:datatype xsd:dateTime ; sh:minCount 1 ; - sh:path brick:value ], + sh:path brick:timestamp ], [ a sh:PropertyShape ; - sh:datatype xsd:dateTime ; + sh:maxCount 1 ; sh:minCount 1 ; - sh:path brick:timestamp ] . + sh:path brick:value ] . bsh:VoltageQuantityShape a owl:Class, sh:NodeShape, @@ -45006,16 +46095,7 @@ bsh:VoltageQuantityShape a owl:Class, sh:property [ a sh:PropertyShape ; skos:definition "The ambient temperature at which the voltage was measured" ; sh:class bsh:TemperatureShape ; - sh:path brick:ambientTemperatureOfMeasurement ], - [ a sh:PropertyShape ; - sh:in ( unit:TeraV unit:KiloV unit:MilliV unit:V_Ab unit:MicroV unit:FemtoV unit:V unit:GigaV unit:MegaV unit:V_Stat unit:PlanckVolt unit:PicoV unit:NanoV ) ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:hasUnit ], - [ a sh:PropertyShape ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:path brick:value ] . + sh:path brick:ambientTemperatureOfMeasurement ] . tag:AHU a brick:Tag ; rdfs:label "AHU"@en . @@ -45148,6 +46228,7 @@ tag:Volume a brick:Tag ; brick:Chilled_Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Chilled Water Temperature Sensor"@en ; rdfs:subClassOf brick:Water_Temperature_Sensor ; skos:definition "Measures the temperature of chilled water"@en ; sh:rule [ a sh:TripleRule ; @@ -45175,11 +46256,12 @@ brick:Chilled_Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Chilled_Water . brick:Fan_Coil_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Fan Coil Unit"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Terminal_Unit ; owl:equivalentClass brick:FCU ; @@ -45212,6 +46294,7 @@ brick:Fan_Coil_Unit a owl:Class, brick:Floor a owl:Class, sh:NodeShape ; + rdfs:label "Floor"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; owl:equivalentClass brick:Storey ; @@ -45237,39 +46320,9 @@ brick:Floor a owl:Class, tag:Storey ; brick:isReplacedBy rec:Level . -brick:Frequency a brick:Quantity ; - qudt:applicableUnit unit:GigaHZ, - unit:HZ, - unit:KiloHZ, - unit:MegaHZ, - unit:MilliHZ, - unit:NUM-PER-HR, - unit:NUM-PER-SEC, - unit:NUM-PER-YR, - unit:PER-DAY, - unit:PER-HR, - unit:PER-MIN, - unit:PER-MO, - unit:PER-MilliSEC, - unit:PER-SEC, - unit:PER-WK, - unit:PER-YR, - unit:PERCENT-PER-DAY, - unit:PERCENT-PER-HR, - unit:PERCENT-PER-MO, - unit:PERCENT-PER-WK, - unit:PPTH-PER-HR, - unit:PetaHZ, - unit:PlanckFrequency, - unit:SAMPLE-PER-SEC, - unit:TeraHZ, - unit:failures-in-time ; - skos:definition "Frequency is the number of occurrences of a repeating event per unit time. The repetition of the events may be periodic (that is. the length of time between event repetitions is fixed) or aperiodic (i.e. the length of time between event repetitions varies). Therefore, we distinguish between periodic and aperiodic frequencies. In the SI system, periodic frequency is measured in hertz (Hz) or multiples of hertz, while aperiodic frequency is measured in becquerel (Bq). In spectroscopy, ( u) is mostly used. Light passing through different media keeps its frequency, but not its wavelength or wavenumber."@en ; - skos:narrower brick:Alternating_Current_Frequency ; - brick:hasQUDTReference qudtqk:Frequency . - brick:Heating_Ventilation_Air_Conditioning_System a owl:Class, sh:NodeShape ; + rdfs:label "Heating Ventilation Air Conditioning System"@en ; rdfs:subClassOf brick:System ; owl:equivalentClass brick:HVAC_System ; skos:definition "The equipment, distribution systems and terminals that provide, either collectively or individually, the processes of heating, ventilating or air conditioning to a building or portion of a building"@en ; @@ -45305,11 +46358,13 @@ brick:Heating_Ventilation_Air_Conditioning_System a owl:Class, tag:Ventilation . brick:Leaving_Chilled_Water a brick:Substance ; + rdfs:label "Leaving Chilled Water"@en ; skos:broader brick:Chilled_Water, brick:Leaving_Water . brick:Mode_Status a owl:Class, sh:NodeShape ; + rdfs:label "Mode Status"@en ; rdfs:subClassOf brick:Status ; skos:definition "Indicates which mode a system, device or control loop is currently in"@en ; sh:rule [ a sh:TripleRule ; @@ -45330,6 +46385,7 @@ brick:Mode_Status a owl:Class, brick:On_Off_Status a owl:Class, sh:NodeShape ; + rdfs:label "On Off Status"@en ; rdfs:subClassOf brick:Off_Status, brick:On_Status, brick:Status ; @@ -45357,6 +46413,7 @@ brick:On_Off_Status a owl:Class, brick:Proportional_Band_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Proportional Band Parameter"@en ; rdfs:subClassOf brick:PID_Parameter ; sh:rule [ a sh:TripleRule ; sh:object tag:Band ; @@ -45386,6 +46443,7 @@ brick:Proportional_Band_Parameter a owl:Class, brick:Radiant_Panel a owl:Class, sh:NodeShape ; + rdfs:label "Radiant Panel"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Terminal_Unit ; skos:definition "A temperature-controlled surface that provides fifty percent (50%) or more of the design heat transfer by thermal radiation."@en ; @@ -45407,6 +46465,7 @@ brick:Radiant_Panel a owl:Class, brick:Relative_Humidity_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Relative Humidity Sensor"@en ; rdfs:subClassOf brick:Humidity_Sensor ; skos:definition "Measures the present state of absolute humidity relative to a maximum humidity given the same temperature"@en ; sh:property [ a sh:PropertyShape ; @@ -45445,6 +46504,7 @@ brick:Relative_Humidity_Sensor a owl:Class, brick:Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets temperature"@en ; sh:rule [ a sh:TripleRule ; @@ -45473,6 +46533,7 @@ rdfs:Resource sh:property bsh:valueShape . brick:Air_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Flow Sensor"@en ; rdfs:subClassOf brick:Flow_Sensor ; skos:definition "Measures the rate of flow of air"@en ; sh:rule [ a sh:TripleRule ; @@ -45500,6 +46561,7 @@ brick:Air_Flow_Sensor a owl:Class, brick:Cooling_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Cooling Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "Sets temperature for cooling"@en ; sh:rule [ a sh:TripleRule ; @@ -45522,12 +46584,26 @@ brick:Cooling_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:ICT_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "ICT Equipment"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "Information and Communications Technology (ICT) equipment operates with a processor to process data or logic and create digital signals."@en ; + sh:property [ a sh:PropertyShape ; + sh:datatype xsd:integer ; + sh:name "Number of Ports"^^xsd:string ; + sh:path rec:numberOfPorts ], + [ a sh:PropertyShape ; + sh:datatype xsd:integer ; + sh:name "Height (RUs)"^^xsd:string ; + sh:path rec:heightRUs ], + [ a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:description "The standard the equipment or device adheres to, e.g. IEEE 802.11."^^xsd:string ; + sh:name "Standard"^^xsd:string ; + sh:path rec:standard ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; sh:predicate brick:hasTag ; @@ -45540,11 +46616,13 @@ brick:ICT_Equipment a owl:Class, tag:ICT . brick:Leaving_Hot_Water a brick:Substance ; + rdfs:label "Leaving Hot Water"@en ; skos:broader brick:Hot_Water, brick:Leaving_Water . brick:Temperature_Deadband_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Deadband Setpoint"@en ; rdfs:subClassOf brick:Deadband_Setpoint, brick:Temperature_Setpoint ; skos:definition "Sets the size of a deadband of temperature"@en ; @@ -45568,10 +46646,11 @@ brick:Temperature_Deadband_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Water_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Water Flow Setpoint"@en ; rdfs:subClassOf brick:Flow_Setpoint ; skos:definition "Sets the target flow rate of water"@en ; sh:rule [ a sh:TripleRule ; @@ -45599,6 +46678,7 @@ brick:Water_Flow_Setpoint a owl:Class, brick:Water_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Water Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "Sets temperature of water"@en ; sh:rule [ a sh:TripleRule ; @@ -45621,10 +46701,11 @@ brick:Water_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Water . brick:Zone_Air a brick:Substance ; + rdfs:label "Zone Air"@en ; skos:broader brick:Air ; skos:definition "air inside a defined zone (e.g., corridors)."@en . @@ -45735,6 +46816,7 @@ tag:Waste a brick:Tag ; brick:Air_Quality_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Air Quality Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "A sensor which provides a measure of air quality"@en ; sh:property [ a sh:PropertyShape ; @@ -45765,35 +46847,8 @@ brick:Air_Quality_Sensor a owl:Class, tag:Sensor ; brick:hasQuantity qudtqk:DimensionlessRatio . -brick:Air_Temperature_Sensor a owl:Class, - sh:NodeShape ; - rdfs:subClassOf brick:Temperature_Sensor ; - skos:definition "Measures the temperature of air"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Air ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Point ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Sensor ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Temperature ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Air, - tag:Point, - tag:Sensor, - tag:Temperature ; - brick:hasQuantity brick:Temperature ; - brick:hasSubstance brick:Air . - brick:CO2_Concentration a brick:Quantity ; - rdfs:label "CO2Concentration"@en ; + rdfs:label "CO2 Concentration"@en ; qudt:applicableUnit unit:PPB, unit:PPM ; qudt:hasDimensionVector ; @@ -45804,6 +46859,7 @@ brick:CO2_Concentration a brick:Quantity ; skos:narrower brick:Differential_CO2_Concentration . brick:Condenser_Water a brick:Substance ; + rdfs:label "Condenser Water"@en ; skos:broader brick:Water ; skos:definition "Water used used to remove heat through condensation"@en ; skos:narrower brick:Entering_Condenser_Water, @@ -45811,6 +46867,7 @@ brick:Condenser_Water a brick:Substance ; brick:Damper a owl:Class, sh:NodeShape ; + rdfs:label "Damper"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Element inserted into an air-distribution system or element of an air-distribution system permitting modification of the air resistance of the system and consequently changing the airflow rate or shutting off the airflow."@en ; sh:rule [ a sh:TripleRule ; @@ -45826,6 +46883,7 @@ brick:Damper a owl:Class, brick:Effective_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Effective Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -45852,11 +46910,12 @@ brick:Effective_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Air . brick:Heating_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Heating Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "Sets temperature for heating"@en ; sh:rule [ a sh:TripleRule ; @@ -45879,10 +46938,11 @@ brick:Heating_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Occupied_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Occupied Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; sh:rule [ a sh:TripleRule ; sh:object tag:Air ; @@ -45909,7 +46969,7 @@ brick:Occupied_Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Air . brick:Position a brick:Quantity ; @@ -45923,8 +46983,17 @@ brick:Position a brick:Quantity ; brick:Sensor_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Sensor Equipment"@en ; rdfs:subClassOf brick:ICT_Equipment ; skos:definition "A piece of equipment for sensing some physical properties"@en ; + sh:property [ a sh:PropertyShape ; + sh:datatype xsd:double ; + sh:name "Battery Percentage"^^xsd:string ; + sh:path rec:batteryPercentage ], + [ a sh:PropertyShape ; + sh:datatype xsd:double ; + sh:name "Wi-Fi Signal Strength"^^xsd:string ; + sh:path rec:wifiSignalStrength ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; sh:predicate brick:hasTag ; @@ -45942,6 +47011,7 @@ brick:Sensor_Equipment a owl:Class, tag:Sensor . brick:Speed a brick:Quantity ; + rdfs:label "Speed"@en ; qudt:applicableUnit unit:BFT, unit:DEG-PER-HR, unit:DEG-PER-MIN, @@ -45967,12 +47037,14 @@ brick:Speed a brick:Quantity ; unit:YD-PER-HR, unit:YD-PER-MIN, unit:YD-PER-SEC ; + qudt:hasDimensionVector ; skos:narrower brick:Linear_Speed, brick:Rotational_Speed ; brick:hasQUDTReference qudtqk:Speed . brick:Static_Pressure_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Static Pressure Setpoint"@en ; rdfs:subClassOf brick:Pressure_Setpoint ; skos:definition "Sets static pressure"@en ; sh:rule [ a sh:TripleRule ; @@ -45995,10 +47067,11 @@ brick:Static_Pressure_Setpoint a owl:Class, tag:Pressure, tag:Setpoint, tag:Static ; - brick:hasQuantity brick:Static_Pressure . + brick:hasQuantity qudtqk:StaticPressure . brick:Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Sensor"@en ; rdfs:subClassOf brick:Sensor ; skos:definition "Measures temperature: the physical property of matter that quantitatively expresses the common notions of hot and cold"@en ; sh:property [ a sh:PropertyShape ; @@ -46022,10 +47095,11 @@ brick:Temperature_Sensor a owl:Class, brick:hasAssociatedTag tag:Point, tag:Sensor, tag:Temperature ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Unoccupied_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Unoccupied Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; skos:definition "Sets temperature of air when unoccupied"@en ; sh:rule [ a sh:TripleRule ; @@ -46053,10 +47127,11 @@ brick:Unoccupied_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Temperature, tag:Unoccupied ; - brick:hasQuantity brick:Temperature . + brick:hasQuantity qudtqk:Temperature . brick:Water_Flow_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Flow Sensor"@en ; rdfs:subClassOf brick:Flow_Sensor ; skos:definition "Measures the rate of flow of water"@en ; sh:rule [ a sh:TripleRule ; @@ -46082,12 +47157,57 @@ brick:Water_Flow_Sensor a owl:Class, brick:hasQuantity qudtqk:VolumeFlowRate ; brick:hasSubstance brick:Water . +brick:Air_Temperature_Sensor a owl:Class, + sh:NodeShape ; + rdfs:label "Air Temperature Sensor"@en ; + rdfs:subClassOf brick:Temperature_Sensor ; + skos:definition "Measures the temperature of air"@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Air ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Point ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Sensor ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Temperature ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Air, + tag:Point, + tag:Sensor, + tag:Temperature ; + brick:hasQuantity qudtqk:Temperature ; + brick:hasSubstance brick:Air . + +brick:Differential_Temperature a brick:Quantity ; + rdfs:label "Differential Temperature"@en ; + qudt:applicableUnit unit:DEG_C, + unit:DEG_F, + unit:DEG_R, + unit:DecaK, + unit:K, + unit:MegaK, + unit:MilliDEG_C, + unit:MilliK, + unit:PlanckTemperature ; + qudt:hasDimensionVector ; + qudt:isDeltaQuantity true ; + brick:hasQUDTReference qudtqk:Temperature . + brick:Entering_Water a brick:Substance ; + rdfs:label "Entering Water"@en ; skos:broader brick:Water ; skos:definition "Water that is entering a piece of equipment or system"@en . brick:Max_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Max Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places an upper bound on the range of permitted values of a Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -46113,6 +47233,7 @@ brick:Max_Limit a owl:Class, brick:Min_Limit a owl:Class, sh:NodeShape ; + rdfs:label "Min Limit"@en ; rdfs:subClassOf brick:Limit ; skos:definition "A parameter that places a lower bound on the range of permitted values of a Setpoint."@en ; sh:rule [ a sh:TripleRule ; @@ -46204,19 +47325,9 @@ rec:includes a owl:AsymmetricProperty, owl:ObjectProperty ; rdfs:label "includes"@en . -brick:Differential_Temperature a brick:Quantity ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:DEG_R, - unit:K, - unit:MilliDEG_C, - unit:PlanckTemperature ; - qudt:isDeltaQuantity true ; - skos:broader brick:Temperature ; - brick:hasQUDTReference qudtqk:Temperature . - brick:Electrical_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "Electrical Equipment"@en ; rdfs:subClassOf brick:Equipment ; sh:rule [ a sh:TripleRule ; sh:object tag:Electrical ; @@ -46231,6 +47342,7 @@ brick:Electrical_Equipment a owl:Class, brick:Enable_Command a owl:Class, sh:NodeShape ; + rdfs:label "Enable Command"@en ; rdfs:subClassOf brick:Command ; skos:definition "Commands that enable functionality"@en ; sh:rule [ a sh:TripleRule ; @@ -46251,6 +47363,7 @@ brick:Enable_Command a owl:Class, brick:Humidity_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Humidity Setpoint"@en ; rdfs:subClassOf brick:Setpoint ; skos:definition "Sets humidity"@en ; sh:rule [ a sh:TripleRule ; @@ -46271,11 +47384,13 @@ brick:Humidity_Setpoint a owl:Class, brick:hasQuantity qudtqk:PressureRatio . brick:Leaving_Water a brick:Substance ; + rdfs:label "Leaving Water"@en ; skos:broader brick:Water ; skos:definition "Water that is leaving a piece of equipment or system"@en . brick:Terminal_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Terminal Unit"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "A device that regulates the volumetric flow rate and/or the temperature of the controlled medium."@en ; sh:rule [ a sh:TripleRule ; @@ -46295,11 +47410,13 @@ brick:Terminal_Unit a owl:Class, tag:Unit . brick:Exhaust_Air a brick:Substance ; + rdfs:label "Exhaust Air"@en ; skos:broader brick:Air ; skos:definition "air that must be removed from a space due to contaminants, regardless of pressurization"@en . brick:Limit a owl:Class, sh:NodeShape ; + rdfs:label "Limit"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "A parameter that places an upper or lower bound on the range of permitted values of another point"@en ; sh:rule [ a sh:TripleRule ; @@ -46320,6 +47437,7 @@ brick:Limit a owl:Class, brick:Supply_Air_Flow_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Flow Setpoint"@en ; rdfs:subClassOf brick:Air_Flow_Setpoint ; owl:equivalentClass brick:Discharge_Air_Flow_Setpoint ; skos:definition "Sets supply air flow rate"@en ; @@ -46359,6 +47477,7 @@ brick:Supply_Air_Flow_Setpoint a owl:Class, brick:Supply_Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Supply Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Air_Temperature_Setpoint ; owl:equivalentClass brick:Discharge_Air_Temperature_Setpoint ; skos:definition "Temperature setpoint for supply air"@en ; @@ -46392,12 +47511,13 @@ brick:Supply_Air_Temperature_Setpoint a owl:Class, tag:Setpoint, tag:Supply, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Discharge_Air, brick:Supply_Air . brick:System a owl:Class, sh:NodeShape ; + rdfs:label "System"@en ; rdfs:subClassOf brick:Collection ; skos:definition "A System is a combination of equipment and auxiliary devices (e.g., controls, accessories, interconnecting means, and termi­nal elements) by which energy is transformed so it performs a specific function such as HVAC, service water heating, or lighting. (ASHRAE Dictionary)."@en ; sh:property [ sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Point ] [ sh:class brick:Loop ] [ sh:class brick:System ] [ sh:class brick:Location ] [ sh:class brick:PV_Array ] ) ; @@ -46443,31 +47563,15 @@ tag:Occupancy a brick:Tag ; tag:Plenum a brick:Tag ; rdfs:label "Plenum"@en . -tag:Refrigerant a brick:Tag ; - rdfs:label "Refrigerant"@en . - tag:Shade a brick:Tag ; rdfs:label "Shade"@en . tag:Solar a brick:Tag ; rdfs:label "Solar"@en . -brick:Air_Quality a brick:Quantity ; - skos:narrower brick:Ammonia_Concentration, - brick:CO2_Concentration, - brick:CO_Concentration, - brick:Formaldehyde_Concentration, - brick:Methane_Concentration, - brick:NO2_Concentration, - brick:Ozone_Concentration, - brick:PM10_Concentration, - brick:PM1_Concentration, - brick:PM2.5_Concentration, - brick:Radioactivity_Concentration, - brick:TVOC_Concentration . - brick:Fan a owl:Class, sh:NodeShape ; + rdfs:label "Fan"@en ; rdfs:subClassOf brick:HVAC_Equipment ; skos:definition "Any device with two or more blades or vanes attached to a rotating shaft used to produce an airflow for the purpose of comfort, ventilation, exhaust, heating, cooling, or any other gaseous transport."@en ; sh:rule [ a sh:TripleRule ; @@ -46483,6 +47587,7 @@ brick:Fan a owl:Class, brick:Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Parameter"@en ; rdfs:subClassOf brick:Point ; owl:disjointWith brick:Alarm, brick:Command, @@ -46507,24 +47612,9 @@ brick:Parameter a owl:Class, brick:hasAssociatedTag tag:Parameter, tag:Point . -brick:Valve a owl:Class, - sh:NodeShape ; - rdfs:seeAlso ; - rdfs:subClassOf brick:Equipment ; - skos:definition "A device that regulates, directs or controls the flow of a fluid by opening, closing or partially obstructing various passageways"@en ; - sh:rule [ a sh:TripleRule ; - sh:object tag:Equipment ; - sh:predicate brick:hasTag ; - sh:subject sh:this ], - [ a sh:TripleRule ; - sh:object tag:Valve ; - sh:predicate brick:hasTag ; - sh:subject sh:this ] ; - brick:hasAssociatedTag tag:Equipment, - tag:Valve . - brick:Air_Handling_Unit a owl:Class, sh:NodeShape ; + rdfs:label "Air Handling Unit"@en ; rdfs:subClassOf brick:HVAC_Equipment ; owl:equivalentClass brick:AHU, brick:Air_Handler_Unit ; @@ -46559,16 +47649,27 @@ brick:Air_Handling_Unit a owl:Class, tag:Handling, tag:Unit . -brick:Entity a owl:Class ; - sh:property bsh:hasLocationShape, - bsh:hasdeprecationShape, - bsh:isReplacedByShape, - bsh:latitudeShape, - bsh:longitudeShape, - bsh:timestampShape . +brick:Air_Quality a brick:Quantity ; + rdfs:label "Air Quality"@en ; + qudt:hasDimensionVector ; + skos:definition "Measure of the air quality in a space typically based on the concentration of pollutants"@en ; + skos:narrower brick:Ammonia_Concentration, + brick:CO2_Concentration, + brick:CO_Concentration, + brick:Formaldehyde_Concentration, + brick:GrainsOfMoisture, + brick:Methane_Concentration, + brick:NO2_Concentration, + brick:Ozone_Concentration, + brick:PM10_Concentration, + brick:PM1_Concentration, + brick:PM2.5_Concentration, + brick:Radon_Concentration, + brick:TVOC_Concentration . brick:Space a owl:Class, sh:NodeShape ; + rdfs:label "Space"@en ; rdfs:subClassOf brick:Location ; owl:deprecated true ; skos:definition "A part of the physical world or a virtual world whose 3D spatial extent is bounded actually or theoretically, and provides for certain functions within the zone it is contained in."@en ; @@ -46588,6 +47689,7 @@ brick:Space a owl:Class, brick:Water_Temperature_Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Water Temperature Sensor"@en ; rdfs:subClassOf brick:Temperature_Sensor ; skos:definition "Measures the temperature of water"@en ; sh:rule [ a sh:TripleRule ; @@ -46610,7 +47712,7 @@ brick:Water_Temperature_Sensor a owl:Class, tag:Sensor, tag:Temperature, tag:Water ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Water . tag:Dewpoint a brick:Tag ; @@ -46637,6 +47739,9 @@ tag:Loop a brick:Tag ; tag:Natural a brick:Tag ; rdfs:label "Natural"@en . +tag:Refrigerant a brick:Tag ; + rdfs:label "Refrigerant"@en . + tag:Relative a brick:Tag ; rdfs:label "Relative"@en . @@ -46651,6 +47756,7 @@ tag:Telecom a brick:Tag ; brick:Collection a owl:Class, sh:NodeShape ; + rdfs:label "Collection"@en ; rdfs:subClassOf brick:Class, brick:Entity, rec:Collection ; @@ -46682,14 +47788,9 @@ brick:Collection a owl:Class, sh:subject sh:this ] ; brick:hasAssociatedTag tag:Collection . -brick:Hot_Water a brick:Substance ; - skos:broader brick:Water ; - skos:definition "Hot water used for HVAC heating or supply to hot taps"@en ; - skos:narrower brick:Entering_Hot_Water, - brick:Leaving_Hot_Water . - brick:Meter a owl:Class, sh:NodeShape ; + rdfs:label "Meter"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "A device that measure usage or consumption of some media --- typically a form energy or power."@en ; sh:property bsh:hasSubMeterShape, @@ -46709,21 +47810,32 @@ brick:Meter a owl:Class, tag:Meter . brick:Outside_Air a brick:Substance ; + rdfs:label "Outside Air"@en ; skos:broader brick:Air ; skos:definition "air external to a defined zone (e.g., corridors)."@en . brick:Return_Air a brick:Substance ; + rdfs:label "Return Air"@en ; skos:broader brick:Air ; skos:definition "air removed from a space to be recirculated or exhausted. Air extracted from a space and totally or partially returned to an air conditioner, furnace, or other heating, cooling, or ventilating system."@en . brick:Chilled_Water a brick:Substance ; + rdfs:label "Chilled Water"@en ; skos:broader brick:Water ; skos:definition "water used as a cooling medium (particularly in air-conditioning systems or in processes) at below ambient temperature."@en ; skos:narrower brick:Entering_Chilled_Water, brick:Leaving_Chilled_Water . +brick:Hot_Water a brick:Substance ; + rdfs:label "Hot Water"@en ; + skos:broader brick:Water ; + skos:definition "Hot water used for HVAC heating or supply to hot taps"@en ; + skos:narrower brick:Entering_Hot_Water, + brick:Leaving_Hot_Water . + brick:Temperature_Parameter a owl:Class, sh:NodeShape ; + rdfs:label "Temperature Parameter"@en ; rdfs:subClassOf brick:Parameter ; skos:definition "Parameters relevant to temperature-related systems and points"@en ; sh:rule [ a sh:TripleRule ; @@ -46768,6 +47880,7 @@ tag:Voltage a brick:Tag ; brick:Air_Temperature_Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Air Temperature Setpoint"@en ; rdfs:subClassOf brick:Temperature_Setpoint ; skos:definition "Sets temperature of air"@en ; sh:rule [ a sh:TripleRule ; @@ -46790,76 +47903,25 @@ brick:Air_Temperature_Setpoint a owl:Class, tag:Point, tag:Setpoint, tag:Temperature ; - brick:hasQuantity brick:Temperature ; + brick:hasQuantity qudtqk:Temperature ; brick:hasSubstance brick:Air . -brick:Static_Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - skos:broader brick:Pressure ; - skos:narrower brick:Differential_Static_Pressure ; - brick:hasQUDTReference qudtqk:StaticPressure . +brick:Valve a owl:Class, + sh:NodeShape ; + rdfs:label "Valve"@en ; + rdfs:seeAlso ; + rdfs:subClassOf brick:Equipment ; + skos:definition "A device that regulates, directs or controls the flow of a fluid by opening, closing or partially obstructing various passageways"@en ; + sh:rule [ a sh:TripleRule ; + sh:object tag:Equipment ; + sh:predicate brick:hasTag ; + sh:subject sh:this ], + [ a sh:TripleRule ; + sh:object tag:Valve ; + sh:predicate brick:hasTag ; + sh:subject sh:this ] ; + brick:hasAssociatedTag tag:Equipment, + tag:Valve . tag:Bypass a brick:Tag ; rdfs:label "Bypass"@en . @@ -46886,20 +47948,33 @@ tag:Step a brick:Tag ; rdfs:label "Step"@en . brick:Discharge_Air a brick:Substance ; + rdfs:label "Discharge Air"@en ; owl:sameAs brick:Supply_Air ; skos:broader brick:Air ; skos:definition "the air exiting the registers (vents)."@en . +brick:Entity a owl:Class, + sh:NodeShape ; + rdfs:label "Entity"@en ; + sh:property bsh:aliasOfShape, + bsh:hasLocationShape, + bsh:hasdeprecationShape, + bsh:isReplacedByShape, + bsh:latitudeShape, + bsh:longitudeShape, + bsh:timestampShape . + brick:Supply_Air a brick:Substance ; + rdfs:label "Supply Air"@en ; owl:sameAs brick:Discharge_Air ; skos:broader brick:Air ; skos:definition "(1) air delivered by mechanical or natural ventilation to a space, composed of any combination of outdoor air, recirculated air, or transfer air. (2) air entering a space from an air-conditioning, heating, or ventilating apparatus for the purpose of comfort conditioning. Supply air is generally filtered, fan forced, and either heated, cooled, humidified, or dehumidified as necessary to maintain specified conditions. Only the quantity of outdoor air within the supply airflow may be used as replacement air."@en . brick:hasPart a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has part"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:isPartOf ; skos:definition "The subject is composed in part of the entity given by the object"@en . @@ -46921,94 +47996,23 @@ tag:Source a brick:Tag ; tag:Steam a brick:Tag ; rdfs:label "Steam"@en . -brick:Pressure a brick:Quantity ; - qudt:applicableUnit unit:ATM, - unit:ATM_T, - unit:BAR, - unit:BARAD, - unit:BARYE, - unit:CentiBAR, - unit:CentiM_H20_4DEG_C, - unit:CentiM_H2O, - unit:CentiM_H2O_4DEG_C, - unit:CentiM_HG, - unit:CentiM_HG_0DEG_C, - unit:DYN-PER-CentiM2, - unit:DecaPA, - unit:DeciBAR, - unit:FT_H2O, - unit:FT_H2O_39dot2DEG_F, - unit:FT_HG, - unit:GM_F-PER-CentiM2, - unit:GigaPA, - unit:HectoBAR, - unit:HectoPA, - unit:IN_H2O, - unit:IN_H2O_39dot2DEG_F, - unit:IN_H2O_60DEG_F, - unit:IN_HG, - unit:IN_HG_32DEG_F, - unit:IN_HG_60DEG_F, - unit:KIP_F-PER-IN2, - unit:KiloBAR, - unit:KiloGM-PER-M-SEC2, - unit:KiloGM_F-PER-CentiM2, - unit:KiloGM_F-PER-M2, - unit:KiloGM_F-PER-MilliM2, - unit:KiloLB_F-PER-IN2, - unit:KiloN-PER-M2, - unit:KiloPA, - unit:KiloPA_A, - unit:LB_F-PER-FT2, - unit:LB_F-PER-IN2, - unit:M_H2O, - unit:MegaBAR, - unit:MegaPA, - unit:MegaPSI, - unit:MicroATM, - unit:MicroBAR, - unit:MicroPA, - unit:MicroTORR, - unit:MilliBAR, - unit:MilliM_H2O, - unit:MilliM_HG, - unit:MilliM_HGA, - unit:MilliPA, - unit:MilliTORR, - unit:N-PER-CentiM2, - unit:N-PER-M2, - unit:N-PER-MilliM2, - unit:PA, - unit:PDL-PER-FT2, - unit:PDL-PER-IN2, - unit:PSI, - unit:PicoPA, - unit:PlanckPressure, - unit:TORR ; - skos:narrower brick:Atmospheric_Pressure, - brick:Differential_Pressure, - brick:Dynamic_Pressure, - brick:Gauge_Pressure, - brick:Static_Pressure, - brick:Velocity_Pressure ; - brick:hasQUDTReference qudtqk:Pressure . - brick:Point a owl:Class, sh:NodeShape ; + rdfs:label "Point"@en ; rdfs:subClassOf brick:Class, brick:Entity ; - sh:node [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Equipment ] ], - [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Location ] ], - [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class rec:Space ] ], - [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ], - [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ], - [ sh:message "Point is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ; + sh:not [ sh:class brick:Equipment ; + sh:message "Instances of Point cannot be Equipment." ], + [ sh:class brick:Location ; + sh:message "Instances of Point cannot be Locations." ], + [ sh:class brick:Substance ; + sh:message "Instances of Point cannot be Substances." ], + [ sh:class brick:Quantity ; + sh:message "Instances of Point cannot be Quantities." ], + [ sh:class brick:Collection ; + sh:message "Instances of Point cannot be Collections." ], + [ sh:class brick:EntityProperty ; + sh:message "Instances of Point cannot be EntityProperties." ] ; sh:property [ a sh:PropertyShape ; sh:class brick:Quantity ; sh:name "has quantity" ; @@ -47033,6 +48037,7 @@ brick:Point a owl:Class, bsh:haselectricalComplexPowerShape, bsh:haselectricalFlowShape, bsh:haslastKnownValueShape, + bsh:hasresolutionShape, bsh:isPointOfShape ; sh:rule [ a sh:TripleRule ; sh:object tag:Point ; @@ -47045,6 +48050,7 @@ tag:CO2 a brick:Tag ; brick:Location a owl:Class, sh:NodeShape ; + rdfs:label "Location"@en ; rdfs:subClassOf brick:Class, brick:Entity, rec:Space ; @@ -47103,6 +48109,7 @@ tag:Service a brick:Tag ; brick:Setpoint a owl:Class, sh:NodeShape ; + rdfs:label "Setpoint"@en ; rdfs:seeAlso , "https://xp20.ashrae.org/terminology/index.php?term=setpoint" ; rdfs:subClassOf brick:Point ; @@ -47131,6 +48138,7 @@ brick:Setpoint a owl:Class, brick:Alarm a owl:Class, sh:NodeShape ; + rdfs:label "Alarm"@en ; rdfs:seeAlso ; rdfs:subClassOf brick:Point ; owl:disjointWith brick:Command, @@ -47175,6 +48183,7 @@ tag:Thermal a brick:Tag ; rdfs:label "Thermal"@en . brick:Water a brick:Substance ; + rdfs:label "Water"@en ; skos:broader brick:Liquid ; skos:definition "transparent, odorless, tasteless liquid; a compound of hydrogen and oxygen (H2O), containing 11.188% hydrogen and 88.812% oxygen by mass; freezing at 32°F (0°C); boiling near 212°F (100°C)."@en ; skos:narrower brick:Blowdown_Water, @@ -47229,42 +48238,36 @@ tag:Power a brick:Tag ; sdo:name "Jason Koh" ] ) ; dcterms:issued "2016-11-16" ; dcterms:license ; - dcterms:modified "2024-08-22" ; + dcterms:modified "2025-04-16" ; dcterms:publisher [ a sdo:Consortium ; sdo:legalName "Brick Consortium, Inc" ; sdo:sameAs ] ; rdfs:isDefinedBy ; rdfs:seeAlso ; owl:imports , - , - , - , - , - , - , - , - , - , + , + , , - , ; - owl:versionInfo "1.4.1" ; - sh:declare [ sh:namespace "https://w3id.org/rec#"^^xsd:anyURI ; - sh:prefix "rec" ], + owl:versionInfo "1.4.3" ; + sh:declare [ sh:namespace "http://www.w3.org/2000/01/rdf-schema#"^^xsd:anyURI ; + sh:prefix "rdfs" ], [ sh:namespace "http://www.w3.org/1999/02/22-rdf-syntax-ns#"^^xsd:anyURI ; sh:prefix "rdf" ], - [ sh:namespace "https://brickschema.org/schema/Brick#"^^xsd:anyURI ; - sh:prefix "brick" ], - [ sh:namespace "http://www.w3.org/2000/01/rdf-schema#"^^xsd:anyURI ; - sh:prefix "rdfs" ], - [ sh:namespace "http://www.w3.org/ns/shacl#"^^xsd:anyURI ; - sh:prefix "sh" ], - [ sh:namespace "http://www.w3.org/2002/07/owl#"^^xsd:anyURI ; - sh:prefix "owl" ], [ sh:namespace "https://brickschema.org/schema/Brick/ref#"^^xsd:anyURI ; sh:prefix "ref" ], + [ sh:namespace "http://www.w3.org/2001/XMLSchema#"^^xsd:anyURI ; + sh:prefix "xsd" ], + [ sh:namespace "http://www.w3.org/ns/shacl#"^^xsd:anyURI ; + sh:prefix "sh" ], [ sh:namespace "http://data.ashrae.org/standard223#"^^xsd:anyURI ; - sh:prefix "s223" ] . + sh:prefix "s223" ], + [ sh:namespace "https://w3id.org/rec#"^^xsd:anyURI ; + sh:prefix "rec" ], + [ sh:namespace "https://brickschema.org/schema/Brick#"^^xsd:anyURI ; + sh:prefix "brick" ], + [ sh:namespace "http://www.w3.org/2002/07/owl#"^^xsd:anyURI ; + sh:prefix "owl" ] . tag:Band a brick:Tag ; rdfs:label "Band"@en . @@ -47273,8 +48276,9 @@ tag:ICT a brick:Tag ; rdfs:label "ICT"@en . brick:Differential_Pressure a brick:Quantity ; + rdfs:label "Differential Pressure"@en ; + qudt:hasDimensionVector ; qudt:isDeltaQuantity true ; - skos:broader brick:Pressure ; skos:narrower brick:Differential_Dynamic_Pressure, brick:Differential_Static_Pressure . @@ -47290,12 +48294,9 @@ tag:Mode a brick:Tag ; tag:Storage a brick:Tag ; rdfs:label "Storage"@en . -brick:Relationship a owl:ObjectProperty ; - rdfs:label "Relationship"@en ; - skos:definition "Super-property of all Brick relationships between entities (Equipment, Location, Point)" . - brick:Room a owl:Class, sh:NodeShape ; + rdfs:label "Room"@en ; rdfs:subClassOf brick:Space ; owl:deprecated true ; skos:definition "Base class for all more specific room types."@en ; @@ -47324,6 +48325,7 @@ tag:Safety a brick:Tag ; brick:Command a owl:Class, sh:NodeShape ; + rdfs:label "Command"@en ; rdfs:subClassOf brick:Point ; owl:disjointWith brick:Alarm, brick:Parameter, @@ -47353,12 +48355,13 @@ tag:Gas a brick:Tag ; brick:HVAC_Equipment a owl:Class, sh:NodeShape ; + rdfs:label "HVAC Equipment"@en ; rdfs:subClassOf brick:Equipment ; skos:definition "See Heating_Ventilation_Air_Conditioning_System"@en ; - sh:property [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] ) ; - sh:path brick:hasPart ], - [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] [ sh:class rec:Space ] ) ; - sh:path brick:feeds ] ; + sh:property [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] [ sh:class rec:Space ] ) ; + sh:path brick:feeds ], + [ sh:or ( [ sh:class brick:HVAC_Equipment ] [ sh:class brick:Valve ] ) ; + sh:path brick:hasPart ] ; sh:rule [ a sh:TripleRule ; sh:object tag:Equipment ; sh:predicate brick:hasTag ; @@ -47370,6 +48373,11 @@ brick:HVAC_Equipment a owl:Class, brick:hasAssociatedTag tag:Equipment, tag:HVAC . +brick:Relationship a brick:Relationship ; + rdfs:label "Relationship"@en ; + rdfs:subClassOf owl:ObjectProperty ; + skos:definition "Super-property of all Brick relationships between entities (Equipment, Location, Point)" . + tag:Enable a brick:Tag ; rdfs:label "Enable"@en . @@ -47380,16 +48388,18 @@ brick:Equipment a owl:Class, brick:Entity, rec:Asset ; skos:definition "devices that serve all or part of the building and may include electric power, lighting, transportation, or service water heating, including, but not limited to, furnaces, boilers, air conditioners, heat pumps, chillers, water heaters, lamps, luminaires, ballasts, elevators, escalators, or other devices or installations."@en ; - sh:node [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Point ] ], - [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Location ] ], - [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Substance ] ], - [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Quantity ] ], - [ sh:message "Equipment is an exclusive top class." ; - sh:not [ sh:class brick:Collection ] ] ; + sh:not [ sh:class brick:Location ; + sh:message "Instances of Equipment cannot be Locations." ], + [ sh:class brick:Substance ; + sh:message "Instances of Equipment cannot be Substances." ], + [ sh:class brick:Quantity ; + sh:message "Instances of Equipment cannot be Quantities." ], + [ sh:class brick:Collection ; + sh:message "Instances of Equipment cannot be Collections." ], + [ sh:class brick:Point ; + sh:message "Instances of Equipment cannot be Points." ], + [ sh:class brick:EntityProperty ; + sh:message "Instances of Equipment cannot be EntityProperties." ] ; sh:property [ a sh:PropertyShape ; sh:name "feeds" ; sh:nodeKind sh:IRI ; @@ -47455,6 +48465,7 @@ brick:Equipment a owl:Class, brick:Status a owl:Class, sh:NodeShape ; + rdfs:label "Status"@en ; rdfs:subClassOf brick:Point ; owl:disjointWith brick:Alarm, brick:Command, @@ -47491,9 +48502,6 @@ tag:Unit a brick:Tag ; tag:Fan a brick:Tag ; rdfs:label "Fan"@en . -tag:Level a brick:Tag ; - rdfs:label "Level"@en . - rec:value a owl:DatatypeProperty ; rdfs:label "value"@en . @@ -47503,16 +48511,17 @@ tag:Exhaust a brick:Tag ; tag:High a brick:Tag ; rdfs:label "High"@en . +tag:Level a brick:Tag ; + rdfs:label "Level"@en . + tag:Max a brick:Tag ; rdfs:label "Max"@en . tag:Min a brick:Tag ; rdfs:label "Min"@en . -brick:EntityProperty a owl:Class ; - rdfs:subClassOf owl:ObjectProperty . - brick:Air a brick:Substance ; + rdfs:label "Air"@en ; skos:broader brick:Gas ; skos:definition "the invisible gaseous substance surrounding the earth, a mixture mainly of oxygen and nitrogen."@en ; skos:narrower brick:Building_Air, @@ -47534,6 +48543,10 @@ tag:Occupied a brick:Tag ; tag:Unoccupied a brick:Tag ; rdfs:label "Unoccupied"@en . +brick:EntityProperty a owl:ObjectProperty ; + rdfs:label "EntityProperty"@en ; + rdfs:subClassOf brick:Relationship . + tag:Pump a brick:Tag ; rdfs:label "Pump"@en . @@ -47542,6 +48555,7 @@ tag:Shed a brick:Tag ; brick:Sensor a owl:Class, sh:NodeShape ; + rdfs:label "Sensor"@en ; rdfs:seeAlso "https://xp20.ashrae.org/terminology/index.php?term=Sensor" ; rdfs:subClassOf brick:Point ; owl:disjointWith brick:Alarm, @@ -47564,19 +48578,40 @@ brick:Sensor a owl:Class, tag:Return a brick:Tag ; rdfs:label "Return"@en . -brick:lastKnownValue a brick:EntityProperty ; +brick:lastKnownValue a owl:ObjectProperty, + brick:EntityProperty ; rdfs:label "Last known value"@en ; skos:definition "The last known value of the Point entity" . tag:Condenser a brick:Tag ; rdfs:label "Condenser"@en . +brick:hasUnit a owl:AsymmetricProperty, + owl:IrreflexiveProperty, + owl:ObjectProperty, + brick:Relationship ; + rdfs:label "Has unit"@en ; + skos:definition "The QUDT unit associated with this Brick entity (usually a Brick Point instance or Entity Property)"@en . + tag:Humidity a brick:Tag ; rdfs:label "Humidity"@en . +brick:Quantity a owl:Class, + sh:NodeShape ; + rdfs:label "Quantity"@en ; + rdfs:subClassOf qudt:QuantityKind, + skos:Concept, + sosa:ObservableProperty, + brick:Measurable ; + sh:property bsh:hasQUDTReferenceShape . + tag:Reset a brick:Tag ; rdfs:label "Reset"@en . +bsh:NumericValue a rdf:List ; + rdf:first [ sh:datatype xsd:float ] ; + rdf:rest ( [ sh:datatype xsd:decimal ] [ sh:datatype xsd:integer ] [ sh:datatype xsd:double ] ) . + tag:Load a brick:Tag ; rdfs:label "Load"@en . @@ -47589,57 +48624,42 @@ tag:Static a brick:Tag ; tag:Zone a brick:Tag ; rdfs:label "Zone"@en . -brick:Substance a owl:Class ; +brick:Substance a owl:Class, + sh:NodeShape ; rdfs:label "Substance"@en ; rdfs:subClassOf sosa:FeatureOfInterest, brick:Measurable . -brick:hasUnit a owl:AsymmetricProperty, - owl:IrreflexiveProperty, - owl:ObjectProperty ; - rdfs:label "Has unit"@en ; - rdfs:subPropertyOf brick:Relationship ; - skos:definition "The QUDT unit associated with this Brick entity (usually a Brick Point instance or Entity Property)"@en . - -bsh:NumericValue a rdf:List ; - rdf:first [ sh:datatype xsd:float ] ; - rdf:rest ( [ sh:datatype xsd:decimal ] [ sh:datatype xsd:integer ] [ sh:datatype xsd:double ] ) . - tag:Entering a brick:Tag ; rdfs:label "Entering"@en . tag:Leaving a brick:Tag ; rdfs:label "Leaving"@en . +brick:EntityPropertyValue a owl:Class, + sh:NodeShape ; + rdfs:label "EntityPropertyValue"@en ; + rdfs:subClassOf brick:Entity . + +brick:value a rdf:Property, + brick:Relationship ; + rdfs:label "Value"@en ; + rdfs:subPropertyOf qudt:value, + rec:value ; + skos:definition "The basic value of an entity property" . + +bsh:ValueShape a owl:Class, + sh:NodeShape . + tag:Cool a brick:Tag ; rdfs:label "Cool"@en . tag:PID a brick:Tag ; rdfs:label "PID"@en . -brick:Quantity a owl:Class ; - rdfs:label "Quantity"@en ; - rdfs:subClassOf qudt:QuantityKind, - skos:Concept, - sosa:ObservableProperty, - brick:Measurable ; - sh:property bsh:hasQUDTReferenceShape . - -brick:EntityPropertyValue a owl:Class . - -bsh:ValueShape a owl:Class, - sh:NodeShape . - tag:Chilled a brick:Tag ; rdfs:label "Chilled"@en . -brick:value a rdf:Property ; - rdfs:label "Value"@en ; - rdfs:subPropertyOf qudt:value, - brick:Relationship, - rec:value ; - skos:definition "The basic value of an entity property" . - tag:Valve a brick:Tag ; rdfs:label "Valve"@en . @@ -47661,20 +48681,6 @@ tag:Alarm a brick:Tag ; tag:Command a brick:Tag ; rdfs:label "Command"@en . -brick:Temperature a brick:Quantity ; - qudt:applicableUnit unit:DEG_C, - unit:DEG_F, - unit:DEG_R, - unit:K, - unit:MilliDEG_C, - unit:PlanckTemperature ; - skos:narrower brick:Differential_Temperature, - brick:Dry_Bulb_Temperature, - brick:Operative_Temperature, - brick:Radiant_Temperature, - brick:Wet_Bulb_Temperature ; - brick:hasQUDTReference qudtqk:Temperature . - tag:Discharge a brick:Tag ; rdfs:label "Discharge"@en . @@ -47705,22 +48711,25 @@ tag:Parameter a brick:Tag ; tag:Pressure a brick:Tag ; rdfs:label "Pressure"@en . -tag:Temperature a brick:Tag ; - rdfs:label "Temperature"@en . - tag:Water a brick:Tag ; rdfs:label "Water"@en . -tag:Air a brick:Tag ; - rdfs:label "Air"@en . +tag:Temperature a brick:Tag ; + rdfs:label "Temperature"@en . tag:Setpoint a brick:Tag ; rdfs:label "Setpoint"@en . +tag:Air a brick:Tag ; + rdfs:label "Air"@en . + tag:Sensor a brick:Tag ; rdfs:label "Sensor"@en . -brick:Tag a owl:Class ; +brick:Tag a owl:Class, + sh:NodeShape ; + rdfs:label "Tag"@en ; + rdfs:subClassOf brick:Entity ; sh:property bsh:isAssociatedWithShape, bsh:isTagOfShape . @@ -47735,8 +48744,8 @@ tag:Point a brick:Tag ; brick:hasTag a owl:AsymmetricProperty, owl:IrreflexiveProperty, - owl:ObjectProperty ; + owl:ObjectProperty, + brick:Relationship ; rdfs:label "Has tag"@en ; - rdfs:subPropertyOf brick:Relationship ; owl:inverseOf brick:isTagOf ; skos:definition "The subject has the given tag"@en . diff --git a/libraries/qudt/SCHEMA-FACADE_QUDT.ttl b/libraries/qudt/SCHEMA-FACADE_QUDT.ttl new file mode 100644 index 000000000..ccd09e902 --- /dev/null +++ b/libraries/qudt/SCHEMA-FACADE_QUDT.ttl @@ -0,0 +1,16 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:versionInfo "Created with TopBraid Composer" ; + rdfs:comment "Facade graph for single place to redirect QUDT schema imports. Note that currently, the functions import uses SPIN and OWL." ; + rdfs:label "QUDT SCHEMA Facade graph - v3.1.0" . + + diff --git a/libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl b/libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl new file mode 100644 index 000000000..19f46369b --- /dev/null +++ b/libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl @@ -0,0 +1,4710 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dc: . +@prefix dcterms: . +@prefix dtype: . +@prefix prov: . +@prefix qudt: . +@prefix qudt.type: . +@prefix sh: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports sh: ; + rdfs:label "QUDT SCHEMA - Datatypes" ; + vaem:hasCatalogEntry voag:QUDT-SchemaCatalogEntry ; + vaem:hasGraphMetadata ; + vaem:hasGraphRole vaem:SchemaGraph ; + vaem:intent "This ontology is to be used by other ontologies that need to reference type definitions." ; + vaem:specificity 1 ; + vaem:url "http://qudt.org/3.1.0/schema/dtype"^^xsd:anyURI . + +qudt:AbstractDatatype + a owl:Class ; + dcterms:description """ +

An "Abstract Datatype" (ADT) is a specification of a set of data and the set of operations that can be performed on the data. + Such a data type is abstract in the sense that it is independent of various concrete implementations. + The definition can be mathematical, or it can be programmed as an interface. + A first class ADT supports the creation of multiple instances of the ADT, and the interface normally provides a constructor, + which returns an abstract handle to new data, and several operations, + which are functions accepting the abstract handle as an argument.

+ """^^rdf:HTML ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Abstract Datatype" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:AerospaceCoordinateSystem + a owl:Class ; + dcterms:description "A sub-type of 'Coordinate system'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Aerospace coordinate system" ; + rdfs:subClassOf qudt:CoordinateSystem . + +qudt:AlgebraicDatatype + a owl:Class ; + dcterms:description """ +

An "Algebraic Datatype" is a datatype each of whose values are data from other data types wrapped in one of the constructors of the data type. +Any wrapped datum is an argument to the constructor. +In contrast to other data types, the constructor is not executed and the only way to operate on the data is to unwrap the constructor using pattern matching. +

+

The most common algebraic data type is a list with two constructors: Nil or [] for an empty list, and Cons (an abbreviation of constructor), + ::, or : for the combination of a new element with a shorter list (for example (Cons 1 '(2 3 4)) or 1:[2,3,4]). +

+

Special cases of algebraic types are product types i.e. records (only one constructor) and enumerated types (many constructors with no arguments). +Algebraic types are one kind of composite type (i.e. a type formed by combining other types). +

+

An algebraic data type may also be an abstract data type (ADT) if it is exported from a module without its constructors. +Values of such a type can only be manipulated using functions defined in the same module as the type itself. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Algebraic Datatype" ; + rdfs:seeAlso qudt:AbstractDatatype ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:AlignmentType + a owl:Class ; + dcterms:description "Specifies how a physical data field is aligned. The alignment could be at a bit, byte or word boundary." ; + owl:oneOf ( qudt.type:BitAligned qudt.type:ByteAligned qudt.type:WordAligned ) ; + rdfs:isDefinedBy ; + rdfs:label "Alignment type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:Array + a owl:Class ; + dcterms:description """ +

An array is represented as ordered entries of values arranged according to the dimensions given. + The dimensions are given as a list of integers where each integer is the cardinality of each dimension. + The number of dimensions is specified in the attribute 'dimensionality'. + Optionally a reference can be made to a variable, whose values are the array entries. + The data type of the array entries is an optional field, 'elementType', which points to a data type definition. + If the data type is given, then it applies to all elements. + If it is not given then the elements can be of different types for each position in the array. +

+

+ The property 'type:typeMatrix' must refer to a matrix of types. + If a default value is given this can be used to place the appropriate value in a cell when an entry value is not known. + If no dimensionality or dimension vector is specified the array is under-specified but still legitimate as a place-holder for a data type. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Array Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ArrayDataOrderType ; + owl:onProperty qudt:dataOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom ; + owl:onProperty qudt:typeMatrix ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:byRow ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:dataOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:dimensions ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:dimensionality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:typeMatrix ; + ] . + +qudt:ArrayDataOrderType + a owl:Class ; + dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version." ; + owl:oneOf ( qudt:ByColumn qudt:ByRow qudt:ByLeftMostIndex ) ; + rdfs:isDefinedBy ; + rdfs:label "Array data order type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ArrayIndex + a owl:Class ; + dcterms:description "An Array Index Type is a data type that specifies the properties of data structures that hold array indexes." ; + rdfs:isDefinedBy ; + rdfs:label "Array Index Type" ; + rdfs:subClassOf qudt:Vector ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:UNSIGNED-INTEGER ; + owl:onProperty qudt:datatype ; + ] . + +qudt:ArrayIndexType + a owl:Class ; + dcterms:description "An Array Index Type is a data type that specifies the properties of data structures that hold array indexes." ; + rdfs:label "Array Index Type" ; + rdfs:subClassOf qudt:VectorType . + +qudt:ArrayType + a owl:Class ; + dcterms:description """ +

An array type is a type specification for ordered entries of values arranged according to the dimensions given. + The dimensions are given as a list of integers where each integer is the cardinality of each dimension. + The number of dimensions is specified in the attribute 'dimensionality'. +

+

Optionally a reference can be made to a variable, whose values are the array entries. + The data type of the array entries is an optional field, 'elementType', which points to a data type definition. + If the data type is given, then it applies to all elements. + If it is not given then the elements can be of different types for each position in the array. +

+

The property qudt:typeMatrix must refer to a matrix of types. + If a default value is given this can be used to place the appropriate value in a cell when an entry value is not known. + If no dimensionality or dimension vector is specified the array is under-specified but still legitimate as a place-holder for a data type. +

"""^^rdf:HTML ; + rdfs:label "Array Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:AssociativeArray + a owl:Class ; + dcterms:description """ + An Associative Array (or Map) is an abstract data type composed of a collection of keys and a collection of values, + where each key is associated with one value. + The operation of finding the value associated with a key is called a lookup or indexing, + and this is the most important operation supported by an associative array. + The relationship between a key and its value is sometimes called a mapping or binding. + """ ; + owl:equivalentClass qudt:Map ; + rdfs:isDefinedBy ; + rdfs:label "Associative Array" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:AssociativeArrayType + a owl:Class ; + dcterms:description """ + An Associative Array (or Map) is an abstract data type composed of a collection of keys and a collection of values, + where each key is associated with one value. + The operation of finding the value associated with a key is called a lookup or indexing, + and this is the most important operation supported by an associative array. + The relationship between a key and its value is sometimes called a mapping or binding. + """ ; + owl:equivalentClass qudt:MapType ; + rdfs:label "Associative Array Type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:AuralCue + a owl:Class ; + dcterms:description """ +

An aural cue is a sound produced by a device or a system that is used to alert personnel of of an advisory, cautionary, warning, or emergency state. +

"""^^rdf:HTML ; + rdfs:label "Aural Cue" ; + rdfs:subClassOf qudt:ModalCue . + +qudt:AxialOrientationType + a owl:Class ; + dcterms:description "The axial orientation of a coordinate system frame axis." ; + owl:oneOf ( qudt.type:PositiveZ qudt.type:PositiveY qudt.type:NegativeY qudt.type:NegativeZ + qudt.type:PositiveX qudt.type:NegativeX ) ; + rdfs:isDefinedBy ; + rdfs:label "Axial Orientation Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:BalancedTree + a owl:Class ; + dcterms:description """ +

A Balanced Tree Type is a data type that defines the properties of data structures that represent balanced trees. + A balanced tree is a tree where no leaf is much farther away from the root than any other leaf. + Different balancing schemes allow different definitions of "much farther" and different amounts of work to keep them balanced. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Balanced Tree Type" ; + rdfs:subClassOf qudt:Tree ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxDepth ; + ] . + +qudt:BalancedTreeType + a owl:Class ; + dcterms:description """ +

A Balanced Tree Type is a data type that defines the properties of data structures that represent balanced trees. + A balanced tree is a tree where no leaf is much farther away from the root than any other leaf. + Different balancing schemes allow different definitions of "much farther" and different amounts of work to keep them balanced. +

"""^^rdf:HTML ; + rdfs:label "Balanced Tree Type" ; + rdfs:subClassOf qudt:TreeType . + +qudt:BigIntegerType + a owl:Class ; + dcterms:description "A Big Integer is an integer that can be represented in eight octets (64 bits) of machine memory. Big integers may be signed or unsigned." ; + rdfs:isDefinedBy ; + rdfs:label "Big Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 64 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 8 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:BinaryTree + a owl:Class ; + dcterms:description """ +

A Binary Tree Type is a data type that defines the properties of data structures that represent binary trees. + A binary tree is a tree in which each node has at most 2 children. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Binary Tree Type" ; + rdfs:subClassOf qudt:Tree . + +qudt:BinaryTreeType + a owl:Class ; + dcterms:description """ +

A Binary Tree Type is a data type that defines the properties of data structures that represent binary trees. + A binary tree is a tree in which each node has at most 2 children. +

"""^^rdf:HTML ; + rdfs:label "Binary Tree Type" ; + rdfs:subClassOf qudt:TreeType . + +qudt:BitEncodingType + a owl:Class ; + dcterms:description """ +

A bit encoding is a correspondence between the two possible values of a bit, 0 or 1, and some interpretation. + For example, in a boolean encoding, a bit denotes a truth value, where 0 corresponds to False and 1 corresponds to True. +

A Binary Tree Type is a data type that defines the properties of data structures that represent binary trees. + A binary tree is a tree in which each node has at most 2 children. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Bit Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:BitFieldType + a owl:Class ; + dcterms:description """ +

A bit field is a common idiom used in computer programming to store a set of Boolean datatype flags compactly, as a series of bits. + The bit field is stored in an integral type of known, fixed bit-width. + Each Boolean flag is stored in a separate bit. Usually the source code will define a set of constants, each a power of two, that semantically associate each individual bit with its respective Boolean flag. + The bitwise operators and, or, and not are used in combination to set, reset and test the flags. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field Type" ; + rdfs:subClassOf qudt:ScalarDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:BitField ; + owl:onProperty qudt:encodedValue ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:encodedValue ; + ] . + +qudt:BooleanEncodingType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Boolean encoding type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:BooleanType + a owl:Class ; + dcterms:description "A boolean data type can take on only two values." ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Type" ; + rdfs:subClassOf qudt:OrdinalType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:BooleanEncodingType ; + owl:onProperty qudt:encoding ; + ] . + +qudt:BooleanTypeEnumeratedValue + a owl:Class ; + dcterms:description "Specifies how a boolean value is expressed" ; + rdfs:isDefinedBy ; + rdfs:label "boolean value" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ByteEncodingType + a owl:Class ; + dcterms:description "This class contains the various ways that information may be encoded into bytes." ; + rdfs:isDefinedBy ; + rdfs:label "Byte Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:CardinalityType + a owl:Class ; + dcterms:description """ +

In mathematics, the cardinality of a set is a measure of the number of elements of the set. + For example, the set A = {2, 4, 6} contains 3 elements, and therefore A has a cardinality of 3. + There are two approaches to cardinality – one which compares sets directly using bijections and injections, + and another which uses cardinal numbers. +

"""^^rdf:HTML ; + owl:oneOf ( qudt:CT_COUNTABLY-INFINITE qudt:CT_FINITE ) ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + rdfs:label "Cardinality Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:CartesianCoordinates + a owl:Class ; + dcterms:description """ + A set of variables which fix a geometric object. + If the coordinates are distances measured along perpendicular axes, they are known as Cartesian coordinates. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian Coordinate Type" ; + rdfs:subClassOf qudt:Coordinates . + +qudt:CartesianCoordinatesType + a owl:Class ; + dcterms:description """ +

A set of variables which fix a geometric object. + If the coordinates are distances measured along perpendicular axes, they are known as Cartesian coordinates. +

"""^^rdf:HTML ; + rdfs:label "Cartesian Coordinate Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:CharEncodingType + a owl:Class ; + dcterms:description """ +

The class of all character encoding schemes. + Each defines a rule or algorithm for encoding character data as a sequence of bits or bytes. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding Type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:CharacterType + a owl:Class ; + dcterms:description """ + A Character Type is a data type that defines the type and encoding of single characters. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Character Type" ; + rdfs:subClassOf qudt:OrdinalType . + +qudt:CollectionKind + a owl:Class ; + dcterms:description """ +

A collection is a grouping of some variable number of zero or more data items that need to be operated upon together in some controlled fashion. + Generally, the data items will all share the same data type or are derived from some common ancestor data type. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Collection Type" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:ColorCue + a owl:Class ; + dcterms:description """ +

A visual cue that uses color to distinguish it from other cues. + Each color cue has exactly one corresponding coordinate point in the RGB space. +

"""^^rdf:HTML ; + rdfs:label "Color Cue" ; + rdfs:subClassOf qudt:VisualCue . + +qudt:CompositeDataStructure + a owl:Class ; + dcterms:description """ +

Composite Data Structure, also referred to as Data Record is a datatype that aggregates element of possibly different types. + The aggregated items are called fields or members and are usually identified or indexed by field labels. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + rdfs:label "Composite Data Structure" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:CompositeDatatype + a owl:Class ; + dcterms:description """ +

Composite types are datatypes which can be constructed in a programming language out of that language's basic primitive types and other composite types. + The act of constructing a composite type is known as composition. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Composite Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:AlignmentType ; + owl:onProperty qudt:alignment ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:PaddingType ; + owl:onProperty qudt:padding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:TypeList ; + owl:onProperty qudt:elementTypeList ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:padding ; + ] . + +qudt:CompositeTable + a owl:Class ; + dcterms:description "A sub-type of 'Table Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Composite Table Type" ; + rdfs:subClassOf qudt:Table . + +qudt:CompositionFunction + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Composition function" ; + rdfs:subClassOf qudt:Function . + +qudt:CompositionTreeType + a owl:Class ; + rdfs:subClassOf qudt:TreeType . + +qudt:Concept + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Concept" ; + rdfs:subClassOf owl:Thing . + +qudt:Container + a owl:Class ; + dcterms:description """ +

A container is a class, a data structure, or an abstract data type (ADT) whose instances are collections of other objects. + They are used to store objects in an organized way following specific access rules. +

"""^^rdf:HTML ; + owl:equivalentClass qudt:CollectionKind ; + owl:equivalentClass qudt:CollectionType ; + rdfs:isDefinedBy ; + rdfs:label "Container" ; + rdfs:subClassOf qudt:AbstractDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 1 ; + owl:onProperty qudt:elementTypeCount ; + ] . + +qudt:CoordinateCenterType + a owl:Class ; + dcterms:description """ +

An enumeration of coordinate centers for coordinate systems, such as: + "Earth centered", "Mars centered", "Moon centered", "Sun centered", and "Vehicle centered". +

"""^^rdf:HTML ; + owl:oneOf ( qudt.type:CC_MarsCentered qudt.type:CC_EarthCentered qudt.type:CC_MoonCentered + qudt.type:CC_VehicleCentered qudt.type:CC_SunCentered ) ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate Center Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf qudt:NominalScale ; + skos:prefLabel "Coordinate center" ; + skos:prefLabel "Coordinate center type" . + +qudt:CoordinateMember + a owl:Class ; + dcterms:description """ +

A Coordinate Member Type is a data type that defines the properties of a coordinate in a coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate Member Type" ; + rdfs:subClassOf qudt:TupleMember ; + rdfs:subClassOf qudt:TupleMemberType . + +qudt:CoordinateSystem + a owl:Class ; + dcterms:description """ +

+ In geometry, a coordinate system is a system which uses one or more numbers, or coordinates, + to uniquely determine the position of a point or other geometric element on a manifold such as Euclidean space. + The order of the coordinates is significant. + They are sometimes identified by their position in an ordered tuple and sometimes by a letter, as in 'the x-coordinate'. +

+

In elementary mathematics the coordinates are taken to be real numbers, but may be complex numbers or elements of a more abstract system such as a commutative ring. + The use of a coordinate system allows problems in geometry to be translated into problems about numbers and vice versa; this is the basis of analytic geometry. +

+

In astronomy, a celestial coordinate system is a system for specifying positions of celestial objects: satellites, planets, stars, galaxies, and so on. + Coordinate systems can specify a position in 3-dimensional space, or merely the direction of the object on the celestial sphere, if its distance is not known or not important. +

+

The coordinate systems are implemented in either spherical coordinates or rectangular coordinates. + Spherical coordinates, projected on the celestial sphere, are analogous to the geographic coordinate system used on the surface of the Earth. + These differ in their choice of fundamental plane, which divides the celestial sphere into two equal hemispheres along a great circle. +

+

Rectangular coordinates, in appropriate units, are simply the cartesian equivalent of the spherical coordinates, with the same fundamental (x,y) plane and primary (x-axis) direction. + Each coordinate system is named for its choice of fundamental plane. +

"""^^rdf:HTML ; + qudt:dbpediaMatch ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate system" ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf skos:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ReferenceFrame ; + owl:onProperty qudt:referenceFrame ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:abbreviation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:coordinateCenter ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:referenceFrame ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty vaem:acronym ; + ] . + +qudt:CoordinateSystemFrame + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate system frame" ; + rdfs:subClassOf skos:Concept . + +qudt:CoordinateSystemType + a owl:Class ; + dcterms:description """ +

A coordinate system is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. + A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems. +

+

The primary attributes of any coordinate system are the coordinate frame or orientation of the axes of the coordinate system and the coordinate center or origin of the coordinate system. + The coordinate center is the easier of the two attributes to define and in trajectory-related coordinate systems is often taken to be the center of mass of natural solar system bodies such as the Earth, the Moon, or Mars. + Precise definition of the coordinate frame, however, usually takes much more effort. + As a result, the primary purpose is to provide a detailed description of a number of different coordinate frames commonly used in mission analysis. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate System Type" ; + rdfs:label "Coordinate system type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf qudt:TupleType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:originDefinition ; + ] . + +qudt:Coordinates + a owl:Class ; + dcterms:description """ +

A coordinate system is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. + A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems. +

+

The primary attributes of any coordinate system are the coordinate frame or orientation of the axes of the coordinate system and the coordinate center or origin of the coordinate system. + The coordinate center is the easier of the two attributes to define and in trajectory-related coordinate systems is often taken to be the center of mass of natural solar system bodies such as the Earth, the Moon, or Mars. + Precise definition of the coordinate frame, however, usually takes much more effort. + As a result, the primary purpose is to provide a detailed description of a number of different coordinate frames commonly used in mission analysis. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate System Type" ; + rdfs:subClassOf qudt:Tuple ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:CoordinateMember ; + owl:onProperty qudt:datatype ; + ] . + +qudt:Coordinates-2D + a owl:Class ; + dcterms:description """ +

A 2D coordinate system is a system for assigning a two-tuple of numbers or scalars to each point in an 2-dimensional space. + A corresponding 2D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 2D coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "2D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinates ; + rdfs:subClassOf qudt:Two-Tuple . + +qudt:Coordinates-2D-DoublePrecision + a owl:Class, qudt:Coordinates-2D-Type ; + dcterms:description """ +

A 2D coordinates in double floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + qudt:elementTypeCount 2 ; + rdfs:isDefinedBy ; + rdfs:label "Coordinates-2D-Double precision" ; + rdfs:subClassOf qudt:Coordinates-2D ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] . + +qudt:Coordinates-2D-SinglePrecision + a owl:Class, qudt:Coordinates-2D-Type ; + dcterms:description """ +

A 2D coordinates in single floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + qudt:elementTypeCount 2 ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian Coordinates 2D Single Precision" ; + rdfs:subClassOf qudt:Coordinates-2D ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:float_X ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:float_Y ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:float_X ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:float_Y ; + ] . + +qudt:Coordinates-2D-Type + a owl:Class ; + dcterms:description """ +

A 2D coordinate system is a system for assigning a two-tuple of numbers or scalars to each point in an 2-dimensional space. + A corresponding 2D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 2D coordinate system. +

"""^^rdf:HTML ; + rdfs:label "2D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinatesType ; + rdfs:subClassOf qudt:TwoTupleType . + +qudt:Coordinates-3D + a owl:Class ; + dcterms:description """ +

A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space. + A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinates ; + rdfs:subClassOf qudt:Three-Tuple . + +qudt:Coordinates-3D-DoublePrecision + a owl:Class ; + dcterms:description """ +

A 3D coordinates in double floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinates (Double Precision)" ; + rdfs:subClassOf qudt:Coordinates-3D ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] . + +qudt:Coordinates-3D-SinglePrecision + a owl:Class ; + dcterms:description """ +

A 3D coordinates in single floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinates (Single Precision)" ; + rdfs:subClassOf qudt:Coordinates-3D ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:float_X ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:float_Y ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:float_Z ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:float_X ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:float_Y ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:float_Z ; + ] . + +qudt:Coordinates-3D-Type + a owl:Class ; + dcterms:description """ +

A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space. + A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system. +

"""^^rdf:HTML ; + rdfs:label "3D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinatesType ; + rdfs:subClassOf qudt:ThreeTupleType . + +qudt:DataSetElement + a owl:Class ; + dcterms:description "A field is a tuple that carries a name, a type and optionally other properties that characterize a member element of a composite data strucuture." ; + rdfs:label "QUDT DataSet Element" ; + rdfs:subClassOf qudt:DataItem ; + rdfs:subClassOf qudt:Tuple . + +qudt:DateStringType + a owl:Class ; + dcterms:description "Date String Types are scalar data types that define the properties of strings that represent calendar dates." ; + rdfs:isDefinedBy ; + rdfs:label "Date String Type" ; + rdfs:subClassOf qudt:DateTimeStringType . + +qudt:DateTimeStringEncodingType + a owl:Class ; + dcterms:description "Date Time encodings are logical encodings for expressing date/time quantities as strings by applying unambiguous formatting and parsing rules." ; + rdfs:isDefinedBy ; + rdfs:label "Date Time String Encoding Type" ; + rdfs:subClassOf qudt:StringEncodingType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minQualifiedCardinality 1 ; + owl:onDataRange xsd:string ; + owl:onProperty qudt:allowedPattern ; + ] . + +qudt:DateTimeStringType + a owl:Class ; + dcterms:description """ +

A class of data types for structures that represent temporal quantities. + For example, calendar dates, times, duration of time since a given epoch, etc. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Temporal Type" ; + rdfs:subClassOf qudt:StringType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:DateTimeStringEncodingType ; + owl:onProperty qudt:encoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:encoding ; + ] . + +qudt:Dictionary + a owl:Class ; + dcterms:description "A \"Map\"." ; + rdfs:isDefinedBy ; + rdfs:label "Dictionary Type" ; + rdfs:subClassOf qudt:Map . + +qudt:DictionaryType + a owl:Class ; + dcterms:description "A kind of \"Map\"." ; + rdfs:label "Dictionary Type" ; + rdfs:subClassOf qudt:MapType . + +qudt:DimensionVector + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Dimension Vector" ; + rdfs:subClassOf skos:Concept . + +qudt:DimensionalDatatype + a owl:Class ; + dcterms:description """ +

A dimensional data type is a data type that specifies a physical quantity or unit of measure. + Information about the physical dimensions of the quantities and units is embedded in their types. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Dimensional Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:DiscreteState + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:DoublePrecisionType + a owl:Class ; + dcterms:description """ +

A double precision data type specifies how a numeric value, such as an integer or real number, is stored in memory. + Typically this occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes, and so double precision data value on a 32-bit machine architecture occupies eight bytes of memory. +

"""^^rdf:HTML ; + owl:disjointWith qudt:SinglePrecisionType ; + rdfs:isDefinedBy ; + rdfs:label "Double Precision Type" ; + rdfs:subClassOf qudt:NumericType . + +qudt:EarthCoordinateSystem + a owl:Class ; + dcterms:description """ +

A "Trajectory Coordinate System" for all earth-centered coordinates, such as: +

+
    +
  • Earth mean equator and prime meridian coordinate system";
  • +
  • Earth true equator and prime meridian of epoch coordinate system";
  • +
  • International celestial reference system";
  • +
  • International terrestrial reference system";
  • +
  • Sun centered international celestial reference system";
  • +
  • Vehicle centered international celestial reference system".
  • +
"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Earth Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:CC_EarthCentered ; + owl:onProperty qudt:coordinateCenter ; + ] . + +qudt:Encoding + a owl:Class ; + dcterms:description """ +

An encoding is a rule or algorithm that is used to convert data from a native, or unspecified form into a specific form that satisfies the encoding rules. + Examples of encodings include character encodings, such as UTF-8. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Encoding" ; + rdfs:subClassOf skos:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:EngineeringValueTupleMember + a owl:Class ; + dcterms:description """ +

A sub-type of 'Tuple Member Type'. +

"""^^rdf:HTML ; + owl:disjointWith qudt:RawValueTupleMember ; + owl:disjointWith qudt:RawValueTupleMemberType ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:TupleMemberType [ + a owl:Restriction ; + owl:allValuesFrom qudt:RealSinglePrecisionType ; + owl:onProperty qudt:datatype ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Engineering Value Tuple Member" ; + rdfs:subClassOf qudt:TupleMember ; + rdfs:subClassOf qudt:TupleMemberType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:RealSinglePrecisionType ; + owl:onProperty qudt:datatype ; + ] . + +qudt:Enumeration + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Enumeration" ; + rdfs:subClassOf dtype:Enumeration ; + rdfs:subClassOf qudt:StructuredDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + dcterms:description "The number of bits allocated to the field for encoding any tags associated with elements." ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EnumeratedValue ; + owl:onProperty qudt:defaultValue ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EnumeratedValue ; + owl:onProperty dtype:value ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:encoding ; + ] . + +qudt:FieldType + a owl:Class ; + dcterms:description "A sub-type of 'Composite Data Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Field Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:fieldName ; + ] . + +qudt:FileFormat + a owl:Class ; + dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "File format" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:FixedIntervalTimeSeriesArray + a owl:Class ; + dcterms:description """ +

A Fixed Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. + For example, data that has been sampled over uniformly spaced time intervals. + A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Fixed Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArray . + +qudt:FixedIntervalTimeSeriesArrayType + a owl:Class ; + dcterms:description """ + A Fixed Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. + For example, data that has been sampled over uniformly spaced time intervals. + A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. +

"""^^rdf:HTML ; + rdfs:label "Fixed Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArrayType . + +qudt:FloatingPointEncodingType + a owl:Class ; + dcterms:description """ +

A type for specifying an "Encoding" with the following instance(s): + "Double Precision Encoding", and "Single Precision Real Encoding". +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Floating Point Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:FrameType + a owl:Class ; + dcterms:description "This class contains elements which specify the intertial type of a coordinate frame as either inertial, rotating, or non-rotating." ; + owl:oneOf ( qudt:FT_ROTATING qudt:FT_NON-ROTATING qudt:FT_INERTIAL ) ; + rdfs:isDefinedBy ; + rdfs:label "Frame Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:Function + a owl:Class ; + rdfs:label "Function" ; + rdfs:subClassOf qudt:Concept . + +qudt:FunctionDatatype + a owl:Class ; + dcterms:description """ +

A function data type defines the input and output data type for a function or method. + The data type includes at least the function name and the number of its parameters. + In some programming languages, it may also specify the function's return type or the types of its arguments. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Function Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:argType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:returnType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:functionArity ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:returnType ; + ] . + +qudt:Graph + a owl:Class ; + dcterms:description """ +

A Graph is an instance of a kind of abstract data type, that consists of a set of nodes (also called vertices) and a set of edges that establish relationships (connections) between the nodes. + A Graph Type is a data type that defines the properties of data structures that represent graphs and their members (nodes and edges). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Graph Type" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:GraphType + a owl:Class ; + dcterms:description """ +

A Graph Type is a kind of abstract data type, that consists of a set of nodes (also called vertices) and a set of edges that establish relationships (connections) between the nodes. + A Graph Type is a data type that defines the properties of data structures that represent graphs and their members (nodes and edges). +

"""^^rdf:HTML ; + rdfs:label "Graph Type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:GroundCoordinateSystem + a owl:Class ; + dcterms:description "A sub-type of 'Aerospace coordinate system'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Ground coordinate system" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:HashTable + a owl:Class ; + dcterms:description """ +

A hash table is a kind of map that utilizes a hash function to perform efficient lookup: given a key (e.g., a person's name), find the corresponding value (e.g., that person's telephone number). + Hash tables support the efficient lookup, insertion and deletion of elements in constant time on average. + A Hash Table Type is a data type that defines the types of a hash table's key-value pairs. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Hash Table Type" ; + rdfs:subClassOf qudt:Map ; + rdfs:subClassOf qudt:TableType . + +qudt:HashTableType + a owl:Class ; + dcterms:description """ +

A hash table is a kind of map that utilizes a hash function to perform efficient lookup: given a key (e.g., a person's name), find the corresponding value (e.g., that person's telephone number). + Hash tables support the efficient lookup, insertion and deletion of elements in constant time on average. + A Hash Table Type is a data type that defines the types of a hash table's key-value pairs. +

"""^^rdf:HTML ; + rdfs:label "Hash Table Type" ; + rdfs:subClassOf qudt:MapType . + +qudt:Heap + a owl:Class ; + dcterms:description """ +

A heap is a specialized tree-based data structure that satisfies the condition: if B is a child node of A, then $key(A) \\ge key(B)$. + This implies that an element with the greatest key is always in the root node, and so such a heap is sometimes called a max heap. + Alternatively, if the comparison is reversed, the smallest element is always in the root node, which results in a min heap. + The function or method that implements the key() operator is specified by the heap type. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Heap Type" ; + rdfs:subClassOf qudt:OrderedTree . + +qudt:HeapType + a owl:Class ; + dcterms:description "A heap is a specialized tree-based data structure that satisfies the condition: if B is a child node of A, then key(A) > key(B). This implies that an element with the greatest key is always in the root node, and so such a heap is sometimes called a max heap. Alternatively, if the comparison is reversed, the smallest element is always in the root node, which results in a min heap. The function or method that implements the key() operator is specified by the heap type."^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:label "Heap Type" ; + rdfs:subClassOf qudt:OrderedTreeType . + +qudt:HexBinaryType + a owl:Class ; + dcterms:description "A string composed of hex characters." ; + rdfs:isDefinedBy ; + rdfs:label "Hexidecimal Binary Type" ; + rdfs:subClassOf qudt:TextStringType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:length ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxLength ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:minLength ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:pattern ; + ] . + +qudt:IconicCue + a owl:Class ; + owl:disjointWith qudt:AuralCue ; + owl:disjointWith qudt:KinestheticCue ; + owl:disjointWith qudt:VisualCue ; + rdfs:label "Iconic enumeration literal" ; + rdfs:subClassOf qudt:ModalCue . + +qudt:InertialCoordinateFrame + a owl:Class ; + dcterms:description "A \"Coordinate Frame\"." ; + owl:equivalentClass qudt:NonRotatingInertialFrame ; + rdfs:isDefinedBy ; + rdfs:label "Inertial Coordinate Frame" ; + rdfs:subClassOf qudt:InertialReferenceFrame ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:FT_NON-ROTATING ; + owl:onProperty qudt:frameType ; + ] . + +qudt:InertialReferenceFrame + a owl:Class ; + dcterms:description "A sub-type of 'Reference Frame'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Inertial reference frame" ; + rdfs:subClassOf qudt:ReferenceFrame . + +qudt:IntegerDatatype + a owl:Class ; + dcterms:description "An Integer Type is a data type that specifies how integer numbers are represented and stored in machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Integer Datatype" ; + rdfs:subClassOf qudt:NumericType ; + rdfs:subClassOf qudt:OrdinalType . + +qudt:IntegerEncodingType + a owl:Class ; + dcterms:description "The encoding scheme for integer types" ; + rdfs:isDefinedBy ; + rdfs:label "Integer Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:IntegerVector + a owl:Class ; + rdfs:label "Integer vector" ; + rdfs:subClassOf qudt:Vector . + +qudt:InterpolatedTable + a owl:Class ; + dcterms:description "A sub-type of 'Table Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Interpolated Table Type" ; + rdfs:subClassOf qudt:Table ; + rdfs:subClassOf qudt:TableType . + +qudt:KinestheticCue + a owl:Class ; + rdfs:label "Kinesthetic Cue" ; + rdfs:subClassOf qudt:ModalCue . + +qudt:LargeObject + a owl:Class ; + dcterms:description "A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). They often are used to allow efficient, random, piece-wise access to the data." ; + rdfs:isDefinedBy ; + rdfs:label "Large object" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:LargeObjectType + a owl:Class ; + dcterms:description "A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). They often are used to allow efficient, random, piece-wise access to the data." ; + rdfs:label "Large object" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:LimitType + a owl:Class ; + rdfs:label "Limit type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:List + a owl:Class ; + dcterms:description "A sub-type of 'Collection Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "List" ; + rdfs:subClassOf qudt:CollectionKind ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty rdf:first ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:List ; + owl:onProperty rdf:rest ; + ] . + +qudt:ListType + a owl:Class ; + rdfs:label "List type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:LocalCoordinateSystem + a owl:Class ; + dcterms:description "A \"Trajectory Coordinate System\" with the following instance(s): \"Local vertical curvilinear coordinate system\", \"Local vertical local horizontal coordinate system\", \"Vehicle centered local vertical curvilinear coordinate system\"." ; + rdfs:isDefinedBy ; + rdfs:label "Local Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem . + +qudt:LongIntegerType + a owl:Class ; + dcterms:description "A Long Integer is an integer that can be represented in four octets (32 bits) of machine memory. Long integers may be signed or unsigned." ; + rdfs:isDefinedBy ; + rdfs:label "Long Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 32 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 4 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:LunarCoordinateSystem + a owl:Class ; + dcterms:description "Two slightly different coordinate frames are commonly used to define the orientation of the axes of a lunar body-fixed coordinate system: a mean Earth/rotation frame and a principal axis coordinate frame. The mean Earth/rotation frame (sometimes called the \"Mean Earth/polar axis\" frame) is a lunar body-fixed coordinate frame with the X-axis aligned with the mean direction from the Moon to the Earth and the Z-axis aligned with the mean axis of rotation of the Moon. The principal axis frame is a lunar body-fixed coordinate frame aligned with the principal axes of the Moon. Due to the fact that the Moon is synchronously rotating but is not exactly symmetric, the principal axes and the mean Earth/rotation axes of the Moon do not coincide." ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Coordinate System" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:realization ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:xAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:zAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:CC_MoonCentered ; + owl:onProperty qudt:coordinateCenter ; + ] . + +qudt:MajorMinorType + a owl:Class ; + dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version." ; + owl:oneOf ( qudt.type:Minor qudt.type:Major ) ; + rdfs:isDefinedBy ; + rdfs:label "Major minor type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:Map + a owl:Class ; + dcterms:description "A Map Type is an abstract data type that defines the properties of map data structures. A Map (or Associative Array) is an abstract data structure composed of a collection of keys and a collection of values, where each key is associated with one value. The operation of finding the value associated with a key is called a lookup or indexing, and this is the most important operation supported by an associative array. The relationship between a key and its value is sometimes called a mapping or binding." ; + owl:equivalentClass qudt:AssociativeArray ; + rdfs:isDefinedBy ; + rdfs:label "Map Type" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:MapType + a owl:Class ; + dcterms:description "A Map Type is an abstract data type that defines the properties of map data structures. A Map (or Associative Array) is an abstract data structure composed of a collection of keys and a collection of values, where each key is associated with one value. The operation of finding the value associated with a key is called a lookup or indexing, and this is the most important operation supported by an associative array. The relationship between a key and its value is sometimes called a mapping or binding." ; + owl:equivalentClass qudt:AssociativeArrayType ; + rdfs:label "Map Type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:MarsCoordinateSystem + a owl:Class ; + dcterms:description "A \"Trajectory Coordinate System\" with the following instance(s): \"Mars mean equator and IAU-Node of epoch\", \"Mars mean equator and prime meridian body-fixed\"." ; + rdfs:isDefinedBy ; + rdfs:label "Mars Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:CC_MarsCentered ; + owl:onProperty qudt:coordinateCenter ; + ] . + +qudt:MassPropertiesArray + a owl:Class ; + dcterms:description """ +

A Mass Properties Array holds, for an object, four values for the properties: + Center of Gravity, Mass, Moment of Inertia, and Product of Inertia. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Mass Properties Array Type" ; + rdfs:subClassOf qudt:Array . + +qudt:MassPropertiesArrayType + a owl:Class ; + dcterms:description "The Mass Properties of an object are its: Center of Gravity, Mass, Moment of Inertia, and Product of Inertia. A mass properties array is an array whose elements contain these measured quantities for some object. A mass properties array data type provides the type specification for a class of arrays in which the data types of the elements are constrained to be one of these four properties." ; + rdfs:label "Mass Properties Array Type" ; + rdfs:subClassOf qudt:ArrayType . + +qudt:MathsFunctionType + a owl:Class ; + dcterms:description "A sub-type of 'QUDT Concept'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Maths Function Type" ; + rdfs:subClassOf qudt:Concept . + +qudt:Matrix + a owl:Class ; + dcterms:description "A Matrix Type is a data type that specifies the properties of data structures that hold matricies." ; + rdfs:isDefinedBy ; + rdfs:label "Matrix Type" ; + rdfs:subClassOf qudt:MultiDimensionalArray . + +qudt:MatrixType + a owl:Class ; + rdfs:label "Matrix Type" ; + rdfs:subClassOf qudt:MultiDimensionalArrayType . + +qudt:MemoryOrderType + a owl:Class ; + dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version." ; + owl:oneOf ( qudt.type:HighToLow qudt.type:LowToHigh ) ; + rdfs:isDefinedBy ; + rdfs:label "Memory order type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ModalCue + a owl:Class ; + rdfs:label "Modal Cue" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ModalEnumeration + a owl:Class ; + dcterms:description "A sub-type of 'QUDT Enumeration'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Modal Enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom ; + owl:onProperty qudt:defaultValue ; + ] . + +qudt:MultiDimensionalArray + a owl:Class ; + dcterms:description "Ordinary or one-dimensional arrays are indexed by a single integer. For a multi-dimensional array, the index into the array uses an ordered list of integers, such as in a[3,1,5]. The length of the list of integers used to index into the multi-dimensional array is always the same and is referred to as the array's dimensionality. The bounds on each of these are called the array's dimensions." ; + rdfs:isDefinedBy ; + rdfs:label "Multi Dimensional Array Type" ; + rdfs:subClassOf qudt:Array . + +qudt:MultiDimensionalArrayType + a owl:Class ; + dcterms:description "Ordinary or one-dimensional arrays are indexed by a single integer. For a multi-dimensional array, the index into the array uses an ordered list of integers, such as in a[3,1,5]. The length of the list of integers used to index into the multi-dimensional array is always the same and is referred to as the array's dimensionality. The bounds on each of these are called the array's dimensions." ; + rdfs:label "Multi Dimensional Array Type" ; + rdfs:subClassOf qudt:ArrayType . + +qudt:MultiDimensionalDataFormat + a owl:Class ; + dcterms:description "Data formats for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner, for example HDF, CDF and netCDF." ; + rdfs:isDefinedBy ; + rdfs:label "Multi dimensional data format" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] . + +qudt:MultiDimensionalDataFormatType + a owl:Class ; + dcterms:description "Data formats for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner, for example HDF, CDF and netCDF." ; + rdfs:label "Multi Dimensional Data Format Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:MultiModalEnumeration + a owl:Class ; + dcterms:description "A sub-type of 'QUDT Enumeration'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Multi modal enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ModalEnumeration ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] . + +qudt:MultiModalType + a owl:Class ; + dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Multi Modal Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom ; + ] . + +qudt:MultiSet + a owl:Class ; + dcterms:description "A bag is a set in which elements may be repeated." ; + rdfs:label "Bag" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:N-Tuple + a owl:Class ; + dcterms:description "A tuple containing n objects is known as an \"n-tuple\". For example the 4-tuple (or \"quadruple\"), with components of respective types PERSON, DAY, MONTH and YEAR, could be used to record that a certain person was born on a certain day of a certain month of a certain year." ; + rdfs:isDefinedBy ; + rdfs:label "N-Tuple Type" ; + rdfs:subClassOf qudt:Tuple ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty qudt:datatype ; + ] . + +qudt:N-TupleType + a owl:Class ; + dcterms:description "A tuple containing n objects is known as an \"n-tuple\". For example the 4-tuple (or \"quadruple\"), with components of respective types PERSON, DAY, MONTH and YEAR, could be used to record that a certain person was born on a certain day of a certain month of a certain year." ; + rdfs:label "N-Tuple Type" ; + rdfs:subClassOf qudt:TupleType . + +qudt:NonRotatingInertialFrame + a owl:Class ; + dcterms:description """ +

The non-rotating (or "inertial") coordinate frames are defined by taking a "snapshot" of the orientation of a particular set of right-handed, orthogonal axes at a specific epoch or time. + In other words, the non-rotating coordinate frame, however it is defined, is frozen or fixed at a specific time - for all time. + These non-rotating coordinate frames are referred to as "of Epoch" coordinate frames. +

"""^^rdf:HTML ; + owl:equivalentClass qudt:InertialCoordinateFrame ; + rdfs:isDefinedBy ; + rdfs:label "Non Rotating Coordinate Frame" ; + rdfs:subClassOf qudt:InertialReferenceFrame ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:FT_NON-ROTATING ; + owl:onProperty qudt:frameType ; + ] . + +qudt:NumericType + a owl:Class ; + dcterms:description "Numeric data types are data types whose values denote quantities as defined by a mathematical number system." ; + rdfs:isDefinedBy ; + rdfs:label "Numeric Type" ; + rdfs:subClassOf qudt:ScalarDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SignednessType ; + owl:onProperty qudt:signedness ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:accuracy ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:signedness ; + ] . + +qudt:OctetType + a owl:Class ; + dcterms:description "An 8 bit unsigned integer" ; + rdfs:isDefinedBy ; + rdfs:label "Octet Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType . + +qudt:OnOffStateType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "On off state type" ; + rdfs:subClassOf qudt:DiscreteState . + +qudt:OpenCloseStateType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Open Close State Type" ; + rdfs:subClassOf qudt:DiscreteState . + +qudt:OrderedCollectionKind + a owl:Class ; + dcterms:description """ +

An Ordered Collection Type is an abstract data type that defines the properties of collection data structures whose members can be linearly ordered. + An ordered collection is a collection together with an ordering relation (such as greater than) that linearly orders the collection elements. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordered Collection Type" ; + rdfs:subClassOf qudt:CollectionKind ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty rdf:first ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:OrderedCollectionKind ; + owl:onProperty rdf:rest ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom dtype:ComparisonOperator ; + owl:onProperty qudt:orderingRelation ; + ] . + +qudt:OrderedCollectionKindType + a owl:Class ; + dcterms:description """ +

An Ordered Collection Type is an abstract data type that defines the properties of collection data structures whose members can be linearly ordered. + An ordered collection is a collection together with an ordering relation (such as greater than) that linearly orders the collection elements. +

"""^^rdf:HTML ; + rdfs:label "Ordered Collection Type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:OrderedTree + a owl:Class ; + dcterms:description """ +

An "Ordered Tree Type" is a data type that defines the properties of data structures that represent ordered trees. + An ordered tree is a tree where the children of every node are ordered, that is, there is a first child, second child, third child, etc. + Typically a type specification for an ordered tree will include the comparison operator (such as lt or gt) that is used to order the nodes. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordered Tree Type" ; + rdfs:subClassOf qudt:OrderedCollectionKind ; + rdfs:subClassOf qudt:Tree . + +qudt:OrderedTreeType + a owl:Class ; + dcterms:description """ +

"Ordered Tree Type" is a data type that defines the properties of data structures that represent ordered trees. + An ordered tree is a tree where the children of every node are ordered, that is, there is a first child, second child, third child, etc. + Typically a type specification for an ordered tree will include the comparison operator (such as lt or gt) that is used to order the nodes. +

"""^^rdf:HTML ; + rdfs:label "Ordered Tree Type" ; + rdfs:subClassOf qudt:OrderedCollectionKindType ; + rdfs:subClassOf qudt:TreeType . + +qudt:OrdinalType + a owl:Class ; + dcterms:description """ +

An ordinal data type is a data type that specifies the properties of values that can easily be put in a one to one correspondence with a subset of the natural numbers. + Examples include boolean, character, and integer data types. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordinal Data Type" ; + rdfs:subClassOf qudt:ScalarDatatype . + +qudt:PaddingType + a owl:Class ; + dcterms:description """ +

This describes how unused bits of a field are filled. + Unused bits could be set to one or zero. + A third option is "don't care". +

"""^^rdf:HTML ; + owl:oneOf ( qudt.type:PadWithOnes qudt.type:PadWithZeros qudt.type:PadWithAny ) ; + rdfs:isDefinedBy ; + rdfs:label "Padding type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ParameterModifiabilityType + a owl:Class ; + dcterms:description "An enumeration of literals that signify whether a parameter is modifiable and if so, by whom." ; + rdfs:label "Parameter modifiability type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:Percentage + a owl:Class ; + dcterms:description "A Scalar Datatype for expressing a dimensionless ratio." ; + rdfs:isDefinedBy ; + rdfs:label "Percentage Type" ; + rdfs:subClassOf qudt:NumericType . + +qudt:PhysicalAddress + a owl:Class ; + dcterms:description "A \"Structured Datatype\"." ; + dcterms:description "A physical address is a pointer to a memory location." ; + rdfs:isDefinedBy ; + rdfs:label "Physical Address Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:PolarCoordinates + a owl:Class ; + dcterms:description """ +

A set of variables which fix a geometric object. + If the coordinates of a point P are determined by the distance from P to the origin and the angle subtended by the radial vector at P and a fixed axis, they are known as polar coordinates. + Typically, the angle is measured with respect to the x-axis." ; +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Polar Coordinate System Type" ; + rdfs:subClassOf qudt:Coordinates . + +qudt:PolarCoordinatesType + a owl:Class ; + dcterms:description """ +

A set of variables which fix a geometric object. + If the coordinates of a point P are determined by the distance from P to the origin and the angle subtended by the radial vector at P and a fixed axis, they are known as polar coordinates. + Typically, the angle is measured with respect to the x-axis." ; +

"""^^rdf:HTML ; + rdfs:label "Polar Coordinate System Type" ; + rdfs:subClassOf qudt:CoordinateSystemType . + +qudt:Polarity + a owl:Class ; + dcterms:description "A \"Tagged Enumeration\" with the following instance(s): \"negative\", \"positive\"." ; + rdfs:label "Polarity" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:PositiveIntegerType + a owl:Class ; + dcterms:description "Positive Integers are integers that are either non-zero and non-negative." ; + owl:disjointWith qudt:SignedIntegerType ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:IntegerDatatype qudt:UnsignedType ) ; + ] ; + rdfs:label "Positive Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:UnsignedType . + +qudt:QuantityValueType + a owl:Class ; + dcterms:description "A sub-type of 'Dimensional Data Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Quantity value type" ; + rdfs:subClassOf qudt:DimensionalDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:NumericType ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityType ; + owl:onProperty qudt:basis ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:elementUnit ; + ] . + +qudt:RawValueTupleMember + a owl:Class ; + dcterms:description "A sub-type of 'Tuple Member Type'. Detailed description to be provided in a future version." ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:TupleMember [ + a owl:Restriction ; + owl:allValuesFrom qudt:UnsignedIntegerType ; + owl:onProperty qudt:datatype ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Raw value tuple member" ; + rdfs:subClassOf qudt:TupleMember ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:UnsignedIntegerType ; + owl:onProperty qudt:datatype ; + ] . + +qudt:RawValueTupleMemberType + a owl:Class ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:TupleMemberType [ + a owl:Restriction ; + owl:allValuesFrom qudt:UnsignedIntegerType ; + owl:onProperty qudt:datatype ; + ] ) ; + ] ; + rdfs:label "Raw value tuple member type" ; + rdfs:subClassOf qudt:TupleMemberType . + +qudt:RealDatatype + a owl:Class ; + dcterms:description """ +

A real number is represented as a factor, called the mantissa, multiplied by a power (the exponent) of a base. + Different bases yield different approximations to real numbers, and conversion between them is limited in accuracy. + Four floating-point types are defined in 'IEEE-754 Standard for Binary Floating-Point'. + These types are 'single', 'extended single', 'double', and 'extended double'. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Real Datatype" ; + rdfs:subClassOf qudt:NumericType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:base ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxExponent ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:precision ; + ] . + +qudt:RealDoublePrecisionType + a owl:Class ; + dcterms:description """ +

A real double precision data type specifies how a real number, or an approximation of a real number is stored in memory that occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes. + An example of a real double precision data type specification is the IEEE 754 standard for encoding binary or decimal floating point numbers in 8 bytes for storage on 32-bit machine architectures. +

"""^^rdf:HTML ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:RealDatatype qudt:DoublePrecisionType ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Real Double Precision Type" ; + rdfs:subClassOf qudt:DoublePrecisionType ; + rdfs:subClassOf qudt:RealDatatype . + +qudt:RealNumberType + a owl:Class ; + dcterms:description """ +

"Real Number Type" is the class of data values that approximate real numbers in finite precision. + Often, such values are expressed in "mantissa, base, exponent" form. + Any rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. + Typically, b is chosen to be either 2 or 10, and then the values of m and e are determined given the choice of base. +

"""^^rdf:HTML ; + rdfs:label "Real number type" ; + rdfs:subClassOf qudt:RealDatatype . + +qudt:RealSinglePrecisionType + a owl:Class ; + dcterms:description """ +

A real single precision data type specifies how a real number, or an approximation of a real number is stored in memory that occupies one word in computer memory, where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes. + An example of a real single precisoin data type specification is the IEEE 754 standard for encoding binary or decimal floating point numbers in 4 bytes for storage on 32-bit machine architectures. +

"""^^rdf:HTML ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:RealDatatype qudt:SinglePrecisionType ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Real Single Precision Type" ; + rdfs:subClassOf qudt:RealDatatype ; + rdfs:subClassOf qudt:SinglePrecisionType . + +qudt:Record + a owl:Class ; + dcterms:description "A Record Type is a type whose values are records, i.e. aggregates of several items of possibly different types. The aggregated items are called fields or members and are usually identified or indexed by field labels." ; + rdfs:isDefinedBy ; + rdfs:label "Record Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom ; + owl:onProperty qudt:elementTypeList ; + ] . + +qudt:ReferenceDatatype + a owl:Class ; + dcterms:description """ +

A reference is an object containing information which refers to data stored elsewhere, as opposed to containing the data itself. + A reference data type is a data type that specifies how a reference is represented and stored in memory, + as well as the operations that can be performed on reference values. + The most common example of a reference data type is a pointer. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Reference Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:ReferenceFrame + a owl:Class ; + dcterms:description """A reference frame (or frame of reference) in physics, may refer to a coordinate system or set of axes. +The frame serves as the datum to measure the position, orientation, and other properties of objects in it. +Reference frame may refer to an observational reference frame tied to the state of motion of an observer. +Reference frame may also refer to both an observational reference frame and an attached coordinate system as a unit.""" ; + rdfs:isDefinedBy ; + rdfs:label "Reference Frame" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf skos:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:FrameType ; + owl:onProperty qudt:frameType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:realization ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:xAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:xCoordinateDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yCoordinateDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:zAxisDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:zCoordinateDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty vaem:comment ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty vaem:description ; + ] . + +qudt:RotatingReferenceFrame + a owl:Class ; + dcterms:description "A sub-type of 'Reference Frame'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Rotating reference frame" ; + rdfs:subClassOf qudt:ReferenceFrame . + +qudt:Sequence + a owl:Class ; + dcterms:description "A \"Structured Datatype\"." ; + rdfs:isDefinedBy ; + rdfs:label "Sequence" ; + rdfs:subClassOf qudt:CollectionKind ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty rdf:first ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Sequence ; + owl:onProperty rdf:rest ; + ] . + +qudt:SequenceType + a owl:Class ; + dcterms:description "A sequence is an enumerated collection of objects in which repetitions are allowed. Like a set, it contains members (also called elements, or terms). The number of elements (possibly infinite) is called the length of the sequence. Unlike a set, order matters, and exactly the same elements can appear multiple times at different positions in the sequence. Formally, a sequence can be defined as a function whose domain is either the set of the natural numbers (for infinite sequences) or the set of the first n natural numbers (for a sequence of finite length n). The position of an element in a sequence is its rank or index; it is the integer from which the element is the image. It depends on the context or of a specific convention, if the first element has index 0 or 1. [Wikipedia]" ; + rdfs:label "Sequence" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:Set + a owl:Class ; + dcterms:description "A Set Type is an abstract data type that defines the properties of sets. A set is a collection (container) of certain values, without any particular order, and no repeated values. It corresponds with a finite set in mathematics." ; + rdfs:isDefinedBy ; + rdfs:label "Set Type" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:SetType + a owl:Class ; + dcterms:description "A Set Type is an abstract data type that defines the properties of sets. A set is a collection (container) of certain values, without any particular order, and no repeated values. It corresponds with a finite set in mathematics." ; + rdfs:label "Set Type" ; + rdfs:subClassOf qudt:CollectionType . + +qudt:ShortIntegerType + a owl:Class ; + dcterms:description "A Short Integer is an integer that can be represented in two octets (16 bits) of machine memory. Short integers may be signed or unsigned." ; + rdfs:isDefinedBy ; + rdfs:label "Short Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype . + +qudt:SignedBigIntegerType + a owl:Class ; + dcterms:description "A Signed Big Integer is a signed integer that can be represented in eight octets (64 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Big Integer Type" ; + rdfs:subClassOf qudt:BigIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "-2^{63}" ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "2^{63}-1" ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "SI64" ; + owl:onProperty dtype:literal ; + ] . + +qudt:SignedIntegerType + a owl:Class ; + dcterms:description "Signed Integers are integers can take on both positive and negative values." ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:IntegerDatatype qudt:SignedType ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:SignedType . + +qudt:SignedLongIntegerType + a owl:Class ; + dcterms:description "A Signed Long Integer is a signed integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Long Integer Type" ; + rdfs:subClassOf qudt:LongIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "-2^{31}" ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "2^{31}-1" ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "UI32" ; + owl:onProperty dtype:literal ; + ] . + +qudt:SignedMediumIntegerType + a owl:Class ; + dcterms:description "A \"Signed Medium Integers\" is an integer of 24 bits that can take on both positive and negative values." ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:IntegerDatatype qudt:SignedType [ + a owl:Restriction ; + owl:hasValue 3 ; + owl:onProperty qudt:bytes ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Type" ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 3 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:SignedShortIntegerType + a owl:Class ; + dcterms:description "A Signed Short Integer is a signed integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Short Integer Type" ; + rdfs:subClassOf qudt:ShortIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "SI16" ; + owl:onProperty dtype:literal ; + ] . + +qudt:SignedType + a owl:Class ; + dcterms:description "A signed type is a numeric type that distinguishes between positive and negative numbers using an encoding scheme, such as sign and magnitude, one's compliment, and two's compliment to represent negative numbers." ; + owl:disjointWith qudt:UnsignedType ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:NumericType [ + a owl:Restriction ; + owl:hasValue qudt.type:Signed ; + owl:onProperty qudt:signedness ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Signed Type" ; + rdfs:subClassOf qudt:NumericType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:Signed ; + owl:onProperty qudt:signedness ; + ] . + +qudt:SignedVariableLengthIntegerType + a owl:Class ; + dcterms:description "A Signed Variable Length Integer data type defines a data structure for representing signed integers that uses a variable number of bits depending on the magnitude of the integer. Typically, variable length integer data types are between one and 64 bits in length." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Variable Length Integer Type" ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf qudt:VariableLengthIntegerType . + +qudt:SinglePrecisionType + a owl:Class ; + dcterms:description "A single precision data type specifies how a numeric value, such as an integer or real number, is stored in memory that occupies one word in computer memory, where the byte length of a word depends on machine address size of the computer processor. For example, on 32-bit machine architectures, a word is four bytes, and so a single precision data value on a 32-bit machine architecture occupies four bytes of memory." ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Type" ; + rdfs:subClassOf qudt:NumericType . + +qudt:SplineCalibrator + a owl:Class ; + dcterms:description "A sub-type of 'Map Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Spline calibrator" ; + rdfs:subClassOf qudt:Map . + +qudt:SplineCalibratorType + a owl:Class ; + rdfs:label "Spline calibrator type" ; + rdfs:subClassOf qudt:MapType . + +qudt:SplinePoint + a owl:Class ; + dcterms:description "A sub-type of 'Tuple Type'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Spline point" ; + rdfs:subClassOf qudt:Tuple . + +qudt:SplinePointType + a owl:Class ; + rdfs:label "Spline point type" ; + rdfs:subClassOf qudt:TupleType . + +qudt:StateSpaceMatrix + a owl:Class ; + dcterms:description "In control engineering, a state space representation is a mathematical model of a physical system as a set of input, output and state variables related by first-order differential equations. To abstract from the number of inputs, outputs and states, the variables are expressed as vectors and the differential and algebraic equations are written in matrix form (the last one can be done when the dynamical system is linear and time invariant). " ; + rdfs:isDefinedBy ; + rdfs:label "State Space Matrix Type" ; + rdfs:subClassOf qudt:Matrix . + +qudt:StateSpaceVector + a owl:Class ; + dcterms:description "A state vector in general control systems describes the observed states of an object in state space, e.g. in variables of the degrees of freedom for motion. As data types, state vector types are used to specify the structure of state vectors, such as how the observed state is encoded." ; + rdfs:isDefinedBy ; + rdfs:label "State Space Vector Type" ; + rdfs:subClassOf qudt:Vector ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:CoordinateSystem ; + owl:onProperty qudt:coordinateSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:coordinateSystem ; + ] . + +qudt:StateSpaceVectorType + a owl:Class ; + dcterms:description "A state-space vector type in general control systems describes the observed states of an object in state space, e.g. in variables of the degrees of freedom for motion. As data types, state vector types are used to specify the structure of state vectors, such as how the observed state is encoded." ; + rdfs:label "State Space Vector Type" ; + rdfs:subClassOf qudt:VectorType . + +qudt:StateVectorType + a owl:Class ; + dcterms:description "A state-space vector type in general control systems describes the observed states of an object in state space, e.g. in variables of the degrees of freedom for motion. As data types, state vector types are used to specify the structure of state vectors, such as how the observed state is encoded." ; + rdfs:label "State Vector Type" ; + rdfs:subClassOf qudt:VectorType . + +qudt:StringEncodingType + a owl:Class ; + dcterms:description """ + An "Encoding" with the following instance(s): "qudt:UTF8-StringEncoding", qudt:UTF16-StringEncoding". + """ ; + rdfs:isDefinedBy ; + rdfs:label "String Encoding Type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:StringList + a owl:Class ; + rdfs:label "String list" ; + rdfs:subClassOf qudt:List . + +qudt:StringType + a owl:Class ; + dcterms:description "A String Type is a data type that specifies the properties of data structures that hold strings. " ; + rdfs:isDefinedBy ; + rdfs:label "String Type" ; + rdfs:subClassOf qudt:Array ; + rdfs:subClassOf qudt:ScalarDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:CharacterType ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 0 ; + owl:onProperty qudt:typeMatrix ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 1 ; + owl:onProperty qudt:dimensionality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxLength ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:isByteString ; + ] . + +qudt:StringUTF16 + a owl:Class ; + dcterms:description "String UTF-16 Type is a string data type that specifies the properties of string data structures which encode strings using the UTF-16 encoding. UTF-16 is the native internal representation of text in the Microsoft Windows NT/Windows 2000/Windows XP/Windows CE, Qualcomm BREW, and Symbian operating systems; the Java and .NET byte code environments; Mac OS X's Cocoa and Core Foundation frameworks; and the Qt cross-platform graphical widget toolkit." ; + rdfs:isDefinedBy ; + rdfs:label "String UTF16 Type" ; + rdfs:subClassOf qudt:StringType ; + rdfs:subClassOf qudt:TextStringType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt:UTF16-CHAR ; + owl:onProperty qudt:datatype ; + ] . + +qudt:StringUTF8 + a owl:Class ; + dcterms:description "String UTF-8 Type is a string data type that specifies the properties of string data structures which encode strings using the UTF-8 encoding. UTF-8 includes ASCII, otherwise referred to as IA-5 (International Alphabet 5, as standardized by International Organization for Standardization [ISO]) as the first 128 values. The Internet Engineering Task Force (IETF) requires all Internet protocols to identify the encoding used for character data with UTF-8 as at least one supported encoding. The Internet Mail Consortium (IMC) recommends that all e-mail programs must be able to display and create mail using UTF-8." ; + rdfs:isDefinedBy ; + rdfs:label "String UTF8 Type" ; + rdfs:subClassOf qudt:StringType ; + rdfs:subClassOf qudt:TextStringType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt:UTF8-CHAR ; + owl:onProperty qudt:datatype ; + ] . + +qudt:StructuredDatatype + a owl:Class ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:datatype ; + ] . + +qudt:Table + a owl:Class ; + dcterms:description "A Table Type is a data type that specifies the properties of table data structures. A table is both a mode of visual communication and a means of arranging data. The use of tables is pervasive throughout NASA The precise conventions and terminology for describing tables varies depending on the context. Moreover, tables differ significantly in variety, structure, flexibility, notation, representation and use." ; + rdfs:isDefinedBy ; + rdfs:label "Table Type" ; + rdfs:subClassOf qudt:Array ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:columns ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:rows ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 2 ; + owl:onProperty qudt:dimensionality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:byRow ; + ] . + +qudt:TableType + a owl:Class ; + dcterms:description "A Table Type is a data type that specifies the properties of table data structures. A table is both a mode of visual communication and a means of arranging data. The use of tables is pervasive throughout NASA The precise conventions and terminology for describing tables varies depending on the context. Moreover, tables differ significantly in variety, structure, flexibility, notation, representation and use." ; + rdfs:label "Table Type" ; + rdfs:subClassOf qudt:ArrayType . + +qudt:TaggedEnumeration + a owl:Class ; + dcterms:description "An enumeration where each literal has a tag that is a non-negative integer. These enumerations are likely to have their literals encoded - hence the need for the tag." ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:Enumeration [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty dtype:code ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Tagged Enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty dtype:code ; + ] . + +qudt:TextStringType + a owl:Class ; + dcterms:description "A text string. Encodings can be specified as subclass or in connection to character arrays in Structured Datatypes." ; + rdfs:isDefinedBy ; + rdfs:label "Text String Type" ; + rdfs:subClassOf qudt:StringType . + +qudt:Three-Tuple + a owl:Class ; + dcterms:description "A three-tuple is a tuple with exactly three members. A Three-Tuple Type is a data type that defines the type properties of a class of three-tuples and their members." ; + rdfs:isDefinedBy ; + rdfs:label "Three-Tuple Type" ; + rdfs:subClassOf qudt:N-Tuple ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 3 ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 3 ; + owl:onProperty qudt:elementTypeCount ; + ] . + +qudt:ThreeBodyRotatingCoordinateSystem + a owl:Class ; + dcterms:description "The lunar coordinate systems are primarily used when operating in close proximity to the Moon. There are, however, a few additional coordinate systems that are also useful when analyzing (and depicting) trajectories in the vicinity of the Earth-Moon system. They are rotating coordinate systems associated with two different three-body systems: the Sun-Earth-spacecraft system and the Earth-Moon-spacecraft system. The Sun-Earth and Earth-Moon rotating coordinate frames are defined as follows. The pole vector or Z-axis of the coordinate frame is set equal to the instantaneous orbit normal of the secondary (smaller) body about the primary (larger) body and the X-axis is set equal to the vector from the primary body center of mass (CM) to the secondary body CM. The X-axis rotates at a rate equal to the instantaneous rotation rate of the secondary body about the primary body." ; + rdfs:isDefinedBy ; + rdfs:label "Three Body Rotating Coordinate System Type" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:ThreeTupleType + a owl:Class ; + dcterms:description "A three-tuple is a tuple with exactly three members. A Three-Tuple Type is a data type that defines the type properties of a class of three-tuples and their members." ; + rdfs:label "Three-Tuple Type" ; + rdfs:subClassOf qudt:N-TupleType . + +qudt:Time + a owl:Class ; + dcterms:description "The class of data values that denote a point in time. Time values may be encoded in a 12-hour clock or a 24-hour clock, such as 1:35 AM, or 13:35." ; + rdfs:label "Time" ; + rdfs:subClassOf qudt:Scalar . + +qudt:TimeDataType + a owl:Class ; + dcterms:description "A sub-type of 'QUDT Enumeration'. Detailed description to be provided in a future version." ; + dtype:value qudt:TIME ; + rdfs:isDefinedBy ; + rdfs:label "Time data type" ; + rdfs:subClassOf qudt:Enumeration ; + rdfs:subClassOf qudt:ScalarDatatype . + +qudt:TimeInterval + a owl:Class ; + dcterms:description "A relative interval that is an increment in time. For example, this is used in time series arrays to express the time point of a vector of values." ; + rdfs:label "Time interval" ; + rdfs:subClassOf qudt:Parameter . + +qudt:TimeSeriesArray + a owl:Class ; + dcterms:description "A Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. A time series is a sequence of data points, measured at successive time intervals. The time intervals may be uniformly or non-uniformly spaced." ; + rdfs:isDefinedBy ; + rdfs:label "Time Series Array Type" ; + rdfs:subClassOf qudt:Array ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:StateSpaceVector ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:TimeStringType ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:dimensions ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty ; + ] . + +qudt:TimeSeriesArrayType + a owl:Class ; + dcterms:description "A Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. A time series is a sequence of data points, measured at successive time intervals. The time intervals may be uniformly or non-uniformly spaced." ; + rdfs:label "Time Series Array Type" ; + rdfs:subClassOf qudt:ArrayType . + +qudt:TimeStringType + a owl:Class ; + dcterms:description "Time takes a number of forms, depending on the units used (e.g., year, day, minute, millisecond, or combinations thereof) and the origin (i.e., time zero) to which the time value is related." ; + rdfs:isDefinedBy ; + rdfs:label "Time Type" ; + rdfs:subClassOf qudt:DateTimeStringType ; + rdfs:subClassOf qudt:TextStringType . + +qudt:TrajectoryCoordinateSystem + a owl:Class ; + dcterms:description "A \"Coordinate System\"." ; + rdfs:isDefinedBy ; + rdfs:label "Trajectory Coordinate System" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:Tree + a owl:Class ; + dcterms:description "A \"Tree\" is a data type that defines the properties of data structures that represent trees. A tree is a graph data structure accessed beginning at the root node. Each node is either a leaf or an internal node. An internal node has one or more child nodes and is called the parent of its child nodes. Leaf nodes have no chidren. Nodes that share the same parent are siblings. In graph theoretic terminology, a tree is a connected, undirected, acyclic graph." ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Tree Type" ; + rdfs:subClassOf qudt:Graph . + +qudt:TreeType + a owl:Class ; + dcterms:description "A \"Tree\" is a data type that defines the properties of data structures that represent trees. A tree is a graph data structure accessed beginning at the root node. Each node is either a leaf or an internal node. An internal node has one or more child nodes and is called the parent of its child nodes. Leaf nodes have no chidren. Nodes that share the same parent are siblings. In graph theoretic terminology, a tree is a connected, undirected, acyclic graph." ; + prov:wasInfluencedBy ; + rdfs:label "Tree Type" ; + rdfs:subClassOf qudt:GraphType . + +qudt:Triplet + a owl:Class ; + dcterms:description "A \"Tuple\"." ; + owl:equivalentClass qudt:Three-Tuple ; + owl:equivalentClass qudt:ThreeTupleType ; + rdfs:isDefinedBy ; + rdfs:label "Triplet" ; + rdfs:subClassOf qudt:Three-Tuple ; + rdfs:subClassOf qudt:ThreeTupleType . + +qudt:Tuple + a owl:Class ; + dcterms:description "

The term Tuple originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, n-tuple. In mathematics, a tuple is a finite sequence (also known as an Ordered List of objects, each of a specified type. The n can be any non-negative integer.

"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Tuple Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:TupleMember ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:elementTypeCount ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:length ; + ] . + +qudt:TupleMember + a owl:Class ; + dcterms:description "A Tuple Member Type is a data type that defines the properties of a member of a tuple. It is used to provide fine grained type specification to the elements of tuples." ; + rdfs:isDefinedBy ; + rdfs:label "Tuple Member Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ScalarDatatype ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:orderInStructure ; + ] . + +qudt:TupleMemberType + a owl:Class ; + dcterms:description "A Tuple Member Type is a data type that defines the properties of a member of a tuple. It is used to provide fine grained type specification to the elements of tuples." ; + rdfs:label "Tuple Member Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:TupleType + a owl:Class ; + dcterms:description "

The term Tuple originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, n-tuple. In mathematics, a tuple is a finite sequence (also known as an Ordered List of objects, each of a specified type. The n can be any non-negative integer.

"^^rdf:HTML ; + rdfs:label "Tuple Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:Two-Tuple + a owl:Class ; + dcterms:description "A 2-tuple is called a pair. For example, a complex number can be represented as a 2-tuple, and 2D coordinates are sometimes represented as 2-tuples." ; + rdfs:isDefinedBy ; + rdfs:label "Two-Tuple Type" ; + rdfs:subClassOf qudt:N-Tuple ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 2 ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 2 ; + owl:onProperty qudt:elementTypeCount ; + ] . + +qudt:TwoTupleType + a owl:Class ; + dcterms:description "A 2-tuple is called a pair. For example, a complex number can be represented as a 2-tuple, and 2D coordinates are sometimes represented as 2-tuples." ; + rdfs:label "Two-Tuple Type" ; + rdfs:subClassOf qudt:N-TupleType . + +qudt:TypeList + a owl:Class ; + dcterms:description "A sub-type of 'QUDT Datatype'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Type list" ; + rdfs:subClassOf qudt:Datatype . + +qudt:TypeMatrix + a owl:Class ; + dcterms:description "Members of this class are matrix data structures that describe the datatypes of a class of matrices. That is, the members of this class are matrices with cells that contain datatypes (c.f. type:Datatype) and are used to describe the datatype structure of other matrices." ; + rdfs:label "Type matrix" ; + rdfs:subClassOf qudt:MatrixType . + +qudt:TypeVector + a owl:Class ; + dcterms:description """ +

A Type Vector is a vector whose elements are data types. + They are used, for instance, to specify the type of each component of a vector or class of vectors. + A Type Vector Type is a further abstraction that specifies the structure of Type Vectors. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Type Vector Type" ; + rdfs:label "Type vector" ; + rdfs:subClassOf qudt:DatatypeStructuredData ; + rdfs:subClassOf qudt:Vector ; + rdfs:subClassOf qudt:VectorType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onClass qudt:Vector ; + owl:onProperty qudt:typeVector ; + ] . + +qudt:UnsignedBigIntegerType + a owl:Class ; + dcterms:description "An Unsgned Big Integer is an unsigned integer that can be represented in eight octets (64 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Big Integer Type" ; + rdfs:subClassOf qudt:BigIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "0" ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "2^{64}-1" ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "UI64" ; + owl:onProperty dtype:literal ; + ] . + +qudt:UnsignedIntegerType + a owl:Class ; + dcterms:description "Unsgned Integers are integers that are either strictly non-negative or non-positive." ; + owl:disjointWith qudt:SignedIntegerType ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:IntegerDatatype qudt:UnsignedType ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:UnsignedType . + +qudt:UnsignedLongIntegerType + a owl:Class ; + dcterms:description "An Unsigned Long Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Long Integer Type" ; + rdfs:subClassOf qudt:LongIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "0" ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "2^{32}-1" ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "UI32" ; + owl:onProperty dtype:literal ; + ] . + +qudt:UnsignedMediumIntegerType + a owl:Class ; + dcterms:description "An \"Unsigned Medium Integers\" is an integer of 24 bits that only takes on both positive values." ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:IntegerDatatype qudt:SignedType ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 3 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:UnsignedShortIntegerType + a owl:Class ; + dcterms:description "An Unsigned Short Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Short Integer Type" ; + rdfs:subClassOf qudt:ShortIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "0" ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "2^{16}-1" ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue "UI16" ; + owl:onProperty dtype:literal ; + ] . + +qudt:UnsignedType + a owl:Class ; + dcterms:description "An unsigned data type is a numeric type that does not distinguish between positive and negative values." ; + owl:disjointWith qudt:SignedType ; + owl:equivalentClass [ + a owl:Class ; + owl:intersectionOf ( qudt:NumericType [ + a owl:Restriction ; + owl:hasValue qudt.type:Unsigned ; + owl:onProperty qudt:signedness ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Type" ; + rdfs:subClassOf qudt:NumericType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue qudt.type:Unsigned ; + owl:onProperty qudt:signedness ; + ] . + +qudt:UnsignedVariableLengthIntegerType + a owl:Class ; + dcterms:description "An Unsigned Variable Length Integer data type defines a data structure for representing unsigned integers that uses a variable number of bits depending on the magnitude of the integer. Typically, variable length integer data types are between one and 64 bits in length." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Variable Length Integer Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf qudt:VariableLengthIntegerType . + +qudt:VariableIntervalTimeSeriesArray + a owl:Class ; + dcterms:description "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random." ; + rdfs:isDefinedBy ; + rdfs:label "Variable Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArray . + +qudt:VariableIntervalTimeSeriesArrayType + a owl:Class ; + dcterms:description "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random." ; + rdfs:label "Variable Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArrayType . + +qudt:VariableLengthIntegerType + a owl:Class ; + dcterms:description "A Variable Length Integer data type defines a data structure for representing integers that uses a variable number of bits depending on the magnitude of the integer. Typically, variable length integer data types are between one and 64 bits in length." ; + rdfs:isDefinedBy ; + rdfs:label "Variable Length Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 1 ; + owl:onProperty qudt:minBits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 64 ; + owl:onProperty qudt:maxBits ; + ] . + +qudt:Vector + a owl:Class ; + dcterms:description "A Vector Type is a data type that specifies the properties of data structures that hold vectors." ; + rdfs:isDefinedBy ; + rdfs:label "Vector Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ReferenceFrame ; + owl:onProperty qudt:referenceFrame ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:dimensions ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:hasValue 1 ; + owl:onProperty qudt:dimensionality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:dimensionality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:referenceFrame ; + ] . + +qudt:VehicleCoordinateSystem + a owl:Class ; + dcterms:description "A sub-type of 'Aerospace coordinate system'. Detailed description to be provided in a future version." ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle coordinate system" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:AxialOrientationType ; + owl:onProperty qudt:pitchRotationDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:AxialOrientationType ; + owl:onProperty qudt:rollRotationDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:AxialOrientationType ; + owl:onProperty qudt:yawRotationDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:pitchRotationDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:rollRotationDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yawRotationDefinition ; + ] . + +qudt:VisualCue + a owl:Class ; + rdfs:label "Visual Cue" ; + rdfs:subClassOf qudt:ModalCue . + +qudt:WetDryStateType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Wet dry state type" ; + rdfs:subClassOf qudt:DiscreteState . + +qudt:YesNoType + a owl:Class ; + rdfs:label "Yes no type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:datatype + a owl:ObjectProperty, rdf:Property ; + dcterms:description "This property is used to relate a structured data type with the data type of the structured type's elements. It is used for homogeneous structured data types, that is, those whose elements that are all of the same type." ; + dcterms:description "This property is used to relate a structured data type with the data type the structured type's elements. It is used for structured data types with elements that are all of the same type." ; + rdfs:isDefinedBy ; + rdfs:label "element type" ; + vaem:todo "Change name to type:elementDataType" . + +qudt:elementLabel + a rdf:Property ; + dcterms:description "This property is used to label the field of a composite data structure." ; + rdfs:label "element label" . + +qudt:field + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "field" . + +qudt:optional + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "optional" . + +qudt:value + a rdf:Property ; + dcterms:description "This property identifies the value associated with a data structure. The value may be a scalar or a reference to another object. The disjoint sub-properties of this data:value distinguish between scalar values and object references." ; + rdfs:label "value" ; + rdfs:subPropertyOf rdf:value . + +qudt:alignment + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "alignment" . + +qudt:arg1Type + a owl:ObjectProperty ; + dcterms:description "This property relates a funciton data type with the type of its arg1." ; + rdfs:isDefinedBy ; + rdfs:label "arg1Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:arg2Type + a owl:ObjectProperty ; + dcterms:description "This property relates a funciton data type with the type of its arg2." ; + rdfs:isDefinedBy ; + rdfs:label "arg2Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:arg3Type + a owl:ObjectProperty ; + dcterms:description "This property relates a funciton data type with the type of its arg3." ; + rdfs:isDefinedBy ; + rdfs:label "arg3Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:argType + a owl:ObjectProperty ; + dcterms:description "This property relates a function data type with the type of one of its arguments." ; + rdfs:isDefinedBy ; + rdfs:label "argType" ; + rdfs:subPropertyOf qudt:datatype . + +qudt:auralCue + a owl:ObjectProperty ; + rdfs:label "aural cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:auralCueEnumeration + a owl:ObjectProperty ; + rdfs:label "aural cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:basis + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "basis" . + +qudt:bitOrder + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "bit order" ; + rdfs:range qudt:EndianType . + +qudt:byteOrder + a owl:ObjectProperty ; + dcterms:description "Byte order is an enumeration of two values: 'Big Endian' and 'Little Endian' and is used to denote whether the most signiticant byte is either first or last, respectively." ; + rdfs:isDefinedBy ; + rdfs:label "byte order" ; + rdfs:range qudt:EndianType . + +qudt:cardinality + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "cardinality" . + +qudt:coordinateCenter + a owl:ObjectProperty ; + rdfs:domain qudt:CoordinateSystem ; + rdfs:isDefinedBy ; + rdfs:label "coordinate center" ; + rdfs:range qudt:CoordinateCenterType ; + skos:prefLabel "coordinate center" . + +qudt:coordinateSystem + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "coordinate system" . + +qudt:coordinateSystemFrame + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "coordinate system frame" . + +qudt:dataOrder + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "data order" . + +qudt:dimensions + a owl:ObjectProperty, owl:DatatypeProperty ; + dcterms:description """ + The extent of each dimension making up a matrix or an array. + For example a 4 by 4 array has dimensions (4 4), + whereas a vector or a string has dimensions (1). + """ ; + dcterms:description "The number of elements for each dimension of an array, vector, or matrix." ; + rdfs:isDefinedBy ; + rdfs:label "dimensions" . + +qudt:elementKind + a owl:ObjectProperty ; + dcterms:description "This property is used to describe the quantity kind for a dimensional data type." ; + rdfs:isDefinedBy ; + rdfs:label "element kind" ; + rdfs:subPropertyOf qudt:elementKind . + +qudt:elementTypeList + a owl:ObjectProperty ; + dcterms:description "This property is used to relate a structured data type with a list of data types. The list members determine the types of structured type's elements. It is used for structured data types with elements that are of different types." ; + rdfs:isDefinedBy ; + rdfs:label "element type list" . + +qudt:elementUnit + a owl:ObjectProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "element unit" . + +qudt:encoding + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "encoding" . + +qudt:enumeration + a owl:ObjectProperty ; + rdfs:label "enumeration" . + +qudt:fieldLabels + a owl:ObjectProperty ; + dcterms:description "This property is used to list the field labels for a record type." ; + rdfs:isDefinedBy ; + rdfs:label "field labels" . + +qudt:frameType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "frame type" . + +qudt:iconicCue + a owl:ObjectProperty ; + rdfs:label "iconic cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:iconicCueEnumeration + a owl:ObjectProperty ; + rdfs:label "iconic cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:kinestheticCue + a owl:ObjectProperty ; + rdfs:label "kinesthetic cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:kinestheticCueEnumeration + a owl:ObjectProperty ; + rdfs:label "kinesthetic cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:modalCue + a owl:ObjectProperty ; + rdfs:label "modal cue" . + +qudt:modalCueEnumeration + a owl:ObjectProperty ; + rdfs:label "modal cue enumeration" ; + rdfs:subPropertyOf qudt:enumeration . + +qudt:modifiability + a owl:ObjectProperty ; + dcterms:description "Reference to one in a list of enumerated elements that indicates whether data (e.g. variable or parameter) can be changed." ; + rdfs:label "modifiability" . + +qudt:orderedType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "ordered type" . + +qudt:orderingRelation + a owl:ObjectProperty, owl:FunctionalProperty ; + dcterms:description "This property identifies the mathematical comparison operator (such as \"<\" or \">\") that is used to order the elements of a collection." ; + rdfs:isDefinedBy ; + rdfs:label "Ordering Relation" . + +qudt:padding + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "padding" . + +qudt:pitchRotationDefinition + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "pitch rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +qudt:referenceFrame + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "reference frame" ; + rdfs:subPropertyOf qudt:coordinateSystemFrame . + +qudt:referenceFrameType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "reference frame type" . + +qudt:returnType + a owl:ObjectProperty ; + dcterms:description "This property is used to state the return type of a function type." ; + rdfs:isDefinedBy ; + rdfs:label "return type" ; + rdfs:subPropertyOf qudt:datatype . + +qudt:rollRotationDefinition + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "roll rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +qudt:rotationDefinition + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "rotation definition" . + +qudt:signedness + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "signedness" . + +qudt:timeDatatype + a owl:ObjectProperty ; + rdfs:label "time datatype" ; + rdfs:subPropertyOf qudt:type . + +qudt:type + a owl:ObjectProperty ; + dcterms:description "A reference to the specification of the data type of a variable or constant." ; + rdfs:label "type" . + +qudt:typeMatrix + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "type matrix" . + +qudt:typeVector + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "type vector" . + +qudt:valueRange + a owl:ObjectProperty ; + rdfs:label "value range" . + +qudt:valueType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "value type" . + +qudt:valueVector + a owl:ObjectProperty ; + dcterms:description "A list of the values of elements in a Partial Array." ; + rdfs:label "value vector" . + +qudt:vector + a owl:ObjectProperty ; + rdfs:label "vector" . + +qudt:visualCue + a owl:ObjectProperty ; + rdfs:label "visual cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:visualCueEnumeration + a owl:ObjectProperty ; + rdfs:label "visual cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:yawRotationDefinition + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "Yaw rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +dcterms:description + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "description" . + +qudt:abbreviation + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "abbreviation" . + +qudt:accuracy + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description """Accuracy is the degree to which a given quantity is correct and free from error. For example, a quantity specified as 100+/-1 has an (absolute) accuracy of +/-1 (meaning its true value can fall in the range 99-101), while a quantity specified as 100+/-2% has a (relative) accuracy of +/-2% (meaning its true value can fall in the range 98-102). + +The concepts of accuracy and precision are both closely related and often confused. While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x, the precision of x is the total number of significant decimal (or other) digits. """ ; + rdfs:isDefinedBy ; + rdfs:label "accuracy" ; + rdfs:range xsd:integer . + +qudt:allowedPattern + a owl:DatatypeProperty ; + dcterms:description "This property relates a date string encoding (c.f. type:DateStringEncodingType) to one or more XML Schema compliant regular expressions that together determine the allowed lexical expressions that can be unambiguously parsed to determine a temporal quantity." ; + rdfs:isDefinedBy ; + rdfs:label "allowed pattern" ; + rdfs:range xsd:string . + +qudt:ansiSQLName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "ANSI SQL name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:base + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "base" ; + rdfs:range xsd:integer . + +qudt:bits + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "bits" ; + rdfs:range xsd:integer . + +qudt:bounded + a owl:DatatypeProperty ; + dcterms:description "A datatype is bounded if its value space has either a finite upper and lower bound. Either bound may be inclusive or exclusive. " ; + rdfs:isDefinedBy ; + rdfs:label "bounded" ; + rdfs:range xsd:boolean . + +qudt:bytes + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "bytes" ; + rdfs:label "octets" ; + rdfs:range xsd:integer . + +qudt:columns + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "columns" ; + rdfs:range xsd:integer . + +qudt:dimensionality + a owl:DatatypeProperty ; + dcterms:description """ + The number of dimensions making up a matrix or an array. + For example a 4 by 4 array has a dimensionality of 2. + Whereas a vector or a string has a dimensionality of 1. + """ ; + rdfs:isDefinedBy ; + rdfs:label "dimensionality" ; + rdfs:range xsd:integer . + +qudt:elementName + a owl:DatatypeProperty ; + rdfs:label "element name" . + +qudt:elementTypeCount + a owl:DatatypeProperty ; + dcterms:description "This property determines the allowed number of element types that a structured data type may have." ; + rdfs:isDefinedBy ; + rdfs:label "element type count" ; + rdfs:range xsd:integer . + +qudt:encodedValue + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "encoded value" . + +qudt:exponent + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:label "exponent" . + +qudt:fieldName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "field name" ; + rdfs:range xsd:string . + +qudt:float_X + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "float X" ; + rdfs:range xsd:anySimpleType . + +qudt:float_Y + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "float Y" ; + rdfs:range xsd:anySimpleType . + +qudt:float_Z + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "float Z" ; + rdfs:range xsd:anySimpleType . + +qudt:functionArity + a owl:DatatypeProperty ; + dcterms:description "This property is used to state the number of arguments for a function type." ; + rdfs:isDefinedBy ; + rdfs:label "function arity" ; + rdfs:range xsd:integer . + +qudt:id + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "id" . + +qudt:inverted + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "inverted" ; + rdfs:range xsd:boolean . + +qudt:isByteString + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "is byte string" ; + rdfs:range xsd:boolean . + +qudt:javaName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "java name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:jsName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Javascript name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:length + a owl:DatatypeProperty ; + dcterms:description "The length of a structure, for example the size of a vector" ; + rdfs:isDefinedBy ; + rdfs:label "length" ; + rdfs:range xsd:integer ; + rdfs:subPropertyOf qudt:maxLength ; + rdfs:subPropertyOf qudt:minLength . + +qudt:lowerBound + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "lower bound" . + +qudt:mantissa + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description "In scientific notation, the mantissa of a real number is the integer coefficient preceding the base raised to the exponent." ; + rdfs:label "mantissa" . + +qudt:matlabName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "matlab name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:maxBits + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "maximum bits" ; + rdfs:range xsd:integer . + +qudt:maxDepth + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "max depth" ; + rdfs:range xsd:integer . + +qudt:maxExclusive + a owl:DatatypeProperty ; + dcterms:description "maxExclusive is the exclusive upper bound of the value space for a datatype with the ordered property. The value of maxExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "max exclusive" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:maxExponent + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "max exponent" ; + rdfs:range xsd:integer . + +qudt:maxInclusive + a owl:DatatypeProperty ; + dcterms:description "maxInclusive is the inclusive upper bound of the value space for a datatype with the ordered property. The value of maxInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "max inclusive" ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:maxLength + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "max length" ; + rdfs:range xsd:integer . + +qudt:maxMantissa + a owl:DatatypeProperty ; + dcterms:description """ +

The maximium mantissa is the largest integer that may appear as a coefficient in a finite precision representation of a real number. + For a given numeric data type, the value of maxMantissa} (M) and the values of base (b) and precision (p) are related by the formula: + M = b - 1. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "max mantissa" ; + rdfs:range xsd:integer . + +qudt:microsoftSQLServerName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Microsoft SQL Server name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:minBits + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "minimum bits" ; + rdfs:range xsd:integer . + +qudt:minExclusive + a owl:DatatypeProperty ; + dcterms:description "minExclusive is the exclusive lower bound of the value space for a datatype with the ordered property. The value of minExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "min exclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:minInclusive + a owl:DatatypeProperty ; + dcterms:description "minInclusive is the inclusive lower bound of the value space for a datatype with the ordered property. The value of minInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "min inclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:minLength + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "min length" ; + rdfs:range xsd:integer . + +qudt:minMantissa + a owl:DatatypeProperty ; + dcterms:description """ +

The minimium mantissa is the negative integer with the greatest magnitude that may appear as a coefficient in a finite precision representation of a real number. + For a given numeric data type, the value of minMantissa (M) and the values of base (b) and precision (p) are related by the formula: +

+

M = -(bp - 1). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "min mantissa" ; + rdfs:range xsd:integer . + +qudt:minValue + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "minimum value" . + +qudt:mySQLName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "MySQL name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:odbcName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "ODBC name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:oleDBName + a owl:DatatypeProperty ; + dcterms:description """ +

OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. + The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "OLE DB name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:oracleSQLName + a owl:DatatypeProperty ; + rdfs:domain qudt:Datatype ; + rdfs:isDefinedBy ; + rdfs:label "ORACLE SQL name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:orderInStructure + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "order in structure" . + +qudt:originDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "origin definition" ; + rdfs:range xsd:string . + +qudt:pattern + a owl:DatatypeProperty ; + dcterms:description "A pattern is a constraint on the value space of a datatype which is achieved by constraining the lexical space to literals which match a specific pattern. The value of pattern must be a regular expression." ; + rdfs:isDefinedBy ; + rdfs:label "pattern" ; + rdfs:range xsd:string . + +qudt:precision + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description """Precision is the number of digits used to perform a given computation. The concepts of accuracy and precision are both closely related and often confused. While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x, the precision of x is the total number of significant decimal (or other) digits. + +For a given numeric data type, the value of type:precision (?p) is related to the values of type:maxMantissa (?M) and type:base (?b) by the formula + +?p := log(?b, ?M) + +where log(a,y) = x iff y=a^x.""" ; + rdfs:isDefinedBy ; + rdfs:label "precision" ; + rdfs:range xsd:integer . + +qudt:protocolBuffersName + a owl:DatatypeProperty ; + rdfs:label "protocol buffers name" ; + rdfs:subPropertyOf qudt:id . + +qudt:pythonName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "python name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:rdfsDatatype + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "rdfs datatype" . + +qudt:realization + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "realization" ; + rdfs:range xsd:string . + +qudt:rgbCode + a owl:DatatypeProperty ; + rdfs:label "rgb code" . + +qudt:rows + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "rows" ; + rdfs:range xsd:integer . + +qudt:significantDigits + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "significant digits" ; + rdfs:range xsd:integer . + +qudt:sound + a owl:DatatypeProperty ; + dcterms:description "The intended use of the sound property is to be associated with modal enumerations" ; + rdfs:label "sound" . + +qudt:stringValue + a owl:DatatypeProperty ; + rdfs:label "string value" ; + rdfs:subPropertyOf qudt:scalarValue . + +qudt:totalDigits + a owl:DatatypeProperty ; + rdfs:label "total digits" . + +qudt:upperBound + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "upper bound" ; + rdfs:range xsd:anySimpleType . + +qudt:vbName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Visual Basic name" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:id . + +qudt:xAxisDefinition + a owl:DatatypeProperty ; + dcterms:description "The definition of the X-Axis could be an intersection, cross-product or other function of a meridian or orbit. It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. An epoch might also be given." ; + rdfs:isDefinedBy ; + rdfs:label "X-Axis Definition" ; + rdfs:range xsd:string . + +qudt:xCoordinateDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "X-Coordinate definition" ; + rdfs:range xsd:string . + +qudt:yAxisDefinition + a owl:DatatypeProperty ; + dcterms:description "The definition of the Y-Axis could be an intersection, cross-product or other function of a meridian or orbit. It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. An epoch might also be given." ; + rdfs:isDefinedBy ; + rdfs:label "Y-Axis definition" ; + rdfs:range xsd:string . + +qudt:yCoordinateDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Y-Coordinate definition" ; + rdfs:range xsd:string . + +qudt:zAxisDefinition + a owl:DatatypeProperty ; + dcterms:description "The definition of the Y-Axis could be an intersection, croos-product or other function of a meridian or orbit. It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. An epoch might also be given." ; + rdfs:isDefinedBy ; + rdfs:label "Z-Axis definition" ; + rdfs:range xsd:string . + +qudt:zCoordinateDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Z-Coordinate definition" ; + rdfs:range xsd:string . + +dcterms:contributor + a owl:AnnotationProperty ; + rdfs:label "contributor" ; + rdfs:range xsd:string . + +dcterms:creator + a owl:AnnotationProperty ; + rdfs:label "creator" ; + rdfs:range xsd:string . + +dcterms:rights + a owl:AnnotationProperty ; + rdfs:label "rights" ; + rdfs:range xsd:string . + +dcterms:subject + a owl:AnnotationProperty ; + rdfs:label "subject" ; + rdfs:range xsd:string . + +dcterms:title + a owl:AnnotationProperty ; + rdfs:label "title" ; + rdfs:range xsd:string . + +qudt:defaultValue + a owl:AnnotationProperty ; + rdfs:isDefinedBy ; + rdfs:label "Default Value" . + +dtype:GMD_DTYPE + dcterms:description "The ontology \"dtype\" provides a specification of simple data types such as enumerations and codelists. These are needed in support of the conversion of XML Schemas and UML Models to OWL. The purpose of \"dtype\" is to provide a foundation for expressing rich data types. These data types are typically needed when dealing with OWL representations of data structures derived from XML Schema." . + + + a vaem:GraphMetaData ; + dcterms:description """ +

The QUDT 'Datatype' ontology is a specification of scalar and structured data types. + Scalar data types are defined for all the commonly encountered forms of numbers, characters and booleans, with their representations in a number of vendor and industry specific technologies. + Structured data types cover arrays, lists, trees and many other forms of composite data elements. + Specification of coordinate systems is also covered. +

+ """^^rdf:HTML ; + dcterms:modified "2024-11-22T14:54:24-05:00"^^xsd:dateTime ; + dcterms:rights """ +

The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available here. + Attribution should be made to QUDT.org. +

"""^^rdf:HTML ; + dcterms:subject "Datatypes" ; + rdfs:label "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:graphTitle "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:hasGraphRole vaem:SchemaGraph ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:name "QUDT" ; + vaem:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ; + vaem:namespacePrefix "qudt" ; + vaem:owner "QUDT.ORG" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ; + vaem:publishedDate "2017-05-10"^^xsd:date ; + vaem:releaseDate "2016-05-09"^^xsd:date ; + vaem:title "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:turtleFileURL "http://qudt.org/3.1.0/schema/datatype.ttl"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource ; + vaem:withAttributionTo . + +qudt:BOOLEAN + a qudt:BooleanType ; + dcterms:description "In computer science, the Boolean or logical data type is a data type, having two values (usually denoted true and false), intended to represent the truth values of logic and Boolean algebra. The Boolean data type is the primary result of conditional statements, which allow different actions and change control flow depending on whether a programmer-specified boolean condition evaluates to true or false."^^rdf:HTML ; + dtype:literal "boolean" ; + prov:wasInfluencedBy "http://en.wikipedia.org/wiki/Boolean%5Fdata%5Ftype"^^xsd:anyURI ; + prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx"^^xsd:anyURI ; + qudt:ansiSQLName "BOOLEAN" ; + qudt:encoding qudt:BooleanEncoding ; + qudt:javaName "boolean" ; + qudt:jsName "Boolean()" ; + qudt:microsoftSQLServerName "bit" ; + qudt:mySQLName "BOOL" ; + qudt:mySQLName "BOOLEAN" ; + qudt:mySQLName "TINYINT(1)" ; + qudt:odbcName "SQL_BIT" ; + qudt:oleDBName "DBTYPE_BOOL" ; + qudt:oracleSQLName "RAW(1)" ; + qudt:protocolBuffersName "bool" ; + qudt:pythonName "bool" ; + qudt:rdfsDatatype xsd:boolean ; + rdfs:label "BOOLEAN" . + +qudt:BYTE + a qudt:SignedShortIntegerType ; + dcterms:description "The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters. They can also be used in place of int where their limits help to clarify your code; the fact that a variable's range is limited can serve as a form of documentation."^^rdf:HTML ; + dtype:literal "byte" ; + prov:wasInfluencedBy "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI ; + qudt:abbreviation "SI8" ; + qudt:bytes 1 ; + qudt:cName "Byte" ; + qudt:encoding qudt:OctetEncoding ; + qudt:maxInclusive 127 ; + qudt:minInclusive -128 ; + qudt:rdfsDatatype xsd:byte ; + qudt:signedness qudt:SIGNED ; + rdfs:label "Byte" . + +qudt:BigEndian + a qudt:EndianType ; + dtype:literal "big" ; + rdfs:label "Big Endian" . + +qudt:BitAligned + a qudt:AlignmentType ; + dtype:literal "bit" ; + rdfs:label "Bit Aligned" . + +qudt:BitField + a owl:DataRange, rdfs:Datatype ; + rdfs:isDefinedBy ; + rdfs:label "bitfield" ; + rdfs:subClassOf xsd:string . + +qudt:BitField01 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B1" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 1 ; + ] [ + xsd:pattern "[0-1]" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf1" ; + qudt:bits 1 ; + qudt:mySQLName "BIT(1)" ; + rdfs:label "Bit Field of 1 bit" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField02 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B2" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 2 ; + ] [ + xsd:pattern "[0-1]{2}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf2" ; + qudt:bits 2 ; + qudt:mySQLName "BIT(2)" ; + rdfs:label "Bit Field of 2 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField03 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B3" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 3 ; + ] [ + xsd:pattern "[0-1]{3}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf3" ; + qudt:bits 3 ; + qudt:mySQLName "BIT(3)" ; + rdfs:label "Bit Field of 3 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField04 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B4" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 4 ; + ] [ + xsd:pattern "[0-1]{4}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf4" ; + qudt:bits 4 ; + qudt:mySQLName "BIT(4)" ; + rdfs:label "Bit Field of 4 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField05 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B5" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 5 ; + ] [ + xsd:pattern "[0-1]{5}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf5" ; + qudt:bits 5 ; + qudt:mySQLName "BIT(5)" ; + rdfs:label "Bit Field of 5 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField06 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B6" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 6 ; + ] [ + xsd:pattern "[0-1]{6}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf6" ; + qudt:bits 6 ; + qudt:mySQLName "BIT(6)" ; + qudt:rdfsDatatype qudt:BitField06 ; + rdfs:label "Bit Field of 6 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField07 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B7" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 7 ; + ] [ + xsd:pattern "[0-1]{7}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf7" ; + qudt:bits 7 ; + qudt:mySQLName "BIT(7)" ; + qudt:rdfsDatatype qudt:BitField07 ; + rdfs:label "Bit Field of 7 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField08 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B8" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 8 ; + ] [ + xsd:pattern "[0-1]{8}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf8" ; + qudt:bits 8 ; + qudt:mySQLName "BIT(8)" ; + qudt:rdfsDatatype qudt:BitField08 ; + rdfs:label "Bit Field of 8 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField09 + a qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B9" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 9 ; + ] [ + xsd:pattern "[0-1]{9}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf9" ; + qudt:bits 9 ; + qudt:mySQLName "BIT(9)" ; + qudt:rdfsDatatype qudt:BitField09 ; + rdfs:label "Bit Field of 9 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField10 + a owl:DataRange, qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B10" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 10 ; + ] [ + xsd:pattern "[0-1]{10}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf10" ; + qudt:bitOrder qudt:BigEndian ; + qudt:bits 10 ; + qudt:byteOrder qudt:BigEndian ; + qudt:mySQLName "BIT(10)" ; + qudt:rdfsDatatype qudt:BitField10 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field Of 10 Bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField11 + a owl:DataRange, qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B11" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 11 ; + ] [ + xsd:pattern "[0-1]{11}" ; + ] ) ; + ] ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf11" ; + qudt:bits 11 ; + qudt:mySQLName "BIT(11)" ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field Of 11 Bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField12 + a owl:DataRange, qudt:BitFieldType, rdfs:Datatype ; + dtype:literal "B12" ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:length 12 ; + ] [ + xsd:pattern "[0-1]{12}" ; + ] ) ; + ] ; + qudt:abbreviation "bf12" ; + qudt:bits 12 ; + qudt:mySQLName "BIT(12)" ; + qudt:rdfsDatatype qudt:BitField12 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 12 bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BooleanEncoding + a qudt:BooleanEncodingType ; + rdfs:label "Boolean Encoding" . + +qudt:ByColumn + a qudt:ArrayDataOrderType ; + dtype:literal "byColumn" ; + rdfs:isDefinedBy ; + rdfs:label "By Column" . + +qudt:ByLeftMostIndex + a qudt:ArrayDataOrderType ; + dtype:literal "byLeftMostIndex" ; + rdfs:isDefinedBy ; + rdfs:label "By Left Most Index" . + +qudt:ByRow + a qudt:ArrayDataOrderType ; + dtype:literal "byRow" ; + rdfs:isDefinedBy ; + rdfs:label "By Row" . + +qudt:ByteAligned + a qudt:AlignmentType ; + dtype:literal "byte" ; + rdfs:label "Byte Aligned" . + +qudt:CCT_EarthCentered + a qudt:CoordinateCenterType ; + rdfs:label "Earth-centered Coordinate System Type" . + +qudt:CCT_MarsCentered + a qudt:CoordinateCenterType ; + rdfs:label "Mars-centered Coordinate System Type" . + +qudt:CCT_MoonCentered + a qudt:CoordinateCenterType ; + rdfs:label "Moon-centered Coordinate System Type" . + +qudt:CCT_SunCentered + a qudt:CoordinateCenterType ; + rdfs:label "Sun-centered Coordinate System Type" . + +qudt:CCT_VehicleCentered + a qudt:CoordinateCenterType ; + rdfs:label "Vehicle-centered Coordinate System Type" . + +qudt:COLOR_AMBER + a qudt:ColorCue ; + dtype:literal "amber" ; + qudt:rgbCode "#FFBF00" ; + rdfs:label "Amber Color" . + +qudt:COLOR_GREEN + a qudt:ColorCue ; + dtype:literal "green" ; + qudt:rgbCode "#008000" ; + rdfs:label "Green color" . + +qudt:COLOR_ORANGE + a qudt:ColorCue ; + dtype:literal "orange" ; + qudt:rgbCode "#FFA500" ; + rdfs:label "Orange color" . + +qudt:COLOR_RED + a qudt:ColorCue ; + dtype:literal "red" ; + qudt:rgbCode "#FF0000" ; + rdfs:label "Red color" . + +qudt:COLOR_YELLOW + a qudt:ColorCue ; + dtype:literal "yellow" ; + qudt:rgbCode "#FFFF00" ; + rdfs:label "Yellow color" . + +qudt:CRC32 + a owl:DataRange, rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:integer ; + owl:withRestrictions ( [ + xsd:minInclusive 0 ; + ] [ + xsd:maxInclusive "4294967295"^^xsd:unsignedInt ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "CRC-32" ; + rdfs:subClassOf xsd:integer . + +qudt:CharEncoding + a qudt:BooleanEncodingType, qudt:CharEncodingType ; + dc:description "7 bits of 1 octet" ; + qudt:bytes 1 ; + rdfs:label "Char Encoding" . + +qudt:Coordinates-3D-DoublePrecision-Type + a qudt:Coordinates-3D-Type ; + dcterms:description "3D coordinates in double floating point precision for locating a point in physical space" ; + qudt:elementTypeCount 3 ; + rdfs:label "3D Coordinates (Double Precision) type" . + +qudt:Coordinates-3D-SinglePrecision-Type + a qudt:Coordinates-3D-Type ; + dcterms:description "3D coordinates in single floating point precision for locating a point in physical space" ; + qudt:elementTypeCount 3 ; + rdfs:label "3D Coordinates (Single Precision)" . + +qudt:DecimalScaledUnit + dcterms:description "A sub-type of 'Scaled unit'. Detailed description to be provided in a future version." . + +qudt:DerivedCoherentUnit + dcterms:description "A sub-type of 'Derived Unit'. Detailed description to be provided in a future version." . + +qudt:DerivedNonCoherentUnit + dcterms:description "A sub-type of 'Derived Unit'. Detailed description to be provided in a future version." . + +qudt:EnumerationScale + dcterms:description "A sub-type of 'Scale'. Detailed description to be provided in a future version." . + +qudt:FALSE + a qudt:BooleanTypeEnumeratedValue ; + dtype:literal "false" ; + rdfs:isDefinedBy ; + rdfs:label "False" . + +qudt:FLAG + a qudt:BooleanType ; + dtype:literal "flag" ; + qudt:rdfsDatatype xsd:boolean ; + rdfs:label "FLAG" . + +qudt:FT_INERTIAL + a qudt:FrameType ; + rdfs:label "Inertial Frame Type" . + +qudt:FT_NON-ROTATING + a qudt:FrameType ; + rdfs:label "Non-rotating Frame Type" . + +qudt:FT_ROTATING + a qudt:FrameType ; + rdfs:label "Rotating Frame Type" . + +qudt:Figure + dcterms:description "A sub-type of 'QUDT Concept'. Detailed description to be provided in a future version." . + +qudt:GreekCharacter + dcterms:description "A sub-type of 'Symbol'. Detailed description to be provided in a future version." . + +qudt:HEAP + a qudt:HeapType ; + rdfs:label "HEAP" . + +qudt:HEXBINARY + a qudt:HexBinaryType ; + dtype:literal "hexbinary" ; + qudt:dimensionality 1 ; + qudt:rdfsDatatype qudt:hexbinary ; + rdfs:label "HEXBINARY" . + +qudt:IEEE754_1985RealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:label "IEEE 754 1985 Real Encoding" . + +qudt:IERS-TN-32-2004 + a qudt:Citation ; + dcterms:description "IERS Conventions (2003), D. D. McCarthy and Gérard Petit (eds.), IERS Technical Note No. 32, 2004; http://www.iers.org/iers/publications/tn/tn32."^^rdf:HTML ; + qudt:url "http://www.iers.org/iers/publications/tn/tn32."^^xsd:anyURI ; + rdfs:label "IERS-TN-32-2004" ; + skos:prefLabel "IERS-TN-32-2004" . + +qudt:IMPERIAL-DimensionVector + dcterms:description "A sub-type of 'Quantity Dimension Vector'. Detailed description to be provided in a future version." . + +qudt:ISO-DimensionVector + dcterms:description "A sub-type of 'Quantity Dimension Vector'. Detailed description to be provided in a future version." . + +qudt:ISO8601-UTCDateTime-BasicFormat + a qudt:DateTimeStringEncodingType ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}.[0-9]+Z" ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}Z" ; + rdfs:label "ISO 8601 UTC Date Time - Basic Format" . + +qudt:IntegerUnionList + a rdfs:Resource ; + rdf:first [ + sh:datatype xsd:nonNegativeInteger ; + ] ; + rdf:rest ( [ + sh:datatype xsd:positiveInteger ; + ] [ + sh:datatype xsd:integer ; + ] ) ; + rdfs:label "Integer union list" ; + rdfs:subClassOf rdf:List . + +qudt:LIST + a qudt:List ; + rdfs:label "LIST" . + +qudt:LittleEndian + a qudt:EndianType ; + dtype:literal "little" ; + rdfs:label "Little Endian" . + +qudt:LongUnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 8 ; + rdfs:label "Long Unsigned Integer Encoding" . + +qudt:MASS-PROPERTIES-ARRAY + a qudt:MassPropertiesArrayType ; + rdfs:label "MASS PROPERTIES ARRAY" . + +qudt:MATRIX + a qudt:MatrixType ; + rdfs:label "MATRIX" . + +qudt:MATRIX-TYPE_2x4 + a qudt:MatrixType ; + qudt:byRow true ; + qudt:columns 4 ; + qudt:dimensionality 2 ; + qudt:dimensions ( 2 4 ) ; + qudt:rows 2 ; + qudt:rows 4 ; + rdfs:label "Matrix type 2x4" . + +qudt:MKS-Unit + dcterms:description "A sub-type of 'Standards unit'. Detailed description to be provided in a future version." . + +qudt:MULTi-DIMENSIONAL-ARRAY + a qudt:MultiDimensionalArrayType ; + rdfs:label "MULTI-DIMENSIONAL ARRAY" . + +qudt:NUMERIC + a qudt:NumericType ; + dtype:literal "numeric" ; + qudt:ansiSQLName "DECIMAL(p,s)" ; + qudt:odbcName "SQL_DECIMAL(p,s)" ; + qudt:oracleSQLName "NUMBER(p,s)" ; + rdfs:label "Numeric" . + +qudt:No + a qudt:YesNoType ; + dtype:literal "N" ; + rdfs:label "No" . + +qudt:NonModifiableParameter + a qudt:ParameterModifiabilityType ; + dcterms:description "Parameter is fixed, not modifiable." ; + dtype:code "0" ; + dtype:literal "fixed" ; + rdfs:label "Non modifiable parameter" . + +qudt:NonNegativeIntegerUnionList + a rdf:List ; + rdf:first [ + sh:datatype xsd:nonNegativeInteger ; + ] ; + rdf:rest ( [ + sh:datatype xsd:positiveInteger ; + ] ) ; + rdfs:label "Non-negative union list" . + +qudt:OctetEncoding + a qudt:BooleanEncodingType, qudt:ByteEncodingType ; + qudt:bytes 1 ; + rdfs:label "OCTET Encoding" . + +qudt:OffOnStateTypeEnumeration + dcterms:description "A discrete state enumeration whose values are 'off' and 'on'. The 'off' value is encoded as a zero (0) and the 'on' value as a one (1)." . + +qudt:OffState + a qudt:OnOffStateType ; + dtype:code "0" ; + dtype:literal "off" ; + rdfs:isDefinedBy ; + rdfs:label "Off State" . + +qudt:OnOffStateTypeEnumeration + dcterms:description """ + A discrete state enumeration whose values are 'off' and 'on'. + The 'on' value is encoded as a zero (0) and the 'off' value as a one (1). + """ ; + qudt:inverted true ; + rdfs:isDefinedBy ; + rdfs:label "On/Off State Enumeration" . + +qudt:OnState + a qudt:OnOffStateType ; + dtype:code "1" ; + dtype:literal "on" ; + rdfs:isDefinedBy ; + rdfs:label "On State" . + +qudt:OneMeansOff + a qudt:OnOffStateType ; + dtype:literal "off" ; + qudt:inverted true ; + rdfs:isDefinedBy ; + rdfs:label "One means off" . + +qudt:Open + a qudt:OpenCloseStateType ; + dtype:code "1" ; + dtype:literal "open" ; + rdfs:label "Open" . + +qudt:Organization + dcterms:description "A sub-type of 'QUDT Concept'. Detailed description to be provided in a future version." . + +qudt:PARTIAL-ARRAY + a qudt:ArrayType ; + rdfs:label "PARTIAL ARRAY" . + +qudt:RN_BINARY-BASE + a qudt:RealNumberType ; + dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 2, and then the values of m and e are determined given this choice of base." ; + rdfs:label "Real number binary base" . + +qudt:RN_DECIMAL-BASE + a qudt:RealNumberType ; + dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 10, and then the values of m and e are determined given this choice of base." ; + rdfs:label "Real number decminal base" . + +qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-1 + a qudt:IndexedCollectionMember ; + qudt:index 1 ; + qudt:next qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-2 ; + qudt:order 1 ; + qudt:previous ( ) ; + qudt:type qudt:FLOAT-DP ; + rdfs:label "STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES" . + +qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-2 + a qudt:IndexedCollectionMember ; + qudt:next qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-3 ; + qudt:order "2"^^xsd:int ; + qudt:type qudt:FLOAT-DP ; + rdfs:label "STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES" . + +qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-3 + a qudt:IndexedCollectionMember ; + qudt:next qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-4 ; + qudt:order "3"^^xsd:int ; + qudt:type qudt:FLOAT-DP ; + rdfs:label "STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES" . + +qudt:STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES-ELEMENT-4 + a qudt:IndexedCollectionMember ; + qudt:next ( ) ; + qudt:order "4"^^xsd:int ; + qudt:type qudt:FLOAT-DP ; + rdfs:label "STATE-VECTOR-TYPE-LIST-MEMBER_MASS-PROPERTIES" . + +qudt:STATE-VECTOR_MASS-PROPERTIES + a qudt:StateSpaceVectorType ; + qudt:objectValue qudt:STATE-VECTOR-TYPE-LIST_MASS-PROPERTIES ; + qudt:type qudt:StateSpaceVectorType ; + rdfs:label "STATE-VECTOR-MASS-PROPERTIES" . + +qudt:ScalarDatatype + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Encoding ; + owl:onProperty qudt:encoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom rdfs:Datatype ; + owl:onProperty qudt:rdfsDatatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bitOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:byteOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bytes ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:encoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:length ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxExclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:minExclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:rdfsDatatype ; + ] . + +qudt:ScaledUnit + dcterms:description "A sub-type of 'Unit'. Detailed description to be provided in a future version." . + +qudt:ShortSignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:label "Short Signed Integer Encoding" . + +qudt:ShortUnsignedIntegerEncoding + a qudt:BooleanEncodingType, qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:label "Short Unsigned Integer Encoding" . + +qudt:SinglePrecisionRealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:label "Single Precision Real Encoding" . + +qudt:StandardsUnit + dcterms:description "A sub-type of 'Unit'. Detailed description to be provided in a future version." . + +qudt:Symbol + dcterms:description "A sub-type of 'QUDT Concept'. Detailed description to be provided in a future version." . + +qudt:SystemModifiableParameter + a qudt:ParameterModifiabilityType ; + dcterms:description "Parameter is modifiable by a (computer) system." ; + dtype:code "1" ; + dtype:literal "system" ; + rdfs:label "System modifiable parameter" . + +qudt:TABLE-COMPOSITION-EXAMPLE-SUBTREE_1 + a qudt:Tree ; + qudt:node qudt:TIME-SERIES-TABLE-A-2x4 ; + rdfs:label "TABLE-COMPOSITION-EXAMPLE-SUBTREE_1" . + +qudt:TABLE-COMPOSITION-EXAMPLE-SUBTREE_2 + a qudt:Tree ; + qudt:node qudt:TIME-SERIES-TABLE-B-2x4 ; + rdfs:label "TABLE-COMPOSITION-EXAMPLE-SUBTREE_2" . + +qudt:TABLE-COMPOSITION-SUBTREE-LIST-MEMBER_1 + a qudt:TreeListMember ; + qudt:order "1"^^xsd:int ; + qudt:value qudt:TABLE-COMPOSITION-EXAMPLE-SUBTREE_1 ; + rdfs:label "TABLE-COMPOSITION-SUBTREE-1" . + +qudt:TABLE-COMPOSITION-SUBTREE-LIST-MEMBER_2 + a qudt:IndexedCollectionMember ; + qudt:order "2"^^xsd:int ; + qudt:value qudt:TABLE-COMPOSITION-EXAMPLE-SUBTREE_2 ; + rdfs:label "TABLE-COMPOSITION-SUBTREE_2" . + +qudt:TABLE-COMPOSTION-SUBTREE-LIST-EXAMPLE_1 + a qudt:TreeListMember ; + qudt:element qudt:TABLE-COMPOSITION-SUBTREE-LIST-MEMBER_1 ; + qudt:element qudt:TABLE-COMPOSITION-SUBTREE-LIST-MEMBER_2 ; + rdfs:label "TABLE-COMPOSTION-SUBTREES-EXAMPLE_1" . + +qudt:TABLE-TYPE_2x4 + a qudt:TableType ; + qudt:byRow true ; + qudt:columns 4 ; + qudt:dimensionality 2 ; + qudt:dimensions ( 2 4 ) ; + qudt:rows 2 ; + rdfs:label "Table type 2x4" . + +qudt:TIME + a qudt:TimeStringType ; + dc:description "Time in hh:mm:ss[Z|(+|-)hh:mm]format." ; + dtype:literal "time" ; + qudt:dimensionality 1 ; + qudt:rdfsDatatype xsd:time ; + rdfs:label "TIME" . + +qudt:TRUE + a qudt:BooleanTypeEnumeratedValue ; + dtype:literal "true" ; + rdfs:isDefinedBy ; + rdfs:label "True" . + +qudt:True + a qudt:BooleanStateType ; + dtype:code "1" ; + dtype:literal "true" ; + rdfs:label "true" . + +qudt:UNARY-FUNCTION + a qudt:FunctionDatatype ; + dcterms:description "This type identifies functions that have exactly one argument."^^rdf:HTML ; + qudt:functionArity 1 ; + rdfs:label "UNARY-FUNCTION" . + +qudt:UTC-DayTime + a rdfs:Datatype ; + dcterms:description "YYYY-DDDThh:mm:ss.ddZ, where each character is an ASCII character using one octet with the following meanings: YYYY = Year in four-character subfield with values 0001-9999, DDD = Day of year in three-character subfield with values 001-365 or -366, T = Calendar-Time separator, hh = Hour in two-character subfield with values 00-23, mm = Minute in two-character subfield with values 00-59, ss = Second in two-character subfield with values 00-59 (-58 or -60 during leap seconds), dd = Decimal fraction of second in one- to n-character subfield, each d has values 0-9, and Z = time code terminator (optional)" ; + dcterms:description "xsd:pattern [0-9]{4}\\\\-[0-9]{3}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\\\.[0-9]{2}Z?" ; + rdfs:isDefinedBy ; + rdfs:label "UTC Day time" ; + rdfs:subClassOf xsd:string . + +qudt:UTF16-StringEncoding + a qudt:StringEncodingType ; + rdfs:isDefinedBy ; + rdfs:label "UTF-16 String" . + +qudt:UnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:label "Unsigned Integer Encoding" . + +qudt:UserModifiableParameter + a qudt:ParameterModifiabilityType ; + dcterms:description "Parameter is modifiable by a user." ; + dtype:code "2" ; + dtype:literal "user" ; + rdfs:label "User modifiable parameter" . + +qudt:VECTOR + a qudt:VectorType ; + qudt:dimensionality 1 ; + rdfs:label "VECTOR" . + +qudt:VECTOR_3D + a qudt:VectorType ; + qudt:dimensionality 1 ; + qudt:protocolBuffersName "Vector3D" ; + rdfs:label "VECTOR 3D" . + +qudt:WDST_DRY + a qudt:WetDryStateType ; + dtype:code "2" ; + dtype:literal "dry" ; + rdfs:isDefinedBy ; + rdfs:label "Dry" . + +qudt:WDST_WET + a qudt:WetDryStateType ; + dtype:code "1" ; + dtype:literal "wet" ; + rdfs:isDefinedBy ; + rdfs:label "Wet" . + +qudt:WordAligned + a qudt:AlignmentType ; + dtype:literal "word" ; + rdfs:label "Word Aligned" . + +qudt:Yes + a qudt:YesNoType ; + dtype:literal "Y" ; + rdfs:label "Yes" . + +qudt:cName + rdfs:subPropertyOf qudt:id . + +qudt:hexbinary + a rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:pattern "[0-9A-F]*" ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "hexbinary" ; + rdfs:subClassOf xsd:string . + +qudt:integer1to12 + a owl:DataRange, rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:integer ; + owl:withRestrictions ( [ + xsd:minInclusive 1 ; + ] [ + xsd:maxInclusive 12 ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "integer 1..12" ; + rdfs:subClassOf xsd:integer . + +qudt:integer1to31 + a owl:DataRange, rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:integer ; + owl:withRestrictions ( [ + xsd:minInclusive 1 ; + ] [ + xsd:maxInclusive 31 ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "integer 1..31" ; + rdfs:subClassOf xsd:integer . + +qudt:negative + a qudt:Polarity ; + dtype:code "1" ; + dtype:literal "negative" ; + rdfs:isDefinedBy ; + rdfs:label "negative" . + +qudt:positive + a qudt:Polarity ; + dtype:code "2" ; + dtype:literal "positive" ; + rdfs:isDefinedBy ; + rdfs:label "positive" . + +xsd:dateTime + dcterms:description """ +

YYYY-MM-DDThh:mm:ss[.dd] or YYYY-DDDThh:mm:ss[.dd], where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant, 'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. + As many 'd' characters to the right of the period as required may be used to obtain the required precision. + All fields require leading zeros. +

"""^^rdf:HTML ; + rdfs:isDefinedBy . + +[ + a owl:Restriction ; + owl:allValuesFrom qudt:ScalarDatatype ; + owl:onProperty qudt:encoding ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:realization ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:xAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:xAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:yAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:zAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty qudt:zAxisDefinition ; +] . + +[ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bitOrder ; +] . + +[ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:byteOrder ; +] . + +[ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:xCoordinateDefinition ; +] . + +[ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:yCoordinateDefinition ; +] . + +[ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:zCoordinateDefinition ; +] . + + diff --git a/libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl b/libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl new file mode 100644 index 000000000..e792c7d3e --- /dev/null +++ b/libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl @@ -0,0 +1,4960 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix dtype: . +@prefix prov: . +@prefix qudt: . +@prefix sh: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports sh: ; + rdfs:label "QUDT SHACL SCHEMA Datatypes Version 3.1.0" ; + sh:declare [ + sh:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ; + sh:prefix "qudt" ; + ] ; + sh:declare [ + sh:namespace "http://qudt.org/vocab/quantitykind/"^^xsd:anyURI ; + sh:prefix "quantitykind" ; + ] ; + sh:declare [ + sh:namespace "http://qudt.org/vocab/unit/"^^xsd:anyURI ; + sh:prefix "unit" ; + ] ; + sh:declare [ + sh:namespace "http://www.w3.org/1999/02/22-rdf-syntax-ns#"^^xsd:anyURI ; + sh:prefix "rdf" ; + ] ; + vaem:hasCatalogEntry voag:QUDT-SchemaCatalogEntry ; + vaem:hasGraphMetadata ; + vaem:hasGraphRole vaem:SchemaGraph ; + vaem:intent "This ontology is to be used by other ontologies that need to reference type definitions." ; + vaem:specificity 1 ; + vaem:url "http://qudt.org/3.1.0/schema/dtype"^^xsd:anyURI . + +qudt:AerospaceCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Coordinate system'." ; + rdfs:isDefinedBy ; + rdfs:label "Aerospace Coordinate system" ; + rdfs:subClassOf qudt:CoordinateSystem . + +qudt:AlignmentType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Specifies how a physical data field is aligned. + The alignment could be at a bit, byte or word boundary. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Alignment type" ; + sh:in ( qudt:BitAligned qudt:ByteAligned qudt:WordAligned ) . + +qudt:Array + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Array> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. + Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'. +

+

The key considerations for an Array are: +

+
    +
  1. Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;
  2. +
  3. Index-Based Access: Elements can be accessed, updated, or modified using their index;
  4. +
  5. Contiguous Memory Allocation: The elements are stored in consecutive memory locations, which allows efficient access using the index.
  6. +
+

An Array is represented as ordered entries of values arranged according to its dimensionality. + The number of dimensions is specified in the attribute 'dimensionality'. +

+

An array can be multi-dimensional. + Multiple indices are used but they are treated as extensions of the same structure. + For Example: for a 2D array arr[2][3], indices refer to the row and column positions. + A 2D array is still represented as a list, where each member of the list is a list. +

+

Higher dimensional arrays can be represented as nested lists. + For each dimension a new nested list is defined. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Array" ; + rdfs:subClassOf qudt:StructuredDatatype ; + sh:node qudt:DimensionalityShape ; + sh:property qudt:Array-isHeterogeneous ; + sh:property qudt:Array-value ; + sh:property qudt:DatatypePropertyShape ; + sh:property qudt:DimensionalityPropertyShape ; + sh:property qudt:DimensionsPropertyShape . + +qudt:AssociativeArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Associative Array (or Map) is an abstract data type composed of a collection of keys and a collection of values, + where each key is associated with one value. + The operation of finding the value associated with a key is called a lookup or indexing, + and this is the most important operation supported by an associative array. + The relationship between a key and its value is sometimes called a mapping or binding. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Associative Array" ; + rdfs:seeAlso qudt:Map ; + rdfs:subClassOf qudt:Array . + +qudt:AuralCue + a rdfs:Class, sh:NodeShape ; + rdfs:comment """ +

An aural cue is a sound produced by a device or a system that is used to alert personnel of of an advisory, cautionary, warning, or emergency state. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Aural Cue" ; + rdfs:subClassOf qudt:ModalCue ; + sh:property qudt:AuralCue-sound . + +qudt:AxialOrientationType + a rdfs:Class, sh:NodeShape ; + dcterms:description "The axial orientation of a coordinate system frame axis." ; + rdfs:isDefinedBy ; + rdfs:label "Axial Orientation Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:in ( qudt:PositiveZ qudt:PositiveY qudt:NegativeY qudt:NegativeZ qudt:PositiveX qudt:NegativeX ) . + +qudt:BalancedTree + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Balanced Tree is a data type that defines the properties of data structures that represent balanced trees. + A balanced tree is a tree where no leaf is much farther away from the root than any other leaf. + Different balancing schemes allow different definitions of "much farther" and different amounts of work to keep them balanced. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Balanced Tree Type" ; + rdfs:subClassOf qudt:Tree ; + sh:property qudt:BalancedTree-maxDepth . + +qudt:BigIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Big Integer is an integer that can be represented in eight octets (64 bits) of machine memory. + Big integers may be signed or unsigned. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Big Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype . + +qudt:BinaryTree + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Binary Tree is a data type that defines the properties of data structures that represent binary trees. + A binary tree is a tree in which each node has at most 2 children. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Binary Tree Type" ; + rdfs:subClassOf qudt:Tree . + +qudt:BitEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Bit Encoding Type is an encoding type for the correspondence between the two possible values of a bit, 0 or 1, and some interpretation. + For example, in a boolean encoding, a bit denotes a truth value, where 0 corresponds to False and 1 corresponds to True. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Bit Encoding" ; + rdfs:subClassOf qudt:Encoding ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:BitEncoding ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:BooleanEncodingType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Encoding Type" ; + rdfs:subClassOf qudt:Encoding ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:BooleanEncoding qudt:BitEncoding qudt:OctetEncoding ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:BooleanType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A boolean data type can take on only two values." ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Type" ; + rdfs:subClassOf qudt:OrdinalType ; + sh:property qudt:BooleanType-encoding . + +qudt:BooleanTypeEnumeratedValue + a rdfs:Class, sh:NodeShape ; + dcterms:description "Specifies how a boolean value is expressed" ; + rdfs:isDefinedBy ; + rdfs:label "boolean value" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ByteEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description "This class contains the various ways that information may be encoded into bytes." ; + rdfs:isDefinedBy ; + rdfs:label "Byte Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:CardinalityType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + In mathematics, the cardinality of a set is a measure of the number of elements of the set. + For example, the set $A = {2, 4, 6}$ contains 3 elements, and therefore $A$ has a cardinality of 3. + There are two approaches to cardinality: one which compares sets directly using bijections and injections, + and another which uses cardinal numbers. + """^^qudt:LatexString ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cardinal_number"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cardinality"^^xsd:anyURI ; + qudt:plainTextDescription "In mathematics, the cardinality of a set is a measure of the number of elements of the set. For example, the set 'A = {2, 4, 6}' contains 3 elements, and therefore 'A' has a cardinality of 3. There are two approaches to cardinality – one which compares sets directly using bijections and injections, and another which uses cardinal numbers." ; + rdfs:isDefinedBy ; + rdfs:label "Cardinality Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:in ( qudt:CT_COUNTABLY-INFINITE qudt:CT_UNCOUNTABLE qudt:CT_FINITE ) ; + sh:property qudt:CardinalityType-literal ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:CT_COUNTABLY-INFINITE qudt:CT_FINITE qudt:CT_UNCOUNTABLE ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:CartesianCoordinates + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A set of variables which fix a geometric object. + If the coordinates are distances measured along perpendicular axes, they are known as Cartesian coordinates. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian Coordinate Type" ; + rdfs:subClassOf qudt:Coordinates . + +qudt:CharEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

The class of all character encoding schemes. + Each defines a rule or algorithm for encoding character data as a sequence of bits or bytes. +

"""^^rdf:HTML ; + dcterms:description "The class of all character encoding schemes, each of which defines a rule or algorithm for encoding character data as a sequence of bits or bytes." ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding Type" ; + rdfs:subClassOf qudt:Encoding ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:CharEncoding ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:CharacterType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Character Type is a data type that defines the type and encoding of single characters. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Character Type" ; + rdfs:subClassOf qudt:OrdinalType . + +qudt:ColorCue + a rdfs:Class, sh:NodeShape ; + rdfs:comment """ +

A visual cue that uses color to distinguish it from other cues. + Each color cue has exactly one corresponding coordinate point in the RGB space. +

"""^^rdf:HTML ; + rdfs:label "Color Cue" ; + rdfs:subClassOf qudt:VisualCue ; + sh:property qudt:ColorCue-rgbCode . + +qudt:CompositeDataStructure + a rdfs:Class, sh:NodeShape ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + rdfs:comment """ +

A Composite Data Structure, also referred to as Data Record is a datatype that aggregates element of possibly different types. + The aggregated items are called fields or members and are usually identified or indexed by field labels. +

"""^^rdf:HTML ; + rdfs:label "Composite Data Structure" ; + rdfs:subClassOf qudt:CompositeDatatype ; + sh:property qudt:CompositeDataStructure-dataElement . + +qudt:CompositeDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Composite Datatype is a datatype that is constructed from basic primitive types and other composite types. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Composite Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype ; + sh:property qudt:CompositeDatatype-alignment ; + sh:property qudt:CompositeDatatype-padding . + +qudt:CompositeTable + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Table Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Composite Table Type" ; + rdfs:subClassOf qudt:Table . + +qudt:CompositionFunction + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Composition function" ; + rdfs:subClassOf qudt:Function . + +qudt:CompositionTreeType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Composition Tree Type" ; + rdfs:subClassOf qudt:TreeType ; + sh:property qudt:CompositionTreeType-compositionFunction . + +qudt:CoordinateCenterType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An enumeration of coordinate centers for coordinate systems, such as: + "Earth centered", "Mars centered", "Moon centered", "Sun centered", and "Vehicle centered". +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate Center Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf qudt:NominalScale ; + sh:in ( qudt:CCT_MarsCentered qudt:CCT_EarthCentered qudt:CCT_MoonCentered + qudt:CCT_VehicleCentered qudt:CCT_SunCentered ) ; + skos:prefLabel "Coordinate center type" . + +qudt:CoordinateMember + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Coordinate Member is a data type that defines the properties of a coordinate in a coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate Member Type" ; + rdfs:subClassOf qudt:TupleMember ; + rdfs:subClassOf qudt:TupleMemberType . + +qudt:CoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Coordinate System is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. + A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems. +

+

In geometry, a coordinate system is a system which uses one or more numbers, or coordinates, + to uniquely determine the position of a point or other geometric element on a manifold such as Euclidean space. + The order of the coordinates is significant. + They are sometimes identified by their position in an ordered tuple and sometimes by a letter, as in 'the x-coordinate'. +

+

In elementary mathematics the coordinates are taken to be real numbers, but may be complex numbers or elements of a more abstract system such as a commutative ring. + The use of a coordinate system allows problems in geometry to be translated into problems about numbers and vice versa; this is the basis of analytic geometry. +

+

In astronomy, a celestial coordinate system is a system for specifying positions of celestial objects: satellites, planets, stars, galaxies, and so on. + Coordinate systems can specify a position in 3-dimensional space, or merely the direction of the object on the celestial sphere, if its distance is not known or not important. +

+

The coordinate systems are implemented in either spherical coordinates or rectangular coordinates. + Spherical coordinates, projected on the celestial sphere, are analogous to the geographic coordinate system used on the surface of the Earth. + These differ in their choice of fundamental plane, which divides the celestial sphere into two equal hemispheres along a great circle. +

+

Rectangular coordinates, in appropriate units, are simply the cartesian equivalent of the spherical coordinates, with the same fundamental (x,y) plane and primary (x-axis) direction. + Each coordinate system is named for its choice of fundamental plane. +

"""^^rdf:HTML ; + qudt:dbpediaMatch ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate system" ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:seeAlso ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf skos:Concept ; + sh:property qudt:CoordinateSystem-abbreviation ; + sh:property qudt:CoordinateSystem-acronym ; + sh:property qudt:CoordinateSystem-coordinateCenter ; + sh:property qudt:CoordinateSystem-referenceFrame . + +qudt:CoordinateSystemType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Coordinate System is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. + A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems. +

+

The primary attributes of any coordinate system are the coordinate frame or orientation of the axes of the coordinate system and the coordinate center or origin of the coordinate system. + The coordinate center is the easier of the two attributes to define and in trajectory-related coordinate systems is often taken to be the center of mass of natural solar system bodies such as the Earth, the Moon, or Mars. + Precise definition of the coordinate frame, however, usually takes much more effort. + As a result, the primary purpose is to provide a detailed description of a number of different coordinate frames commonly used in mission analysis. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinate System Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf qudt:TupleType ; + sh:property qudt:CoordinateSystemType-originDefinition ; + sh:property qudt:Coordinates-elementType . + +qudt:Coordinates + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A coordinate system is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. + A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems. +

+

The primary attributes of any coordinate system are the coordinate frame or orientation of the axes of the coordinate system and the coordinate center or origin of the coordinate system. + The coordinate center is the easier of the two attributes to define and in trajectory-related coordinate systems is often taken to be the center of mass of natural solar system bodies such as the Earth, the Moon, or Mars. + Precise definition of the coordinate frame, however, usually takes much more effort. + As a result, the primary purpose is to provide a detailed description of a number of different coordinate frames commonly used in mission analysis. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Coordinates" ; + rdfs:subClassOf qudt:Tuple ; + sh:property qudt:Coordinates-elementType . + +qudt:Coordinates-2D + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 2D coordinate system is a system for assigning a two-tuple of numbers or scalars to each point in an 2-dimensional space. + A corresponding 2D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 2D coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "2D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinates ; + rdfs:subClassOf qudt:Two-Tuple . + +qudt:Coordinates-2D-DoublePrecision + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 2D coordinates in double floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + qudt:elementTypeCount 2 ; + rdfs:isDefinedBy ; + rdfs:label "Coordinates-2D-Double precision" ; + rdfs:subClassOf qudt:Coordinates-2D ; + sh:property qudt:Coordinates-2D-DoublePrecision-double_X ; + sh:property qudt:Coordinates-2D-DoublePrecision-double_Y . + +qudt:Coordinates-2D-SinglePrecision + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 2D coordinates in single floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + qudt:elementTypeCount 2 ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian Coordinates 2D Single Precision" ; + rdfs:subClassOf qudt:Coordinates-2D ; + sh:property qudt:Coordinates-2D-DoublePrecision-double_X ; + sh:property qudt:Coordinates-2D-DoublePrecision-double_Y . + +qudt:Coordinates-3D + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space. + A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinates ; + rdfs:subClassOf qudt:Three-Tuple . + +qudt:Coordinates-3D-DoublePrecision + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 3D coordinates in double floating point precision for locating a point in physical space. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinates (Double Precision)" ; + rdfs:subClassOf qudt:Coordinates-3D ; + sh:property qudt:Coordinates-3D-DoublePrecision-double_X ; + sh:property qudt:Coordinates-3D-DoublePrecision-double_Y ; + sh:property qudt:Coordinates-3D-DoublePrecision-double_Z . + +qudt:Coordinates-3D-SinglePrecision + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 3D coordinates in single floating point precision for locating a point in physical space. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "3D Coordinates (Single Precision)" ; + rdfs:subClassOf qudt:Coordinates-3D ; + sh:property qudt:Coordinates-3D-SinglePrecision-float_X ; + sh:property qudt:Coordinates-3D-SinglePrecision-float_Y ; + sh:property qudt:Coordinates-3D-SinglePrecision-float_Z . + +qudt:Coordinates-3D-Type + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space. + A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system. +

"""^^rdf:HTML ; + rdfs:label "3D Coordinate Type" ; + rdfs:subClassOf qudt:CartesianCoordinatesType ; + rdfs:subClassOf qudt:ThreeTupleType . + +qudt:DataEncoding + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

Data Encoding expresses the properties that specify how data is represented at the bit and byte level. + These properties are applicable to describing raw data. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Data Encoding" ; + rdfs:subClassOf qudt:Aspect ; + sh:property qudt:DataEncoding-bitOrder ; + sh:property qudt:DataEncoding-byteOrder ; + sh:property qudt:DataEncoding-encoding . + +qudt:DataSetElement + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A field is a tuple that carries a name, a type and optionally other properties that characterize a member element of a composite data structure. + """ ; + rdfs:label "QUDT DataSet Element" ; + rdfs:subClassOf qudt:DataItem ; + rdfs:subClassOf qudt:Tuple ; + sh:property qudt:DataSetElement-elementLabel ; + sh:property qudt:DataSetElement-optional ; + sh:property qudt:DataSetElement-quantityKind . + +qudt:Datatype + a rdfs:Class, sh:NodeShape ; + rdfs:subClassOf rdfs:Resource ; + sh:property qudt:Datatype-ansiSQLName ; + sh:property qudt:Datatype-basis ; + sh:property qudt:Datatype-bounded ; + sh:property qudt:Datatype-cName ; + sh:property qudt:Datatype-cardinality ; + sh:property qudt:Datatype-id ; + sh:property qudt:Datatype-javaName ; + sh:property qudt:Datatype-jsName ; + sh:property qudt:Datatype-matlabName ; + sh:property qudt:Datatype-microsoftSQLServerName ; + sh:property qudt:Datatype-mySQLName ; + sh:property qudt:Datatype-odbcName ; + sh:property qudt:Datatype-oleDBName ; + sh:property qudt:Datatype-oracleSQLName ; + sh:property qudt:Datatype-orderedType ; + sh:property qudt:Datatype-protocolBuffersName ; + sh:property qudt:Datatype-pythonName ; + sh:property qudt:Datatype-vbName ; + vaem:isElaboratedIn . + +qudt:DateStringType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Date String Types are scalar data types that define the properties of strings that represent calendar dates." ; + rdfs:isDefinedBy ; + rdfs:label "Date String Type" ; + rdfs:subClassOf qudt:DateTimeStringType . + +qudt:DateTimeStringEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Date Time encodings are logical encodings for expressing date/time quantities as strings by applying unambiguous formatting and parsing rules. + """ ; + dcterms:description "Date Time encodings are logical encodings for expressing date/time quantities as strings by applying unambiguous formatting and parsing rules." ; + rdfs:isDefinedBy ; + rdfs:label "Date Time String Encoding Type" ; + rdfs:subClassOf qudt:StringEncodingType ; + sh:property qudt:DateTimeStringEncodingType-allowedPattern ; + sh:property [ + sh:path qudt:allowedPattern ; + sh:qualifiedMinCount 1 ; + sh:qualifiedValueShape [ + sh:datatype xsd:string ; + ] ; + ] . + +qudt:DateTimeStringType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A class of data types for structures that represent temporal quantities. + For example, calendar dates, times, duration of time since a given epoch, etc. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Temporal Type" ; + rdfs:subClassOf qudt:StringType ; + sh:property qudt:DateTimeStringType-encoding . + +qudt:Dictionary + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Map\"." ; + rdfs:isDefinedBy ; + rdfs:label "Dictionary Type" ; + rdfs:subClassOf qudt:Map . + +qudt:DimensionalDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Dimensional Data Type is a data type that specifies a physical quantity or unit of measure. + Information about the physical dimensions of the quantities and units is embedded in their types. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Dimensional Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:DiscreteState + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Discrete State is the parent class for enumerated values that express a 'State' or 'Condition'. + Examples are 'on' and 'off for a switch, 'open' and 'closed' for a valve, and 'wet' and 'dry'. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Discrete State" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:DiscreteState-inverted . + +qudt:DoublePrecisionType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A double precision data type specifies how a numeric value, such as an integer or real number, is stored in memory. + Typically this occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes, and so double precision data value on a 32-bit machine architecture occupies eight bytes of memory. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Double Precision Type" ; + rdfs:subClassOf qudt:NumericType ; + sh:disjoint qudt:SinglePrecisionType . + +qudt:EarthCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A "Trajectory Coordinate System" for all earth-centered coordinates, such as: +

+
    +
  • Earth mean equator and prime meridian coordinate system";
  • +
  • Earth true equator and prime meridian of epoch coordinate system";
  • +
  • International celestial reference system";
  • +
  • International terrestrial reference system";
  • +
  • Sun centered international celestial reference system";
  • +
  • Vehicle centered international celestial reference system".
  • +
"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Earth Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + sh:property qudt:EarthCoordinateSystem-coordinateCenter . + +qudt:Encoding + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An encoding is a rule or algorithm that is used to convert data from a native, or unspecified form into a specific form that satisfies the encoding rules. + Examples of encodings include character encodings, such as UTF-8. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Encoding" ; + rdfs:subClassOf skos:Concept ; + sh:property qudt:Encoding-bits ; + sh:property qudt:Encoding-bytes . + +qudt:EndianType + a rdfs:Class, sh:NodeShape ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Endianness"^^xsd:anyURI ; + qudt:plainTextDescription "In computing, endianness is the ordering used to represent some kind of data as a sequence of smaller units. Typical cases are the order in which integer values are stored as bytes in computer memory (relative to a given memory addressing scheme) and the transmission order over a network or other medium. When specifically talking about bytes, endianness is also referred to simply as byte order. Most computer processors simply store integers as sequences of bytes, so that, conceptually, the encoded value can be obtained by simple concatenation. For an 'n-byte' integer value this allows 'n!' (n factorial) possible representations (one for each byte permutation). The two most common of them are: increasing numeric significance with increasing memory addresses, known as little-endian, and its opposite, called big-endian." ; + rdfs:isDefinedBy ; + rdfs:label "Endian Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:LittleEndian qudt:BigEndian ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:EngineeringValueTupleMember + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A sub-type of 'Tuple Member Type'. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Engineering Value Tuple Member" ; + rdfs:subClassOf qudt:TupleMember ; + rdfs:subClassOf qudt:TupleMemberType ; + sh:disjoint qudt:RawValueTupleMember ; + sh:disjoint qudt:RawValueTupleMemberType ; + sh:property qudt:EngineeringValueTupleMember-elementType . + +qudt:Enumeration + a rdfs:Class, sh:NodeShape ; + rdfs:label "QUDT Enumeration" ; + rdfs:subClassOf dtype:Enumeration ; + rdfs:subClassOf qudt:StructuredDatatype ; + sh:property qudt:Enumeration-bits ; + sh:property qudt:Enumeration-defaultValue ; + sh:property qudt:Enumeration-encoding ; + sh:property qudt:Enumeration-value ; + vaem:isElaboratedIn . + +qudt:EnumerationScale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A sub-type of 'DTYPE Enumeration'. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Enumeration scale" ; + rdfs:subClassOf dtype:Enumeration ; + rdfs:subClassOf qudt:Scale ; + sh:class dtype:Enumeration . + +qudt:FieldType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A sub-type of 'Composite Data Type'. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Field Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + sh:property qudt:FieldType-elementName ; + sh:property qudt:FieldType-elementType ; + sh:property qudt:FieldType-fieldLabel ; + sh:property qudt:FieldType-fieldType . + +qudt:FileFormat + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A sub-type of 'Enumerated Value'. + """ ; + rdfs:isDefinedBy ; + rdfs:label "File format" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:FixedIntervalTimeSeriesArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Fixed Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. + For example, data that has been sampled over uniformly spaced time intervals. + A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Fixed Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArray . + +qudt:FixedIntervalTimeSeriesArrayType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Fixed Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data. + For example, data that has been sampled over uniformly spaced time intervals. + A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. +

"""^^rdf:HTML ; + rdfs:label "Fixed Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArrayType . + +qudt:FloatingPointEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A type for specifying an "Encoding" with the following instance(s): + "Double Precision Encoding", and "Single Precision Real Encoding". +

"""^^rdf:HTML ; + dcterms:description "A \"Encoding\" with the following instance(s): \"Double Precision Encoding\", \"Single Precision Real Encoding\"." ; + rdfs:isDefinedBy ; + rdfs:label "Floating Point Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:FrameType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Frame Type specifies the intertial type of a coordinate frame as either inertial, rotating, or non-rotating. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Frame Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:in ( qudt:FT_ROTATING qudt:FT_NON-ROTATING qudt:FT_INERTIAL ) . + +qudt:Function + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Function" ; + rdfs:subClassOf qudt:Concept . + +qudt:FunctionDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A function data type defines the input and output data type for a function or method. + The data type includes at least the function name and the number of its parameters. + In some programming languages, it may also specify the function's return type or the types of its arguments. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Function Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype ; + sh:property qudt:FunctionDatatype-argType ; + sh:property qudt:FunctionDatatype-functionArity ; + sh:property qudt:FunctionDatatype-returnType . + +qudt:Graph + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Graph is an instance of a kind of abstract data type, that consists of a set of nodes (also called vertices) and a set of edges that establish relationships (connections) between the nodes. + A Graph Type is a data type that defines the properties of data structures that represent graphs and their members (nodes and edges). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Graph Type" ; + rdfs:subClassOf qudt:DataItem . + +qudt:GroundCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Aerospace coordinate system'." ; + rdfs:isDefinedBy ; + rdfs:label "Ground coordinate system" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:HeterogenousArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Array> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. + Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'. +

+

The key considerations for an Array are: +

+
    +
  1. Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;
  2. +
  3. Index-Based Access: Elements can be accessed, updated, or modified using their index;
  4. +
  5. Heterogenous Elements: all elements in the array may be of different data types;
  6. +
  7. Contiguous Memory Allocation: + the elements are stored in consecutive memory locations, which allows efficient access using the index.
  8. +
+

An Array is represented as ordered entries of values arranged according to its dimensionality. + The number of dimensions is specified in the attribute 'dimensionality'. +

+

The property 'qudt:datatype' refers to a list if the datatypes of the elements. +

+

An heterogenous array can be multi-dimensional. + Multiple indices are used but they are treated as extensions of the same structure. + For example: for a 2D array arr[2][3], indices refer to the row and column positions. + A 2D array is still represented as a list, where each member of the list is a list. +

+

Higher dimensional arrays can be represented as nested lists. + For each dimension a new nested list is defined. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Heterogenous Array" ; + rdfs:subClassOf qudt:Array ; + sh:property qudt:HeterogenousArray-datatype . + +qudt:HexBinaryType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A string composed of hex characters." ; + rdfs:isDefinedBy ; + rdfs:label "Hexidecimal Binary Type" ; + rdfs:subClassOf qudt:TextStringType ; + sh:property qudt:HexBinaryType-length ; + sh:property qudt:HexBinaryType-maxLength ; + sh:property qudt:HexBinaryType-minLength ; + sh:property qudt:HexBinaryType-pattern . + +qudt:HomogeneousArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Array> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. + Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'. +

+

The key considerations for an Array are: +

+
    +
  1. Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;
  2. +
  3. Index-Based Access: Elements can be accessed, updated, or modified using their index;
  4. +
  5. Homogeneous Elements: all elements in an array must be of the same datatype;
  6. +
  7. Contiguous Memory Allocation: The elements are stored in consecutive memory locations, which allows efficient access using the index.
  8. +
+

An Array is represented as ordered entries of values arranged according to its dimensionality. + The number of dimensions is specified in the attribute 'dimensionality'. +

+

The property 'qudt:datatype' refers to the datatype of the elements. +

+

An array can be multi-dimensional. + Multiple indices are used but they are treated as extensions of the same structure. + For Example: for a 2D array arr[2][3], indices refer to the row and column positions. + A 2D array is still represented as a list, where each member of the list is a list. +

+

Higher dimensional arrays can be represented as nested lists. + For each dimension a new nested list is defined. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Homogeneous Array" ; + rdfs:subClassOf qudt:Array . + +qudt:IconicCue + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Iconic enumeration literal" ; + rdfs:subClassOf qudt:ModalCue ; + sh:disjoint qudt:AuralCue ; + sh:disjoint qudt:KinestheticCue ; + sh:disjoint qudt:VisualCue ; + sh:property qudt:IconicCue-image . + +qudt:InertialCoordinateFrame + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Coordinate Frame\"." ; + rdfs:isDefinedBy ; + rdfs:label "Inertial Coordinate Frame" ; + rdfs:seeAlso qudt:NonRotatingInertialFrame ; + rdfs:subClassOf qudt:InertialReferenceFrame ; + sh:property qudt:InertialCoordinateFrame-frameType . + +qudt:InertialReferenceFrame + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A sub-type of 'Reference Frame'. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Inertial reference frame" ; + rdfs:subClassOf qudt:ReferenceFrame . + +qudt:IntegerDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description "An Integer Type is a data type that specifies how integer numbers are represented and stored in machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Integer Datatype" ; + rdfs:subClassOf qudt:NumericType ; + rdfs:subClassOf qudt:OrdinalType . + +qudt:IntegerEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description "The encoding scheme for integer types" ; + rdfs:isDefinedBy ; + rdfs:label "Integer Encoding" ; + rdfs:subClassOf qudt:Encoding ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:LongUnsignedIntegerEncoding qudt:ShortUnsignedIntegerEncoding + qudt:ShortUnsignedIntegerEncoding qudt:SignedIntegerEncoding qudt:UnsignedIntegerEncoding ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:IntegerListShape + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:subClassOf rdf:List ; + sh:property [ + sh:datatype xsd:integer ; + sh:path rdf:first ; + ] ; + sh:property [ + sh:or ( [ + sh:node ( ) ; + ] [ + sh:node qudt:IntegerListShape ; + ] ) ; + sh:path rdf:rest ; + ] . + +qudt:InterpolatedTable + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Table Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Interpolated Table Type" ; + rdfs:subClassOf qudt:Table ; + rdfs:subClassOf qudt:TableType . + +qudt:KinestheticCue + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Kinesthetic Cue" ; + rdfs:subClassOf qudt:ModalCue ; + sh:property qudt:KinestheticCue-code . + +qudt:LargeObject + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). + They often are used to allow efficient, random, piece-wise access to the data. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Large object" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:LargeObjectType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). They often are used to allow efficient, random, piece-wise access to the data." ; + rdfs:isDefinedBy ; + rdfs:label "Large object" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:LimitType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Limit type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:List + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'AbstractDataItem'." ; + rdfs:isDefinedBy ; + rdfs:label "List" ; + rdfs:subClassOf qudt:DataItem ; + sh:property qudt:DatatypePropertyShape ; + sh:property qudt:MaybeQuantityPropertyShape ; + sh:property qudt:MaybeUnitPropertyShape . + +qudt:LocalCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Trajectory Coordinate System\" with the following instance(s): \"Local vertical curvilinear coordinate system\", \"Local vertical local horizontal coordinate system\", \"Vehicle centered local vertical curvilinear coordinate system\"." ; + rdfs:isDefinedBy ; + rdfs:label "Local Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem . + +qudt:LongIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Long Integer is an integer that can be represented in four octets (32 bits) of machine memory. Long integers may be signed or unsigned." ; + rdfs:isDefinedBy ; + rdfs:label "Long Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype . + +qudt:LunarCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "Two slightly different coordinate frames are commonly used to define the orientation of the axes of a lunar body-fixed coordinate system: a mean Earth/rotation frame and a principal axis coordinate frame. The mean Earth/rotation frame (sometimes called the \"Mean Earth/polar axis\" frame) is a lunar body-fixed coordinate frame with the X-axis aligned with the mean direction from the Moon to the Earth and the Z-axis aligned with the mean axis of rotation of the Moon. The principal axis frame is a lunar body-fixed coordinate frame aligned with the principal axes of the Moon. Due to the fact that the Moon is synchronously rotating but is not exactly symmetric, the principal axes and the mean Earth/rotation axes of the Moon do not coincide." ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Coordinate System" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + sh:property qudt:LunarCoordinateSystem-coordinateCenter ; + sh:property qudt:LunarCoordinateSystem-realization ; + sh:property qudt:LunarCoordinateSystem-xAxisDefinition ; + sh:property qudt:LunarCoordinateSystem-yAxisDefinition ; + sh:property qudt:LunarCoordinateSystem-zAxisDefinition . + +qudt:MajorMinorType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Enumerated Value'." ; + rdfs:isDefinedBy ; + rdfs:label "Major minor type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:in ( qudt:Minor qudt:Major ) . + +qudt:Map + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Map Type is an abstract data type that defines the properties of map data structures. A Map (or Associative Array) is an abstract data structure composed of a collection of keys and a collection of values, where each key is associated with one value. The operation of finding the value associated with a key is called a lookup or indexing, and this is the most important operation supported by an associative array. The relationship between a key and its value is sometimes called a mapping or binding." ; + rdfs:isDefinedBy ; + rdfs:label "Map Type" ; + rdfs:seeAlso qudt:AssociativeArray ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:MarsCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Trajectory Coordinate System\" with the following instance(s): \"Mars mean equator and IAU-Node of epoch\", \"Mars mean equator and prime meridian body-fixed\"." ; + rdfs:isDefinedBy ; + rdfs:label "Mars Coordinate System Type" ; + rdfs:subClassOf qudt:TrajectoryCoordinateSystem ; + sh:property qudt:MarsCoordinateSystem-coordinateCenter . + +qudt:MathsFunctionType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'QUDT Concept'." ; + rdfs:isDefinedBy ; + rdfs:label "Maths Function Type" ; + rdfs:subClassOf qudt:Concept . + +qudt:Matrix + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Matrix is a data type that specifies the properties of an N-dimensional data structure. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Matrix" ; + rdfs:subClassOf qudt:Array . + +qudt:MemoryOrderType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Enumerated Value'." ; + rdfs:isDefinedBy ; + rdfs:label "Memory order type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ModalCue + a rdfs:Class, sh:NodeShape ; + rdfs:label "Modal Cue" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:ModalCue-duration . + +qudt:ModalEnumeration + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'QUDT Enumeration'." ; + rdfs:isDefinedBy ; + rdfs:label "Modal Enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + sh:property qudt:ModalEnumeration-defaultValue . + +qudt:MultiDimensionalArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Multi-Dimensional Array is an extension of a standard one-dimensional array, + where elements are organized in a grid-like structure across two or more dimensions. + It is a collection of elements arranged in a tabular or multi-dimensional structure for representing complex datasets, + such as matrices, tensors, or higher-dimensional data. +

+

The elements of a multi-dimensional array are N-tuples, where 'N' corresponds to the dimensionality of the array. + Each element is specified using the property 'qudt:element'. +

+

Ordinary or one-dimensional arrays are indexed by a single integer. + For a multi-dimensional array, the index into the array uses an ordered list of integers, such as in 'a[3,1,5]'. + The length of the list of integers used to index into the multi-dimensional array is always the same. + This is referred to as the array's dimensionality. + The bounds on each of these are called the array's dimensions. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Multi-Dimensional Array Type" ; + rdfs:subClassOf qudt:Array . + +qudt:MultiDimensionalDataFormat + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Data formats for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner, + for example HDF, CDF and netCDF. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Multi dimensional data format" ; + rdfs:subClassOf qudt:CompositeDatatype ; + sh:property qudt:MultiDimensionalDataFormat-descriptor . + +qudt:MultiModalEnumeration + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'QUDT Enumeration'." ; + rdfs:isDefinedBy ; + rdfs:label "Multi modal enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + sh:property qudt:MultiModalEnumeration-auralCueEnumeration ; + sh:property qudt:MultiModalEnumeration-iconicCueEnumeration ; + sh:property qudt:MultiModalEnumeration-kinestheticCueEnumeration ; + sh:property qudt:MultiModalEnumeration-modalCueEnumeration ; + sh:property qudt:MultiModalEnumeration-visualCueEnumeration . + +qudt:MultiModalType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Enumerated Value'." ; + rdfs:isDefinedBy ; + rdfs:label "Multi Modal Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:MultiModalType-auralCue ; + sh:property qudt:MultiModalType-iconicCue ; + sh:property qudt:MultiModalType-kinestheticCue ; + sh:property qudt:MultiModalType-modalCue ; + sh:property qudt:MultiModalType-visualCue . + +qudt:MultiSet + a rdfs:Class, sh:NodeShape ; + dcterms:description "A bag is a set in which elements may be repeated." ; + rdfs:isDefinedBy ; + rdfs:label "Bag" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:N-Tuple + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A tuple containing n objects is known as an "n-tuple". + For example the 4-tuple (or "quadruple"), with components of respective types PERSON, DAY, MONTH and YEAR. + This could be used to record that a certain person was born on a certain day of a certain month of a certain year. + """ ; + rdfs:isDefinedBy ; + rdfs:label "N-Tuple Type" ; + rdfs:subClassOf qudt:Tuple ; + sh:property qudt:N-Tuple-elementType . + +qudt:N-TupleType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A tuple containing n objects is known as an "n-tuple". + For example the 4-tuple (or "quadruple"), with components of respective types PERSON, DAY, MONTH and YEAR. + This could be used to record that a certain person was born on a certain day of a certain month of a certain year. + """ ; + rdfs:isDefinedBy ; + rdfs:label "N-Tuple Type" ; + rdfs:subClassOf qudt:TupleType ; + sh:property qudt:N-Tuple-elementType . + +qudt:NonRotatingInertialFrame + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

The non-rotating (or "inertial") coordinate frames are defined by taking a "snapshot" of the orientation of a particular set of right-handed, orthogonal axes at a specific epoch or time. + In other words, the non-rotating coordinate frame, however it is defined, is frozen or fixed at a specific time - for all time. + These non-rotating coordinate frames are referred to as "of Epoch" coordinate frames. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Non Rotating Coordinate Frame" ; + rdfs:seeAlso qudt:InertialCoordinateFrame ; + rdfs:subClassOf qudt:InertialReferenceFrame ; + sh:property qudt:NonRotatingInertialFrame-frameType . + +qudt:NumericType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Numeric data types are data types whose values denote quantities as defined by a mathematical number system." ; + rdfs:isDefinedBy ; + rdfs:label "Numeric Type" ; + rdfs:subClassOf qudt:ScalarDatatype ; + sh:property qudt:NumericType-accuracy ; + sh:property qudt:NumericType-signedness . + +qudt:OctetType + a rdfs:Class, sh:NodeShape ; + dcterms:description "An 8 bit unsigned integer" ; + rdfs:isDefinedBy ; + rdfs:label "Octet Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType . + +qudt:OffOnStateTypeEnumeration + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A discrete state enumeration whose values are 'off' and 'on'. + The 'off' value is encoded as a zero (0) and the 'on' value as a one (1). + """ ; + rdfs:isDefinedBy ; + rdfs:subClassOf qudt:Enumeration . + +qudt:OnOffStateType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "On off state type" ; + rdfs:subClassOf qudt:DiscreteState . + +qudt:OnOffStateTypeEnumeration + a rdfs:Class, sh:NodeShape ; + qudt:inverted true ; + rdfs:comment """ + A discrete state enumeration whose values are 'off' and 'on'. + The 'on' value is encoded as a zero (0) and the 'off' value as a one (1). + """ ; + rdfs:isDefinedBy ; + rdfs:subClassOf qudt:Enumeration . + +qudt:OpenCloseStateType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Open Close State Type" ; + rdfs:subClassOf qudt:DiscreteState . + +qudt:OrderedCollectionKind + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Ordered Collection Kind is an abstract data type that defines the properties of collection data structures whose members can be linearly ordered. + An ordered collection is a collection together with an ordering relation (such as greater than) that linearly orders the collection elements. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordered Collection Kind" ; + rdfs:subClassOf qudt:CollectionKind ; + sh:property qudt:OrderedCollectionKind-orderingRelation . + +qudt:OrderedTree + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An "Ordered Tree Type" is a data type that defines the properties of data structures that represent ordered trees. + An ordered tree is a tree where the children of every node are ordered, that is, there is a first child, second child, third child, etc. + Typically a type specification for an ordered tree will include the comparison operator (such as lt or gt) that is used to order the nodes. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordered Tree Type" ; + rdfs:subClassOf qudt:OrderedCollectionKind ; + rdfs:subClassOf qudt:Tree . + +qudt:OrderedType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Describes how a data or information structure is ordered." ; + rdfs:isDefinedBy ; + rdfs:label "Ordered type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:OrderedType-literal ; + sh:property [ + a sh:PropertyShape ; + sh:in ( qudt:Unordered qudt:PartiallyOrdered qudt:TotallyOrdered ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:OrdinalType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An ordinal data type is a data type that specifies the properties of values that can easily be put in a one to one correspondence with a subset of the natural numbers. + Examples include boolean, character, and integer data types. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordinal Data Type" ; + rdfs:subClassOf qudt:ScalarDatatype . + +qudt:PaddingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

This describes how unused bits of a field are filled. + Unused bits could be set to one or zero. + A third option is "don't care". +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Padding type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:in ( qudt:PadWithOnes qudt:PadWithZeros qudt:PadWithAny ) . + +qudt:ParameterModifiabilityType + a rdfs:Class, sh:NodeShape ; + rdfs:comment "An enumeration of literals that signify whether a parameter is modifiable and if so, by whom." ; + rdfs:label "Parameter modifiability type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:PartialArray + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A partial array is an Array with two attributes that define the starting and ending indices of the elements that are provided. + """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Partial Array" ; + rdfs:subClassOf qudt:Array . + +qudt:Percentage + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Scalar Datatype for expressing a dimensionless ratio." ; + rdfs:isDefinedBy ; + rdfs:label "Percentage Type" ; + rdfs:subClassOf qudt:NumericType . + +qudt:PhysicalAddress + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Structured Datatype\"." ; + dcterms:description "A physical address is a pointer to a memory location." ; + rdfs:isDefinedBy ; + rdfs:label "Physical Address Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:PolarCoordinates + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A set of variables which fix a geometric object. + If the coordinates of a point P are determined by the distance from P to the origin and the angle subtended by the radial vector at P and a fixed axis, they are known as polar coordinates. + Typically, the angle is measured with respect to the x-axis." ; +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Polar Coordinate System Type" ; + rdfs:subClassOf qudt:Coordinates . + +qudt:PolarCoordinatesType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A set of variables which fix a geometric object. + If the coordinates of a point P are determined by the distance from P to the origin and the angle subtended by the radial vector at P and a fixed axis, they are known as polar coordinates. + Typically, the angle is measured with respect to the x-axis." ; +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Polar Coordinate System Type" ; + rdfs:subClassOf qudt:CoordinateSystemType . + +qudt:Polarity + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A "Tagged Enumeration" with the following instance(s): "negative", "positive". + """ ; + rdfs:isDefinedBy ; + rdfs:label "Polarity" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:PositiveBigIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Positive Integers are integers that are either non-zero and non-negative." ; + rdfs:isDefinedBy ; + rdfs:label "Positive Big Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:UnsignedType ; + sh:disjoint qudt:SignedIntegerType . + +qudt:PositiveIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Positive Integers are integers that are either non-zero and non-negative." ; + rdfs:isDefinedBy ; + rdfs:label "Positive Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:UnsignedType ; + sh:disjoint qudt:SignedIntegerType . + +qudt:PriorityQueue + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Priority Queue is a specialization of a queue where additionally each element has a priority associated with it. + In a priority queue, an element with high priority is served before an element with low priority. + If two elements have the same priority, they are served according to their order in the queue. +

+ """^^rdf:HTML ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Priority Queue" ; + rdfs:subClassOf qudt:Queue . + +qudt:Quantifiable + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + sh:property qudt:Quantifiable-dataEncoding ; + vaem:isElaboratedIn . + +qudt:QuantityKindList + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Quantity Kind List is a list of qudt:QuantityKind. + They are used, for instance, to specify the quantity kind in a Mass Properties Array. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity kind List" . + +qudt:QuantityKindsListShape + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:subClassOf rdf:List ; + sh:property [ + sh:class qudt:QuantityKind ; + sh:path rdf:first ; + ] ; + sh:property [ + sh:or ( [ + sh:node ( ) ; + ] [ + sh:node qudt:QuantityKindsListShape ; + ] ) ; + sh:path rdf:rest ; + ] . + +qudt:QuantityValueType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Dimensional Data Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Quantity value type" ; + rdfs:subClassOf qudt:DimensionalDatatype ; + sh:property qudt:QuantityValueType-basis ; + sh:property qudt:QuantityValueType-elementType ; + sh:property qudt:QuantityValueType-elementUnit . + +qudt:RawValueTupleMember + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Tuple Member Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Raw value tuple member" ; + rdfs:subClassOf qudt:TupleMember ; + sh:property qudt:RawValueTupleMember-elementType . + +qudt:RawValueTupleMemberType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Raw value tuple member type" ; + rdfs:subClassOf qudt:TupleMemberType ; + sh:property qudt:RawValueTupleMember-elementType . + +qudt:RealDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A real number is represented as a factor, called the mantissa, multiplied by a power (the exponent) of a base. + Different bases yield different approximations to real numbers, and conversion between them is limited in accuracy. + Four floating-point types are defined in 'IEEE-754 Standard for Binary Floating-Point'. + These types are 'single', 'extended single', 'double', and 'extended double'. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Real Datatype" ; + rdfs:subClassOf qudt:NumericType ; + sh:property qudt:RealDatatype-base ; + sh:property qudt:RealDatatype-maxExponent ; + sh:property qudt:RealDatatype-maxMantissa ; + sh:property qudt:RealDatatype-minMantissa ; + sh:property qudt:RealDatatype-precision . + +qudt:RealDoublePrecisionType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A real double precision data type specifies how a real number, or an approximation of a real number is stored in memory. + Typically this occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes. + An example of a real double precision data type specification is the IEEE 754 standard for encoding binary or decimal floating point numbers in 8 bytes for storage on 32-bit machine architectures. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Real Double Precision Type" ; + rdfs:subClassOf qudt:DoublePrecisionType ; + rdfs:subClassOf qudt:RealDatatype . + +qudt:RealNumberType + a rdfs:Class, sh:NodeShape ; + rdfs:comment """ +

A Real Number Type is the class of data values that approximate real numbers in finite precision. + Often, such values are expressed in "mantissa, base, exponent" form. + Any rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. + Typically, b is chosen to be either 2 or 10, and then the values of m and e are determined given the choice of base. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Real number type" ; + rdfs:subClassOf qudt:RealDatatype . + +qudt:RealSinglePrecisionType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A real single precision data type specifies how a real number, + or an approximation of a real number is stored in memory that occupies one word in computer memory, + where the byte length of a word depends on machine address size of the computer processor. +

+

+ For example, on 32-bit machine architectures, a word is four bytes. + An example of a real single precision data type specification is the IEEE 754 standard for encoding binary + or decimal floating point numbers in 4 bytes for storage on 32-bit machine architectures. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Real Single Precision Type" ; + rdfs:subClassOf qudt:RealDatatype ; + rdfs:subClassOf qudt:SinglePrecisionType . + +qudt:Record + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Record Type is a type whose values are records, i.e. aggregates of several items of possibly different types. + The aggregated items are called fields or members and are usually identified or indexed by field labels. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Record Type" ; + rdfs:subClassOf qudt:CompositeDatatype . + +qudt:ReferenceDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A reference is an object containing information which refers to data stored elsewhere, as opposed to containing the data itself. + A reference data type is a data type that specifies how a reference is represented and stored in memory, + as well as the operations that can be performed on reference values. + The most common example of a reference data type is a pointer. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Reference Data Type" ; + rdfs:subClassOf qudt:StructuredDatatype . + +qudt:ReferenceFrame + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Reference Frame (or "frame of reference") in physics, may refer to a coordinate system or set of axes. +The frame serves as the datum to measure the position, orientation, and other properties of objects in it. +Reference frame may refer to an observational reference frame tied to the state of motion of an observer. +Reference frame may also refer to both an observational reference frame and an attached coordinate system as a unit. +

+"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Reference Frame" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:ReferenceFrame-comment ; + sh:property qudt:ReferenceFrame-description ; + sh:property qudt:ReferenceFrame-frameType ; + sh:property qudt:ReferenceFrame-informativeReference ; + sh:property qudt:ReferenceFrame-realization ; + sh:property qudt:ReferenceFrame-xAxisDefinition ; + sh:property qudt:ReferenceFrame-xCoordinateDefinition ; + sh:property qudt:ReferenceFrame-yAxisDefinition ; + sh:property qudt:ReferenceFrame-yCoordinateDefinition ; + sh:property qudt:ReferenceFrame-zAxisDefinition ; + sh:property qudt:ReferenceFrame-zCoordinateDefinition . + +qudt:RotatingReferenceFrame + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Reference Frame'." ; + rdfs:isDefinedBy ; + rdfs:label "Rotating reference frame" ; + rdfs:subClassOf qudt:ReferenceFrame . + +qudt:ScalarDatatype + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Scalar Datatype" ; + sh:property qudt:ScalarDatatype-bitOrder ; + sh:property qudt:ScalarDatatype-bits ; + sh:property qudt:ScalarDatatype-byteOrder ; + sh:property qudt:ScalarDatatype-bytes ; + sh:property qudt:ScalarDatatype-encoding ; + sh:property qudt:ScalarDatatype-length ; + sh:property qudt:ScalarDatatype-maxExclusive ; + sh:property qudt:ScalarDatatype-maxInclusive ; + sh:property qudt:ScalarDatatype-minExclusive ; + sh:property qudt:ScalarDatatype-minInclusive ; + sh:property qudt:ScalarDatatype-rdfsDatatype ; + vaem:isElaboratedIn . + +qudt:ScalarListShape + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:subClassOf rdf:List ; + sh:property [ + sh:or qudt:NumericTypeUnion ; + sh:path rdf:first ; + ] ; + sh:property [ + sh:or ( [ + sh:node ( ) ; + ] [ + sh:node qudt:ScalarListShape ; + ] ) ; + sh:path rdf:rest ; + ] . + +qudt:Sequence + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Sequence is an enumerated collection of objects in which repetitions are allowed. + Like a set, it contains members (also called elements, or terms). + The number of elements (possibly infinite) is called the length of the sequence. +

+

Unlike a set, order matters, and exactly the same elements can appear multiple times at different positions in the sequence. + Formally, a sequence can be defined as a function whose domain is either the set of the natural numbers (for infinite sequences) or the set of the first n natural numbers (for a sequence of finite length n). +

+

The position of an element in a sequence is its rank or index; it is the integer from which the element is the image. + It depends on the context or of a specific convention, if the first element has index 0 or 1. [Wikipedia] +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Sequence" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:Set + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Set is an abstract data type that defines the properties of sets. + A set is a collection (container) of certain values, without any particular order, and no repeated values. + It corresponds with a finite set in mathematics. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Set Type" ; + rdfs:subClassOf qudt:CollectionKind . + +qudt:ShortIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Short Integer is an integer that can be represented in two octets (16 bits) of machine memory. + Short integers may be signed or unsigned. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Short Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype . + +qudt:SignedBigIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Signed Big Integer is a signed integer that can be represented in eight octets (64 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Big Integer Type" ; + rdfs:subClassOf qudt:BigIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + sh:property qudt:SignedBigIntegerType-literal ; + sh:property qudt:SignedBigIntegerType-maxInclusive ; + sh:property qudt:SignedBigIntegerType-minInclusive . + +qudt:SignedIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Signed Integers are integers can take on both positive and negative values." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:SignedType . + +qudt:SignedLongIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Signed Long Integer is a signed integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Long Integer Type" ; + rdfs:subClassOf qudt:LongIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + sh:property qudt:SignedLongIntegerType-abbreviation ; + sh:property qudt:SignedLongIntegerType-maxInclusive ; + sh:property qudt:SignedLongIntegerType-minInclusive . + +qudt:SignedMediumIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Signed Medium Integers\" is an integer of 24 bits that can take on both positive and negative values." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Type" ; + rdfs:subClassOf qudt:SignedIntegerType . + +qudt:SignedShortIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Signed Short Integer is a signed integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Short Integer Type" ; + rdfs:subClassOf qudt:ShortIntegerType ; + rdfs:subClassOf qudt:SignedIntegerType ; + sh:property qudt:SignedShortIntegerType-abbreviation . + +qudt:SignedType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A signed type is a numeric type that distinguishes between positive and negative numbers using an encoding scheme, such as sign and magnitude, one's compliment, and two's compliment to represent negative numbers." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Type" ; + rdfs:subClassOf qudt:NumericType ; + sh:disjoint qudt:UnsignedType ; + sh:property qudt:SignedType-signedness . + +qudt:SignedVariableLengthIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Signed Variable Length Integer data type defines a data structure for representing signed integers that uses a variable number of bits depending on the magnitude of the integer. Typically, variable length integer data types are between one and 64 bits in length." ; + rdfs:isDefinedBy ; + rdfs:label "Signed Variable Length Integer Type" ; + rdfs:subClassOf qudt:SignedIntegerType ; + rdfs:subClassOf qudt:VariableLengthIntegerType . + +qudt:SignednessType + a owl:Class, rdfs:Class, sh:NodeShape ; + dcterms:description "Specifics whether a value should be signed or unsigned." ; + owl:oneOf ( qudt:SIGNED qudt:UNSIGNED ) ; + rdfs:isDefinedBy ; + rdfs:isDefinedBy ; + rdfs:label "Signedness type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property [ + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:in ( qudt:SIGNED qudt:UNSIGNED ) ; + sh:path [ + sh:inversePath rdf:type ; + ] ; + ] . + +qudt:SinglePrecisionType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A single precision data type specifies how a numeric value, such as an integer or real number, + is stored in memory that occupies one word in computer memory, + where the byte length of a word depends on machine address size of the computer processor. + For example, on 32-bit machine architectures, a word is four bytes. + A single precision data value on a 32-bit machine architecture occupies four bytes of memory. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Type" ; + rdfs:subClassOf qudt:NumericType . + +qudt:SplineCalibrator + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Map Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Spline calibrator" ; + rdfs:subClassOf qudt:Map . + +qudt:SplinePoint + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Tuple Type'." ; + rdfs:isDefinedBy ; + rdfs:label "Spline point" ; + rdfs:subClassOf qudt:Tuple . + +qudt:StateSpaceMatrix + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

In control engineering, a state space representation is a mathematical model of a physical system + as a set of input, output and state variables related by first-order differential equations. + To abstract from the number of inputs, outputs and states, the variables are expressed as vectors. + The differential and algebraic equations are written in matrix form (the last one can be done when the dynamical system is linear and time invariant). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "State Space Matrix Type" ; + rdfs:subClassOf qudt:Matrix . + +qudt:StateSpaceVector + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A state vector in general control systems describes the observed states of an object in state space. + For example in variables of the degrees of freedom for motion. + As data types, state vector types are used to specify the structure of state vectors, such as how the observed state is encoded. + """ ; + rdfs:isDefinedBy ; + rdfs:label "State Space Vector Type" ; + rdfs:subClassOf qudt:Vector ; + sh:property qudt:StateSpaceVector-coordinateSystem . + +qudt:StringEncodingType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

String Encoding Type is an "Encoding" with the following instance(s): + "UTF-16 String", "UTF-8 Encoding". +

+ """^^rdf:HTML ; + dcterms:description """ + An "Encoding" with the following instance(s): "qudt:UTF8-StringEncoding", qudt:UTF16-StringEncoding". + """ ; + rdfs:isDefinedBy ; + rdfs:label "String Encoding Type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:StringType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A String Datatype is a data type that specifies the properties of a list structure that holds characters. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "String Type" ; + rdfs:subClassOf qudt:ScalarDatatype ; + sh:property qudt:StringType-dimensionality ; + sh:property qudt:StringType-isByteString ; + sh:property qudt:StringType-maxLength ; + sh:property qudt:StringType-memberDatatype ; + sh:property qudt:StringType-typeMatrix . + +qudt:StringUTF16 + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

String UTF-16 Type is a string data type that specifies the properties of string data structures which encode strings using the UTF-16 encoding. + UTF-16 is the native internal representation of text in many software systems, for example: +

+
    +
  1. Microsoft Windows NT/Windows 2000/Windows XP/Windows CE;
  2. +
  3. Qualcomm BREW, and Symbian operating systems;
  4. +
  5. the Java and .NET byte code environments;
  6. +
  7. Mac OS X's Cocoa and Core Foundation frameworks;
  8. +
  9. Qt cross-platform graphical widget toolkit.
  10. +
+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "String UTF16 Type" ; + rdfs:subClassOf qudt:StringType ; + rdfs:subClassOf qudt:TextStringType ; + sh:property qudt:StringUTF16-memberDatatype . + +qudt:StringUTF8 + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + String UTF-8 Type is a string data type that specifies the properties of string data structures which encode strings using the UTF-8 encoding. + UTF-8 includes ASCII, otherwise referred to as IA-5 (International Alphabet 5, as standardized by International Organization for Standardization [ISO]) as the first 128 values. + The Internet Engineering Task Force (IETF) requires all Internet protocols to identify the encoding used for character data with UTF-8 as at least one supported encoding. + The Internet Mail Consortium (IMC) recommends that all e-mail programs must be able to display and create mail using UTF-8. + """ ; + rdfs:isDefinedBy ; + rdfs:label "String UTF8 Type" ; + rdfs:subClassOf qudt:StringType ; + rdfs:subClassOf qudt:TextStringType ; + sh:property qudt:StringUTF8-memberDatatype ; + vaem:isElaboratedIn . + +qudt:StructuredDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Structured Datatype, in contrast to a scalar data type, is used to characterize classes of more complex data structures. + Examples are collections, linked and indexed lists, trees, ordered trees, and multi-dimensional file formats. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Structured Data Type" ; + rdfs:subClassOf qudt:Datatype ; + sh:property qudt:StructuredDatatype-elementType . + +qudt:Table + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Table Type is a data type that specifies the properties of table data structures. + A table is both a mode of visual communication and a means of arranging data. + The precise conventions and terminology for describing tables varies depending on the context. + Moreover, tables differ significantly in variety, structure, flexibility, notation, representation and use. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Table Type" ; + rdfs:subClassOf qudt:StructuredData ; + sh:property qudt:Table-byRow ; + sh:property qudt:Table-columns ; + sh:property qudt:Table-dimensionality ; + sh:property qudt:Table-rows . + +qudt:TaggedEnumeration + a rdfs:Class, sh:NodeShape ; + dcterms:description "An enumeration where each literal has a tag that is a non-negative integer. These enumerations are likely to have their literals encoded - hence the need for the tag." ; + rdfs:isDefinedBy ; + rdfs:label "Tagged Enumeration" ; + rdfs:subClassOf qudt:Enumeration ; + sh:property qudt:TaggedEnumeration-code . + +qudt:TextStringType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A text string. Encodings can be specified as subclass or in connection to character arrays in Structured Datatypes. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Text String Type" ; + rdfs:subClassOf qudt:StringType . + +qudt:ThreeBodyRotatingCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Three Body Rotating Coordinate System is one that is associated with two different three-body systems. + For example, the Sun-Earth-spacecraft system and the Earth-Moon-spacecraft system. +

+

The lunar coordinate systems are primarily used when operating in close proximity to the Moon. + There are, however, a few additional coordinate systems that are also useful when analyzing (and depicting) trajectories in the vicinity of the Earth-Moon system. + The Sun-Earth and Earth-Moon rotating coordinate frames are defined as follows: +

+

The pole vector or Z-axis of the coordinate frame is set equal to the instantaneous orbit normal of the secondary (smaller) body about the primary (larger) body. + The X-axis is set equal to the vector from the primary body center of mass (CM) to the secondary body CM. + The X-axis rotates at a rate equal to the instantaneous rotation rate of the secondary body about the primary body. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Three Body Rotating Coordinate System Type" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:ThreeTupleType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A three-tuple is a tuple with exactly three members. A Three-Tuple Type is a data type that defines the type properties of a class of three-tuples and their members." ; + rdfs:label "Three-Tuple Type" ; + rdfs:subClassOf qudt:N-TupleType ; + sh:property qudt:Three-Tuple-elementType ; + sh:property qudt:Three-Tuple-elementTypeCount . + +qudt:Time + a rdfs:Class, sh:NodeShape ; + rdfs:comment "The class of data values that denote a point in time. Time values may be encoded in a 12-hour clock or a 24-hour clock, such as 1:35 AM, or 13:35." ; + rdfs:label "Time" ; + rdfs:subClassOf qudt:Scalar ; + sh:property qudt:Time-type . + +qudt:TimeDataType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'QUDT Enumeration'." ; + dtype:value qudt:TIME ; + rdfs:isDefinedBy ; + rdfs:label "Time data type" ; + rdfs:subClassOf qudt:Enumeration ; + rdfs:subClassOf qudt:ScalarDatatype . + +qudt:TimeInterval + a rdfs:Class, sh:NodeShape ; + rdfs:comment "A relative interval that is an increment in time. For example, this is used in time series arrays to express the time point of a vector of values." ; + rdfs:label "Time interval" ; + rdfs:subClassOf qudt:Parameter ; + sh:property qudt:TimeInterval-type . + +qudt:TimeSeriesArray + a rdfs:Class, sh:NodeShape ; + rdfs:comment """ + A Time Series Array is a data type that specifies the properties of arrays that hold time series data. + A time series is a sequence of data points, measured at successive time intervals. + The time intervals may be uniformly or non-uniformly spaced. + """ ; + rdfs:label "Time Series Array" ; + rdfs:subClassOf qudt:Array ; + sh:property qudt:TimeSeriesArray-incrementDatatype ; + sh:property qudt:TimeSeriesArray-vector . + +qudt:TimeStringType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Time takes a number of forms, depending on the units used (e.g., year, day, minute, millisecond, or combinations thereof) and the origin (i.e., time zero) to which the time value is related." ; + rdfs:isDefinedBy ; + rdfs:label "Time Type" ; + rdfs:subClassOf qudt:DateTimeStringType ; + rdfs:subClassOf qudt:TextStringType . + +qudt:TrajectoryCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Coordinate System\"." ; + rdfs:isDefinedBy ; + rdfs:label "Trajectory Coordinate System" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem . + +qudt:Tree + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Tree\" is a data type that defines the properties of data structures that represent trees. A tree is a graph data structure accessed beginning at the root node. Each node is either a leaf or an internal node. An internal node has one or more child nodes and is called the parent of its child nodes. Leaf nodes have no chidren. Nodes that share the same parent are siblings. In graph theoretic terminology, a tree is a connected, undirected, acyclic graph." ; + prov:wasInfluencedBy ; + rdfs:isDefinedBy ; + rdfs:label "Tree Type" ; + rdfs:subClassOf qudt:Graph . + +qudt:Triplet + a rdfs:Class, sh:NodeShape ; + dcterms:description "A \"Tuple\"." ; + rdfs:isDefinedBy ; + rdfs:label "Triplet" ; + rdfs:seeAlso qudt:Three-Tuple ; + rdfs:seeAlso qudt:ThreeTupleType ; + rdfs:subClassOf qudt:Three-Tuple ; + rdfs:subClassOf qudt:ThreeTupleType . + +qudt:TupleMemberType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Tuple Member Type is a data type that defines the properties of a member of a tuple. It is used to provide fine grained type specification to the elements of tuples." ; + rdfs:isDefinedBy ; + rdfs:label "Tuple Member Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + sh:property qudt:TupleMember-elementType ; + sh:property qudt:TupleMember-orderInStructure . + +qudt:TupleType + a rdfs:Class, sh:NodeShape ; + dcterms:description "

The term Tuple originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, n-tuple. In mathematics, a tuple is a finite sequence (also known as an Ordered List of objects, each of a specified type. The n can be any non-negative integer.

"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Tuple Type" ; + rdfs:subClassOf qudt:CompositeDatatype ; + sh:property qudt:Tuple-elementType ; + sh:property qudt:Tuple-elementTypeCount ; + sh:property qudt:Tuple-length . + +qudt:TwoTupleType + a rdfs:Class, sh:NodeShape ; + dcterms:description "A 2-tuple is called a pair. For example, a complex number can be represented as a 2-tuple, and 2D coordinates are sometimes represented as 2-tuples." ; + rdfs:label "Two-Tuple Type" ; + rdfs:subClassOf qudt:N-TupleType ; + sh:property qudt:Two-Tuple-elementType ; + sh:property qudt:Two-Tuple-elementTypeCount . + +qudt:TypeList + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'QUDT Datatype'." ; + rdfs:isDefinedBy ; + rdfs:label "Type list" ; + rdfs:subClassOf qudt:Datatype . + +qudt:TypeMatrix + a rdfs:Class, sh:NodeShape ; + rdfs:comment """ + Members of this class are matrix data structures that describe the datatypes of a class of matrices. + That is, the members of this class are matrices with cells that contain datatypes (c.f. type:Datatype) and are used to describe the datatype structure of other matrices. + """ ; + rdfs:label "Type matrix" ; + rdfs:subClassOf qudt:MatrixType . + +qudt:UnsignedBigIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "An Unsgned Big Integer is an unsigned integer that can be represented in eight octets (64 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Big Integer Type" ; + rdfs:subClassOf qudt:BigIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + sh:property qudt:UnsignedBigIntegerType-abbreviation ; + sh:property qudt:UnsignedBigIntegerType-maxInclusive ; + sh:property qudt:UnsignedBigIntegerType-minInclusive . + +qudt:UnsignedIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "Unsgned Integers are integers that are either strictly non-negative or non-positive." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + rdfs:subClassOf qudt:UnsignedType ; + sh:disjoint qudt:SignedIntegerType . + +qudt:UnsignedLongIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "An Unsigned Long Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Long Integer Type" ; + rdfs:subClassOf qudt:LongIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + sh:property qudt:UnsignedLongIntegerType-literal ; + sh:property qudt:UnsignedLongIntegerType-maxInclusive ; + sh:property qudt:UnsignedLongIntegerType-minInclusive . + +qudt:UnsignedMediumIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + An "Unsigned Medium Integer" is an integer of 24 bits that only takes on both positive values. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Medium Integer Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType . + +qudt:UnsignedShortIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description "An Unsigned Short Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Short Integer Type" ; + rdfs:subClassOf qudt:ShortIntegerType ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + sh:property qudt:UnsignedShortIntegerType-abbreviation ; + sh:property qudt:UnsignedShortIntegerType-maxInclusive ; + sh:property qudt:UnsignedShortIntegerType-minInclusive . + +qudt:UnsignedType + a rdfs:Class, sh:NodeShape ; + dcterms:description "An unsigned data type is a numeric type that does not distinguish between positive and negative values." ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Type" ; + rdfs:subClassOf qudt:NumericType ; + sh:disjoint qudt:SignedType ; + sh:property qudt:UnsignedType-signedness . + +qudt:UnsignedVariableLengthIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + An "Unsigned Variable Length Integer" data type defines a data structure for representing unsigned integers that uses a variable number of bits depending on the magnitude of the integer. + Typically, variable length integer data types are between one and 64 bits in length. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Variable Length Integer Type" ; + rdfs:subClassOf qudt:UnsignedIntegerType ; + rdfs:subClassOf qudt:VariableLengthIntegerType . + +qudt:VariableIntervalTimeSeriesArray + a rdfs:Class, sh:NodeShape ; + dcterms:description "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random." ; + rdfs:isDefinedBy ; + rdfs:label "Variable Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArray . + +qudt:VariableIntervalTimeSeriesArrayType + a rdfs:Class, sh:NodeShape ; + rdfs:comment "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random." ; + rdfs:label "Variable Interval Time Series Array Type" ; + rdfs:subClassOf qudt:TimeSeriesArrayType . + +qudt:VariableLengthIntegerType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A "Variable Length Integer" data type defines a data structure for representing integers that uses a variable number of bits depending on the magnitude of the integer. + Typically, variable length integer data types are between one and 64 bits in length. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Variable Length Integer Type" ; + rdfs:subClassOf qudt:IntegerDatatype ; + sh:property qudt:VariableLengthIntegerType-maxBits ; + sh:property qudt:VariableLengthIntegerType-minBits . + +qudt:Vector + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Vector is an array data type that can have a dimensionality of one, or more elements. + Vectors can represent physical quantities, such as velocity, force, displacement; + mathematical objects such as points or directions in space; + and abstract representations for things such as colors, features, or embeddings in computational contexts. +

+

As a one-dimensional mathematical object it can represent a quantity with both magnitude and direction in space. + One-dimensional vectors can be thought of as a special case of a 1D array. + For example a 3D vector can be expressed as a list of coordinates: [x,y,z]. +

+

+ A vector in n-dimensional space can represent a point, a direction, or a linear combination of basis vectors. +

+

+ Vectors can represent quantifiable values. + For example a car moving at 60 m/hr to the north, assuming north is along the y-axis, can be represented in 2D as: +

+
[0, 60]
+

+ In machine learning a Feature Vector can be expressed for a dataset entry as: +

+

[5.1, 3.5, 1.4, 0.2]
+

+ Im AI for text processing a Word Embedding Vector is expressed as a N-dimensional space, where N can be a large number. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Vector" ; + rdfs:subClassOf qudt:Array ; + sh:property qudt:MaybeQuantityPropertyShape ; + sh:property qudt:QuantityKindsPropertyShape . + +qudt:VehicleCoordinateSystem + a rdfs:Class, sh:NodeShape ; + dcterms:description "A sub-type of 'Aerospace coordinate system'." ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle coordinate system" ; + rdfs:subClassOf qudt:AerospaceCoordinateSystem ; + sh:property qudt:VehicleCoordinateSystem-pitchRotationDefinition ; + sh:property qudt:VehicleCoordinateSystem-rollRotationDefinition ; + sh:property qudt:VehicleCoordinateSystem-yawRotationDefinition . + +qudt:VisualCue + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Visual Cue" ; + rdfs:subClassOf qudt:ModalCue . + +qudt:WetDryStateType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Wet dry state type" ; + rdfs:subClassOf qudt:DiscreteState ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:YesNoType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Yes no type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:MassPropertiesArray + a owl:Class ; + dcterms:description """ +

A Mass Properties Array holds, for an object, four values for the properties: + Center of Gravity, Mass, Moment of Inertia, and Product of Inertia. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Mass Properties Array" ; + rdfs:subClassOf qudt:HeterogenousArray ; + sh:property qudt:QuantityKindsPropertyShape . + +dcterms:contributor + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "contributor" . + +dcterms:creator + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "creator" . + +dcterms:description + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "description" . + +dcterms:rights + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rights" . + +dcterms:subject + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "subject" . + +dcterms:title + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "title" . + +qudt:accuracy + a rdf:Property ; + dcterms:description """ +

Accuracy is the degree to which a given quantity is correct and free from error. + For example, a quantity specified as 100+/-1 has an (absolute) accuracy of +/-1 (meaning its true value can fall in the range 99-101), + while a quantity specified as 100+/-2% has a (relative) accuracy of +/-2% (meaning its true value can fall in the range 98-102). +

+

The concepts of accuracy and precision are both closely related and often confused. + While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x, + the precision of x is the total number of significant decimal (or other) digits. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "accuracy" . + +qudt:alignment + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "alignment" . + +qudt:allowedPattern + a rdf:Property ; + dcterms:description "This property relates a date string encoding (c.f. type:DateStringEncodingType) to one or more XML Schema compliant regular expressions that together determine the allowed lexical expressions that can be unambiguously parsed to determine a temporal quantity." ; + rdfs:isDefinedBy ; + rdfs:label "allowed pattern" . + +qudt:ansiSQLName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ANSI SQL name" ; + rdfs:subPropertyOf qudt:id . + +qudt:arg1Type + a rdf:Property ; + dcterms:description "This property relates a funciton data type with the type of its arg1." ; + rdfs:isDefinedBy ; + rdfs:label "arg1Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:arg2Type + a rdf:Property ; + dcterms:description "This property relates a funciton data type with the type of its arg2." ; + rdfs:isDefinedBy ; + rdfs:label "arg2Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:arg3Type + a rdf:Property ; + dcterms:description "This property relates a funciton data type with the type of its arg3." ; + rdfs:isDefinedBy ; + rdfs:label "arg3Type" ; + rdfs:subPropertyOf qudt:argType . + +qudt:argType + a rdf:Property ; + dcterms:description "This property relates a function data type with the type of one of its arguments." ; + rdfs:isDefinedBy ; + rdfs:label "argType" ; + rdfs:subPropertyOf qudt:elementDatatype . + +qudt:auralCue + a rdf:Property ; + rdfs:label "aural cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:auralCueEnumeration + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "aural cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:base + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "base" . + +qudt:basis + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "basis" . + +qudt:bitOrder + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "bit order" . + +qudt:bits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "bits" . + +qudt:bounded + a rdf:Property ; + dcterms:description "A datatype is bounded if its value space has either a finite upper and lower bound. Either bound may be inclusive or exclusive. " ; + rdfs:isDefinedBy ; + rdfs:label "bounded" . + +qudt:byteOrder + a rdf:Property ; + dcterms:description "Byte order is an enumeration of two values: 'Big Endian' and 'Little Endian' and is used to denote whether the most signiticant byte is either first or last, respectively." ; + rdfs:isDefinedBy ; + rdfs:label "byte order" . + +qudt:bytes + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "bytes" . + +qudt:cName + a rdf:Property ; + rdfs:comment "Datatype name in the C programming language" ; + rdfs:isDefinedBy ; + rdfs:label "C Language name" ; + rdfs:label "C name" ; + rdfs:subPropertyOf qudt:id . + +qudt:cardinality + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "cardinality" . + +qudt:columns + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "columns" . + +qudt:coordinateCenter + a rdf:Property ; + rdfs:domain qudt:CoordinateSystem ; + rdfs:isDefinedBy ; + rdfs:label "coordinate center" ; + skos:prefLabel "coordinate center" . + +qudt:coordinateSystem + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "coordinate system" . + +qudt:coordinateSystemFrame + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "coordinate system frame" . + +qudt:dataEncoding + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "data encoding" . + +qudt:dataOrder + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "data order" . + +qudt:datatype + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "datatype" . + +qudt:defaultValue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Default Value" . + +qudt:dimensionality + a rdf:Property ; + dcterms:description """ + The number of dimensions making up a matrix or an array. + For example a 4 by 4 array has a dimensionality of 2. + Whereas a vector or a string has a dimensionality of 1. + """ ; + rdfs:isDefinedBy ; + rdfs:label "dimensionality" . + +qudt:dimensions + a rdf:Property ; + dcterms:description """ + The extent of each dimension making up a matrix or an array. + For example a 4 by 4 array has dimensions (4 4), + whereas a vector or a string has dimensions (1). + """ ; + dcterms:description """ + The extent of each dimension making up an array or matrix. + Dimensions are expressed as an integer list. + For example a 4 by 4 array has dimensions (4 4), whereas a vector or a string has dimensions (1). + """ ; + rdfs:isDefinedBy ; + rdfs:label "dimensions" . + +qudt:elementDatatype + a rdf:Property ; + dcterms:description """ + This property is used to relate a structured data type with the data type the structured type's elements. + It is used for structured data types with elements that are all of the same type. + """ ; + rdfs:isDefinedBy ; + rdfs:label "element datatype" . + +qudt:elementKind + a rdf:Property ; + dcterms:description "This property is used to describe the quantity kind for a dimensional data type." ; + rdfs:isDefinedBy ; + rdfs:label "element kind" ; + rdfs:subPropertyOf qudt:elementKind . + +qudt:elementLabel + a rdf:Property ; + dcterms:description "This property is used to label the field of a composite data structure." ; + rdfs:isDefinedBy ; + rdfs:label "element label" . + +qudt:elementName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "element name" . + +qudt:elementTypeCount + a rdf:Property ; + dcterms:description "This property determines the allowed number of element types that a structured data type may have." ; + rdfs:isDefinedBy ; + rdfs:label "element type count" . + +qudt:elementTypeList + a rdf:Property ; + dcterms:description """ + This property is used to define the data type of the elements of a structured data type. + It is used for structured data types with elements that are of different types. + """ ; + rdfs:isDefinedBy ; + rdfs:label "element type list" . + +qudt:elementUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "element unit" . + +qudt:encoding + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "encoding" . + +qudt:enumeration + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "enumeration" . + +qudt:exponent + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "exponent" . + +qudt:field + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "field" . + +qudt:fieldLabels + a rdf:Property ; + dcterms:description "This property is used to list the field labels for a record type." ; + rdfs:isDefinedBy ; + rdfs:label "field labels" . + +qudt:fieldName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "field name" . + +qudt:float_X + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "float X" . + +qudt:float_Y + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "float Y" . + +qudt:float_Z + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "float Z" . + +qudt:frameType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "frame type" . + +qudt:functionArity + a rdf:Property ; + dcterms:description "This property is used to state the number of arguments for a function type." ; + rdfs:isDefinedBy ; + rdfs:label "function arity" . + +qudt:hasQuantityKindsList + a rdf:Property ; + dcterms:description "This property is used to specify a list of quantity kinds." ; + rdfs:isDefinedBy ; + rdfs:label "quantity kinds" . + +qudt:iconicCue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "iconic cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:iconicCueEnumeration + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "iconic cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:inverted + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "inverted" . + +qudt:isByteString + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "is byte string" . + +qudt:isHeterogeneous + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "is heterogeneous" . + +qudt:javaName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "java name" ; + rdfs:subPropertyOf qudt:id . + +qudt:jsName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Javascript name" ; + rdfs:subPropertyOf qudt:id . + +qudt:kinestheticCue + a rdf:Property ; + rdfs:label "kinesthetic cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:kinestheticCueEnumeration + a rdf:Property ; + rdfs:label "kinesthetic cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:length + a rdf:Property ; + dcterms:description "The length of a structure, for example the size of a vector" ; + rdfs:isDefinedBy ; + rdfs:label "length" . + +qudt:lowerBound + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "lower bound" . + +qudt:mantissa + a rdf:Property ; + rdfs:comment "In scientific notation, the mantissa of a real number is the integer coefficient preceding the base raised to the exponent." ; + rdfs:label "mantissa" . + +qudt:matlabName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "matlab name" ; + rdfs:subPropertyOf qudt:id . + +qudt:maxBits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "maximum bits" . + +qudt:maxDepth + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "max depth" . + +qudt:maxExclusive + a rdf:Property ; + dcterms:description "maxExclusive is the exclusive upper bound of the value space for a datatype with the ordered property. The value of maxExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "max exclusive" ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:maxExponent + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "max exponent" . + +qudt:maxInclusive + a rdf:Property ; + dcterms:description "maxInclusive is the inclusive upper bound of the value space for a datatype with the ordered property. The value of maxInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "max inclusive" ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:maxLength + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "max length" . + +qudt:maxMantissa + a rdf:Property ; + dcterms:description """ +

The maximium mantissa is the largest integer that may appear as a coefficient in a finite precision representation of a real number. + For a given numeric data type, the value of maxMantissa} (M) and the values of base (b) and precision (p) are related by the formula: +

+

M = b - 1 .

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "max mantissa" . + +qudt:member + a rdf:Property ; + dcterms:description """ + This property is used to define a collection's elements. + """ ; + rdfs:isDefinedBy ; + rdfs:label "member" . + +qudt:memberDatatype + a rdf:Property ; + dcterms:description """ + This property is used to define the data type of a collection's elements. + It is used for collections with elements that are all of the same type. + """ ; + rdfs:isDefinedBy ; + rdfs:label "member datatype" . + +qudt:microsoftSQLServerName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Microsoft SQL Server name" ; + rdfs:subPropertyOf qudt:id . + +qudt:minBits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "minimum bits" . + +qudt:minExclusive + a rdf:Property ; + dcterms:description "minExclusive is the exclusive lower bound of the value space for a datatype with the ordered property. The value of minExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "min exclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:minInclusive + a rdf:Property ; + dcterms:description "minInclusive is the inclusive lower bound of the value space for a datatype with the ordered property. The value of minInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "min inclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:minLength + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "min length" . + +qudt:minMantissa + a rdf:Property ; + dcterms:description """ +

The minimium mantissa is the negative integer with the greatest magnitude that may appear as a coefficient in a finite precision representation of a real number. + For a given numeric data type, the value of minMantissa (M) and the values of base (b) and precision (p) are related by the formula: +

+

M = -(bp - 1). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "min mantissa" . + +qudt:minValue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "minimum value" . + +qudt:modalCue + a rdf:Property ; + rdfs:label "modal cue" . + +qudt:modalCueEnumeration + a rdf:Property ; + rdfs:label "modal cue enumeration" ; + rdfs:subPropertyOf qudt:enumeration . + +qudt:modifiability + a rdf:Property ; + rdfs:comment "Reference to one in a list of enumerated elements that indicates whether data (e.g. variable or parameter) can be changed." ; + rdfs:label "modifiability" . + +qudt:mySQLName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "MySQL name" ; + rdfs:subPropertyOf qudt:id . + +qudt:negativeDeltaLimit + a rdf:Property ; + dcterms:description "A negative change limit between consecutive sample values for a parameter. The Negative Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "negative delta limit" . + +qudt:odbcName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ODBC name" ; + rdfs:subPropertyOf qudt:id . + +qudt:oleDBName + a rdf:Property ; + dcterms:description """ +

OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. + The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. +

"""^^rdf:HTML ; + dcterms:description "OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. " ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/OLE_DB"^^xsd:anyURI ; + qudt:informativeReference "http://msdn.microsoft.com/en-us/library/windows/desktop/ms714931(v=vs.85).aspx"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "OLE DB name" ; + rdfs:subPropertyOf qudt:id . + +qudt:optional + a rdf:Property ; + rdfs:label "optional" . + +qudt:oracleSQLName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ORACLE SQL name" ; + rdfs:subPropertyOf qudt:id . + +qudt:orderInStructure + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "order in structure" . + +qudt:orderedType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ordered type" . + +qudt:orderingRelation + a rdf:Property ; + dcterms:description "This property identifies the mathematical comparison operator (such as \"<\" or \">\") that is used to order the elements of a collection." ; + rdfs:isDefinedBy ; + rdfs:label "Ordering Relation" . + +qudt:originDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "origin definition" . + +qudt:padding + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "padding" . + +qudt:pattern + a rdf:Property ; + dcterms:description "A pattern is a constraint on the value space of a datatype which is achieved by constraining the lexical space to literals which match a specific pattern. The value of pattern must be a regular expression." ; + rdfs:isDefinedBy ; + rdfs:label "pattern" . + +qudt:pitchRotationDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "pitch rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +qudt:positiveDeltaLimit + a rdf:Property ; + dcterms:description "A positive change limit between consecutive sample values for a parameter. The Positive Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Positive delta limit" . + +qudt:precision + a rdf:Property ; + dcterms:description """ +

Precision is the number of digits used to perform a given computation. + The concepts of accuracy and precision are both closely related and often confused. + While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x, + the precision of x is the total number of significant decimal (or other) digits. +

+

For a given numeric data type, the value of type:precision (?p) is related to the values of type:maxMantissa (?M) and type:base (?b) by the formula: +

+

?p := log(?b, ?M) +

+

where log(a,y) = x iff y=a^x. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "precision" . + +qudt:protocolBuffersName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "protocol buffers name" ; + rdfs:subPropertyOf qudt:id . + +qudt:pythonName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "python name" ; + rdfs:subPropertyOf qudt:id . + +qudt:rdfsDatatype + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rdfs datatype" . + +qudt:realization + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "realization" . + +qudt:referenceFrame + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "reference frame" ; + rdfs:subPropertyOf qudt:coordinateSystemFrame . + +qudt:referenceFrameType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "reference frame type" . + +qudt:returnType + a rdf:Property ; + dcterms:description "This property is used to state the return type of a function type." ; + rdfs:isDefinedBy ; + rdfs:label "return type" ; + rdfs:subPropertyOf qudt:elementDatatype . + +qudt:rgbCode + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rgb code" . + +qudt:rollRotationDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "roll rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +qudt:rotationDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rotation definition" . + +qudt:rows + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rows" . + +qudt:signedness + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "signedness" . + +qudt:significantDigits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "significant digits" . + +qudt:sound + a rdf:Property ; + rdfs:comment "The intended use of the sound property is to be associated with modal enumerations" ; + rdfs:isDefinedBy ; + rdfs:label "sound" . + +qudt:stringValue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "string value" ; + rdfs:subPropertyOf qudt:scalarValue . + +qudt:timeDatatype + a rdf:Property ; + rdfs:label "time datatype" ; + rdfs:subPropertyOf qudt:type . + +qudt:totalDigits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "total digits" . + +qudt:type + a rdf:Property ; + rdfs:comment "A reference to the specification of the data type of a variable or constant." ; + rdfs:label "type" . + +qudt:typeMatrix + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "type matrix" . + +qudt:typeVector + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "type vector" . + +qudt:upperBound + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "upper bound" . + +qudt:valueRange + a rdf:Property ; + rdfs:label "value range" . + +qudt:valueType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "value type" . + +qudt:valueVector + a rdf:Property ; + rdfs:comment "A list of the values of elements in a Partial Array." ; + rdfs:label "value vector" . + +qudt:vbName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Visual Basic name" ; + rdfs:subPropertyOf qudt:id . + +qudt:vector + a rdf:Property ; + rdfs:label "vector" . + +qudt:visualCue + a rdf:Property ; + rdfs:label "visual cue" ; + rdfs:subPropertyOf qudt:modalCue . + +qudt:visualCueEnumeration + a rdf:Property ; + rdfs:label "visual cue enumeration" ; + rdfs:subPropertyOf qudt:modalCueEnumeration . + +qudt:xAxisDefinition + a rdf:Property ; + dcterms:description """ + The definition of the X-Axis could be an intersection, cross-product or other function of a meridian or orbit. + It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. + An epoch might also be given. + """ ; + rdfs:isDefinedBy ; + rdfs:label "X-Axis Definition" . + +qudt:xCoordinateDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "X-Coordinate definition" . + +qudt:yAxisDefinition + a rdf:Property ; + dcterms:description """ + The definition of the Y-Axis could be an intersection, cross-product or other function of a meridian or orbit. + It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. + An epoch might also be given. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Y-Axis definition" . + +qudt:yCoordinateDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Y-Coordinate definition" . + +qudt:yawRotationDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Yaw rotation definition" ; + rdfs:subPropertyOf qudt:rotationDefinition . + +qudt:zAxisDefinition + a rdf:Property ; + dcterms:description """ + The definition of the Y-Axis could be an intersection, croos-product or other function of a meridian or orbit. + It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. + An epoch might also be given. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Z-Axis definition" . + +qudt:zCoordinateDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Z-Coordinate definition" . + + + a vaem:GraphMetaData ; + dcterms:description """ +

The QUDT 'Datatype' ontology is a specification of scalar and structured data types. + Scalar data types are defined for all the commonly encountered forms of numbers, characters and booleans, with their representations in a number of vendor and industry specific technologies. + Structured data types cover arrays, lists, trees and many other forms of composite data elements. + Specification of coordinate systems is also covered. +

+ """^^rdf:HTML ; + dcterms:modified "2024-11-22T14:54:24-05:00"^^xsd:dateTime ; + dcterms:rights """ +

The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available here. + Attribution should be made to QUDT.org. +

"""^^rdf:HTML ; + dcterms:subject "Datatypes" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:graphTitle "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:hasGraphRole vaem:SchemaGraph ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:name "QUDT" ; + vaem:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ; + vaem:namespacePrefix "qudt" ; + vaem:owner "QUDT.ORG" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ; + vaem:publishedDate "2017-05-10"^^xsd:date ; + vaem:releaseDate "2016-05-09"^^xsd:date ; + vaem:title "QUDT Schema for Datatypes - Version 3.1.0" ; + vaem:turtleFileURL "http://qudt.org/3.1.0/schema/datatype.ttl"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource ; + vaem:withAttributionTo . + +qudt:AllValuesMustHaveSameDataTypeShape + a sh:NodeShape ; + rdfs:label "All Values must have same DataType Shape" ; + sh:severity sh:Violation ; + sh:sparql [ + sh:message "Data Item {$this} has type {?valueType}." ; + sh:prefixes ; + sh:select """ + SELECT $this ?valueType + WHERE { + $this qudt:datatype/qudt:rdfsDatatype ?datatype . + $this qudt:value ?valueList. + ?valueList rdf:rest*/rdf:first ?value . + BIND(datatype(?value) as ?valueType) . + FILTER(?valueType != ?datatype) + } + """ ; + ] ; + sh:targetClass qudt:HomogeneousArray . + +qudt:Array-isHeterogeneous + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:isHeterogeneous . + +qudt:Array-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:node qudt:NumericListShape ; + sh:path qudt:value . + +qudt:Array2DvalueList + a rdfs:Resource ; + dcterms:description """ + An rdf:List for a 2D array. + For example "[[1,2], [3,4], [5,6]]" + """ ; + rdf:first [ + sh:datatype qudt:List ; + ] ; + rdf:rest ( [ + sh:datatype qudt:List ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "2D Array Value List" ; + rdfs:subClassOf rdf:List . + +qudt:AuralCue-sound + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:sound . + +qudt:AuralCueEnumeration-defaultValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:AuralCue ; + sh:path qudt:defaultValue . + +qudt:BalancedTree-maxDepth + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:maxDepth . + +qudt:BigEndian + a qudt:EndianType ; + dtype:literal "big" ; + rdfs:isDefinedBy ; + rdfs:label "Big Endian" . + +qudt:BitAligned + a qudt:AlignmentType ; + dtype:literal "bit" ; + rdfs:isDefinedBy ; + rdfs:label "Bit Aligned" . + +qudt:BitField + a rdfs:Datatype ; + rdfs:isDefinedBy ; + rdfs:label "bitfield" ; + rdfs:subClassOf xsd:string . + +qudt:BooleanEncoding + a qudt:BooleanEncodingType ; + qudt:bits 1 ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Encoding" . + +qudt:BooleanType-encoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:BooleanEncodingType ; + sh:path qudt:encoding . + +qudt:ByteAligned + a qudt:AlignmentType ; + dtype:literal "byte" ; + rdfs:isDefinedBy ; + rdfs:label "Byte Aligned" . + +qudt:CRC32 + a rdfs:Datatype ; + rdfs:isDefinedBy ; + rdfs:label "CRC-32" ; + rdfs:subClassOf xsd:integer . + +qudt:CT_COUNTABLY-INFINITE + a qudt:CardinalityType ; + dcterms:description """ + A set of numbers is called countably infinite if there is a way to enumerate them. + Formally this is done with a bijection function that associates each number in the set with exactly one of the positive integers. + The set of all fractions is also countably infinite. + In other words, any set $X$ that has the same cardinality as the set of the natural numbers, + or $| X | \\; = \\; | \\mathbb N | \\; = \\; \\aleph0$, is said to be a countably infinite set. + """^^qudt:LatexString ; + dtype:literal "countable" ; + qudt:informativeReference "http://www.math.vanderbilt.edu/~schectex/courses/infinity.pdf"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Countably Infinite Cardinality Type" . + +qudt:CT_FINITE + a qudt:CardinalityType ; + dcterms:description """ + Any set $X$ with cardinality less than that of the natural numbers, or $| X | \\\\; < \\; | \\\\mathbb N | $, is said to be a finite set. + """^^qudt:LatexString ; + dtype:literal "finite" ; + rdfs:isDefinedBy ; + rdfs:label "Finite Cardinality Type" . + +qudt:CT_UNCOUNTABLE + a qudt:CardinalityType ; + dcterms:description """ + Any set with cardinality greater than that of the natural numbers, or + $$| X | \\; > \\; | \\mathbb N | $$ + + For example $| R| \\; = \\; c \\; > |\\mathbb N |$, is said to be uncountable. + """^^qudt:LatexString ; + dtype:literal "uncountable" ; + rdfs:isDefinedBy ; + rdfs:label "Uncountable Cardinality Type" . + +qudt:CardinalityType-literal + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path dtype:literal . + +qudt:CharEncoding + a qudt:BooleanEncodingType, qudt:CharEncodingType ; + dcterms:description "7 bits of 1 octet" ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding" . + +qudt:Collection-memberQuantity + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Quantity ; + sh:maxCount 1 ; + sh:path qudt:quantify . + +qudt:Collection-memberUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:path qudt:hasUnit . + +qudt:ColorCue-rgbCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:rgbCode . + +qudt:CompositeDataStructure-dataElement + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:DataSetElement ; + sh:path qudt:field . + +qudt:CompositeDatatype-alignment + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:AlignmentType ; + sh:path qudt:alignment . + +qudt:CompositeDatatype-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:hasQuantityKind . + +qudt:CompositeDatatype-padding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:PaddingType ; + sh:maxCount 1 ; + sh:path qudt:padding . + +qudt:CompositionTreeType-compositionFunction + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CompositionFunction ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:function . + +qudt:Container-elementTypeCount + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:hasValue 1 ; + sh:path qudt:elementTypeCount . + +qudt:CoordinateSystem-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:abbreviation . + +qudt:CoordinateSystem-acronym + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path vaem:acronym . + +qudt:CoordinateSystem-coordinateCenter + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CoordinateCenterType ; + sh:maxCount 1 ; + sh:path qudt:coordinateCenter . + +qudt:CoordinateSystem-referenceFrame + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ReferenceFrame ; + sh:maxCount 1 ; + sh:path qudt:referenceFrame . + +qudt:CoordinateSystemType-originDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:originDefinition . + +qudt:Coordinates-2D-DoublePrecision-double_X + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:double_X . + +qudt:Coordinates-2D-DoublePrecision-double_Y + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:double_Y . + +qudt:Coordinates-2D-SinglePrecision-float_X + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:float_X . + +qudt:Coordinates-2D-SinglePrecision-float_Y + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:float_Y . + +qudt:Coordinates-3D-DoublePrecision-double_X + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:double_X . + +qudt:Coordinates-3D-DoublePrecision-double_Y + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:double_Y . + +qudt:Coordinates-3D-DoublePrecision-double_Z + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:double_Z . + +qudt:Coordinates-3D-SinglePrecision-float_X + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:float_X . + +qudt:Coordinates-3D-SinglePrecision-float_Y + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:float_Y . + +qudt:Coordinates-3D-SinglePrecision-float_Z + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:float_Z . + +qudt:Coordinates-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CoordinateMember ; + sh:path qudt:elementDatatype . + +qudt:DataEncoding-bitOrder + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EndianType ; + sh:maxCount 1 ; + sh:path qudt:bitOrder . + +qudt:DataEncoding-byteOrder + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EndianType ; + sh:maxCount 1 ; + sh:path qudt:byteOrder . + +qudt:DataEncoding-encoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Encoding ; + sh:maxCount 1 ; + sh:path qudt:encoding . + +qudt:DataSetElement-elementLabel + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:elementLabel . + +qudt:DataSetElement-optional + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:optional . + +qudt:DataSetElement-quantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:maxCount 1 ; + sh:path qudt:hasQuantityKind . + +qudt:Datatype-ansiSQLName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:ansiSQLName . + +qudt:Datatype-basis + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:maxCount 1 ; + sh:path qudt:basis . + +qudt:Datatype-bounded + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:bounded . + +qudt:Datatype-cName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:cName . + +qudt:Datatype-cardinality + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CardinalityType ; + sh:maxCount 1 ; + sh:path qudt:cardinality . + +qudt:Datatype-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:deactivated true ; + sh:maxCount 1 ; + sh:path vaem:description . + +qudt:Datatype-id + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:deactivated true ; + sh:maxCount 1 ; + sh:path qudt:id . + +qudt:Datatype-javaName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:javaName . + +qudt:Datatype-jsName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:jsName . + +qudt:Datatype-matlabName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:matlabName . + +qudt:Datatype-microsoftSQLServerName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:microsoftSQLServerName . + +qudt:Datatype-mySQLName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:minCount 0 ; + sh:path qudt:mySQLName . + +qudt:Datatype-odbcName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:odbcName . + +qudt:Datatype-oleDBName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:oleDBName . + +qudt:Datatype-oracleSQLName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:oracleSQLName . + +qudt:Datatype-orderedType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:OrderedType ; + sh:maxCount 1 ; + sh:path qudt:orderedType . + +qudt:Datatype-protocolBuffersName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:protocolBuffersName . + +qudt:Datatype-pythonName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:pythonName . + +qudt:Datatype-vbName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:vbName . + +qudt:DatatypePropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:datatype . + +qudt:DateTimeStringEncodingType-allowedPattern + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:minCount 1 ; + sh:path qudt:allowedPattern . + +qudt:DateTimeStringType-encoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:DateTimeStringEncodingType ; + sh:maxCount 1 ; + sh:path qudt:encoding . + +qudt:DateTypeUnion + a rdf:List ; + dcterms:description """ + An rdf:List that can be used in property constraints as the type in an sh:or to indicate + that all values of a property must be an xsd date type. + """ ; + rdf:first [ + sh:datatype xsd:date ; + ] ; + rdf:rest ( [ + sh:datatype xsd:dateTime ; + ] [ + sh:datatype xsd:gYear ; + ] [ + sh:datatype xsd:gMonth ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "Date Type Union" . + +qudt:DimensionalityPropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:dimensionality . + +qudt:DimensionalityShape + a sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Dimensions Shape" ; + sh:severity sh:Warning ; + sh:sparql [ + sh:message "\"{$this}\" has {$actualDimensions} dimensions extent and needs to have {$specifiedDimensions}" ; + sh:prefixes ; + sh:select """ + SELECT $this $actualDimensions $specifiedDimensions + WHERE { + $this qudt:dimensionality $dimensionality . + $this qudt:dimensions ?dimensions . + ?dimensions rdf:rest*/rdf:first $specifiedDimensions . + { SELECT $this (COUNT(?listValue )AS $actualDimensions) + WHERE { + $this qudt:value/rdf:rest*/rdf:first ?listValue . + } GROUP BY $this + } + FILTER ($actualDimensions != $specifiedDimensions) + } + """ ; + ] ; + sh:targetClass qudt:Array ; + sh:targetClass qudt:List . + +qudt:DimensionsPropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:node qudt:IntegerListShape ; + sh:path qudt:dimensions . + +qudt:DiscreteState-inverted + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:inverted . + +qudt:EarthCoordinateSystem-coordinateCenter + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CoordinateCenterType ; + sh:hasValue qudt:CCT_EarthCentered ; + sh:path qudt:coordinateCenter . + +qudt:Encoding-bits + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:bits . + +qudt:Encoding-bytes + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:bytes . + +qudt:EngineeringValueTupleMember-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:RealSinglePrecisionType ; + sh:path qudt:elementDatatype . + +qudt:Enumeration-bits + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:bits . + +qudt:Enumeration-defaultValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EnumeratedValue ; + sh:path qudt:defaultValue . + +qudt:Enumeration-encoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:encoding . + +qudt:Enumeration-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EnumeratedValue ; + sh:path dtype:value . + +qudt:FieldType-elementName + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:elementName . + +qudt:FieldType-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:path qudt:elementDatatype . + +qudt:FieldType-fieldLabel + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:fieldLabel . + +qudt:FieldType-fieldType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:minCount 1 ; + sh:path qudt:fieldType . + +qudt:FieldType-optional + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:optional . + +qudt:FunctionDatatype-argType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:path qudt:argType . + +qudt:FunctionDatatype-functionArity + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:functionArity . + +qudt:FunctionDatatype-returnType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:returnType . + +qudt:HeterogenousArray-datatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:datatype . + +qudt:HexBinaryType-length + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:length . + +qudt:HexBinaryType-maxLength + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:maxLength . + +qudt:HexBinaryType-minLength + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:minLength . + +qudt:HexBinaryType-pattern + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:pattern . + +qudt:IEEE754_1985RealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "IEEE 754 1985 Real Encoding" . + +qudt:ISO8601-UTCDateTime-BasicFormat + a qudt:DateTimeStringEncodingType ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}.[0-9]+Z" ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}Z" ; + rdfs:isDefinedBy ; + rdfs:isDefinedBy ; + rdfs:label "ISO 8601 UTC Date Time - Basic Format" . + +qudt:IconicCue-image + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:image . + +qudt:IconicCueEnumeration-defaultValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:IconicCue ; + sh:path qudt:defaultValue . + +qudt:InertialCoordinateFrame-frameType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue qudt:FT_NON-ROTATING ; + sh:path qudt:frameType . + +qudt:IntegerUnionList + a rdf:List ; + rdf:first [ + sh:datatype xsd:int ; + ] ; + rdf:rest ( [ + sh:datatype xsd:nonNegativeInteger ; + ] [ + sh:datatype xsd:positiveInteger ; + ] [ + sh:datatype xsd:integer ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "Integer Union List" . + +qudt:KinestheticCue-code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path dtype:code . + +qudt:KinestheticCueEnumeration-defaultValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:KinestheticCue ; + sh:path qudt:defaultValue . + +qudt:LittleEndian + a qudt:EndianType ; + dtype:literal "little" ; + rdfs:isDefinedBy ; + rdfs:label "Little Endian" . + +qudt:LongUnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 8 ; + rdfs:isDefinedBy ; + rdfs:label "Long Unsigned Integer Encoding" . + +qudt:LunarCoordinateSystem-coordinateCenter + a sh:PropertyShape ; + sh:class qudt:CoordinateCenterType ; + sh:hasValue qudt:CCT_MoonCentered ; + sh:path qudt:coordinateCenter . + +qudt:LunarCoordinateSystem-realization + a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:realization . + +qudt:LunarCoordinateSystem-xAxisDefinition + a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:xAxisDefinition . + +qudt:LunarCoordinateSystem-yAxisDefinition + a sh:PropertyShape ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:yAxisDefinition . + +qudt:LunarCoordinateSystem-zAxisDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:zAxisDefinition . + +qudt:Major + a qudt:MajorMinorType ; + dtype:code 2 ; + dtype:literal "major" ; + dtype:order "2"^^xsd:int ; + rdfs:isDefinedBy ; + rdfs:label "Major" . + +qudt:MarsCoordinateSystem-coordinateCenter + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CoordinateCenterType ; + sh:hasValue qudt:CCT_MarsCentered ; + sh:path qudt:coordinateCenter . + +qudt:MatrixElementOrder-byRow + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:byRow . + +qudt:MatrixElementOrder-dataOrder + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:MatrixElementOrder ; + sh:maxCount 1 ; + sh:path qudt:dataOrder . + +qudt:MaybeQuantityPropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Quantity ; + sh:maxCount 1 ; + sh:path qudt:quantity . + +qudt:MaybeUnitPropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:path qudt:hasUnit . + +qudt:Minor + a qudt:MajorMinorType ; + dtype:code 1 ; + dtype:literal "minor" ; + dtype:order "1"^^xsd:int ; + rdfs:isDefinedBy ; + rdfs:label "Minor" . + +qudt:ModalCue-duration + a sh:PropertyShape ; + sh:maxCount 1 ; + sh:path qudt:duration . + +qudt:ModalEnumeration-defaultValue + a sh:PropertyShape ; + sh:class qudt:ModalCue ; + sh:path qudt:defaultValue . + +qudt:MultiDimensionalDataFormat-descriptor + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:descriptor . + +qudt:MultiModalEnumeration-auralCueEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:auralCueEnumeration . + +qudt:MultiModalEnumeration-iconicCueEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:iconicCueEnumeration . + +qudt:MultiModalEnumeration-kinestheticCueEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:kinestheticCueEnumeration . + +qudt:MultiModalEnumeration-modalCueEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ModalEnumeration ; + sh:path qudt:modalCueEnumeration . + +qudt:MultiModalEnumeration-visualCueEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:visualCueEnumeration . + +qudt:MultiModalType-auralCue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:auralCue . + +qudt:MultiModalType-iconicCue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:iconicCue . + +qudt:MultiModalType-kinestheticCue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:kinestheticCue . + +qudt:MultiModalType-modalCue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ModalCue ; + sh:path qudt:modalCue . + +qudt:MultiModalType-visualCue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:visualCue . + +qudt:N-Tuple-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:minCount 0 ; + sh:path qudt:elementDatatype . + +qudt:No + a qudt:YesNoType ; + dtype:literal "N" ; + rdfs:isDefinedBy ; + rdfs:label "No" . + +qudt:NonModifiableParameter + a qudt:ParameterModifiabilityType ; + dtype:code "0" ; + dtype:literal "fixed" ; + rdfs:comment "Parameter is fixed, not modifiable." ; + rdfs:isDefinedBy ; + rdfs:label "Non modifiable parameter" . + +qudt:NonNegativeIntegerUnionList + a rdf:List ; + rdf:first [ + sh:datatype xsd:nonNegativeInteger ; + ] ; + rdf:rest ( [ + sh:datatype xsd:positiveInteger ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "Non-negative union list" . + +qudt:NonRotatingInertialFrame-frameType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue qudt:FT_NON-ROTATING ; + sh:path qudt:frameType . + +qudt:NumericType-accuracy + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:accuracy . + +qudt:NumericType-signedness + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SignednessType ; + sh:maxCount 1 ; + sh:path qudt:signedness . + +qudt:OctetEncoding + a qudt:BooleanEncodingType, qudt:ByteEncodingType ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "OCTET Encoding" . + +qudt:OnState + a qudt:OnOffStateType ; + dtype:code "1" ; + dtype:literal "on" ; + rdfs:isDefinedBy ; + rdfs:label "On" . + +qudt:OneMeansOff + a qudt:OnOffStateType ; + dtype:literal "off" ; + qudt:inverted true ; + rdfs:isDefinedBy ; + rdfs:label "One means off" . + +qudt:Open + a qudt:OpenCloseStateType ; + dtype:code "1" ; + dtype:literal "open" ; + rdfs:isDefinedBy ; + rdfs:label "Open" . + +qudt:OrderedCollectionKind-orderingRelation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class dtype:ComparisonOperator ; + sh:maxCount 1 ; + sh:path qudt:orderingRelation . + +qudt:PartiallyOrdered + a qudt:OrderedType ; + dtype:literal "partial" ; + qudt:plainTextDescription "Partial ordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Partially Ordered" . + +qudt:Quantifiable-dataEncoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:DataEncoding ; + sh:maxCount 1 ; + sh:path qudt:dataEncoding . + +qudt:QuantityKindsPropertyShape + a sh:PropertyShape ; + rdfs:comment "Invalid quantity kinds list - TODO: SPARQL Query" ; + rdfs:isDefinedBy ; + sh:node qudt:QuantityKindsListShape ; + sh:path qudt:hasQuantityKindsList . + +qudt:QuantityValueType-basis + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityType ; + sh:path qudt:basis . + +qudt:QuantityValueType-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:NumericType ; + sh:path qudt:elementDatatype . + +qudt:QuantityValueType-elementUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:path qudt:elementUnit . + +qudt:RawValueTupleMember-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:UnsignedIntegerType ; + sh:path qudt:elementDatatype . + +qudt:RealDatatype-base + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:base . + +qudt:RealDatatype-maxExponent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:maxExponent . + +qudt:RealDatatype-maxMantissa + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxMantissa . + +qudt:RealDatatype-minMantissa + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:minMantissa . + +qudt:RealDatatype-precision + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:precision . + +qudt:ReferenceFrame-comment + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path vaem:comment . + +qudt:ReferenceFrame-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path dcterms:description . + +qudt:ReferenceFrame-frameType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:FrameType ; + sh:path qudt:frameType . + +qudt:ReferenceFrame-informativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:informativeReference . + +qudt:ReferenceFrame-realization + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:realization . + +qudt:ReferenceFrame-xAxisDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:xAxisDefinition . + +qudt:ReferenceFrame-xCoordinateDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:xCoordinateDefinition . + +qudt:ReferenceFrame-yAxisDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:yAxisDefinition . + +qudt:ReferenceFrame-yCoordinateDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:yCoordinateDefinition . + +qudt:ReferenceFrame-zAxisDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:zAxisDefinition . + +qudt:ReferenceFrame-zCoordinateDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:zCoordinateDefinition . + +qudt:SIGNED + a qudt:SignednessType ; + dtype:literal "signed" ; + rdfs:isDefinedBy ; + rdfs:label "Signed" . + +qudt:ScalarDatatype-bitOrder + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EndianType ; + sh:maxCount 1 ; + sh:path qudt:bitOrder . + +qudt:ScalarDatatype-bits + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:or qudt:IntegerUnionList ; + sh:path qudt:bits . + +qudt:ScalarDatatype-byteOrder + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EndianType ; + sh:maxCount 1 ; + sh:path qudt:byteOrder . + +qudt:ScalarDatatype-bytes + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:or qudt:IntegerUnionList ; + sh:path qudt:bytes . + +qudt:ScalarDatatype-encoding + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Encoding ; + sh:maxCount 1 ; + sh:path qudt:encoding . + +qudt:ScalarDatatype-length + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:length . + +qudt:ScalarDatatype-maxExclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxExclusive . + +qudt:ScalarDatatype-maxInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxInclusive . + +qudt:ScalarDatatype-minExclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:minExclusive . + +qudt:ScalarDatatype-minInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:minInclusive . + +qudt:ScalarDatatype-rdfsDatatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class rdfs:Literal ; + sh:maxCount 1 ; + sh:path qudt:rdfsDatatype . + +qudt:ShortSignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Signed Integer Encoding" . + +qudt:ShortUnsignedIntegerEncoding + a qudt:BooleanEncodingType, qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Unsigned Integer Encoding" . + +qudt:SignedBigIntegerType-literal + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path dtype:literal . + +qudt:SignedBigIntegerType-maxInclusive + a sh:PropertyShape ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxInclusive . + +qudt:SignedBigIntegerType-minInclusive + a sh:PropertyShape ; + sh:or ( [ + sh:datatype xsd:string ; + ] [ + sh:datatype xsd:integer ; + ] [ + sh:datatype xsd:float ; + ] [ + sh:datatype xsd:decimal ; + ] ) ; + sh:path qudt:minInclusive . + +qudt:SignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Encoding" . + +qudt:SignedLongIntegerType-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:hasValue "SI32" ; + sh:path qudt:abbreviation . + +qudt:SignedLongIntegerType-maxInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxInclusive . + +qudt:SignedLongIntegerType-minInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or ( [ + sh:datatype xsd:string ; + ] [ + sh:datatype xsd:integer ; + ] [ + sh:datatype xsd:float ; + ] [ + sh:datatype xsd:decimal ; + ] ) ; + sh:path qudt:minInclusive . + +qudt:SignedShortIntegerType-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:abbreviation . + +qudt:SignedType-signedness + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:signedness . + +qudt:SinglePrecisionRealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Real Encoding" . + +qudt:StateSpaceVector-coordinateSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CoordinateSystem ; + sh:maxCount 1 ; + sh:path qudt:coordinateSystem . + +qudt:StringType-dimensionality + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:path qudt:dimensionality . + +qudt:StringType-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CharacterType ; + sh:path qudt:elementDatatype . + +qudt:StringType-isByteString + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:isByteString . + +qudt:StringType-maxLength + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:maxLength . + +qudt:StringType-memberDatatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CharacterType ; + sh:path qudt:memberDatatype . + +qudt:StringType-typeMatrix + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 0 ; + sh:minCount 0 ; + sh:path qudt:typeMatrix . + +qudt:StringUTF16-memberDatatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CharacterType ; + sh:hasValue qudt:UTF16-CHAR ; + sh:path qudt:memberDatatype . + +qudt:StringUTF8-memberDatatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:CharacterType ; + sh:hasValue qudt:UTF8-CHAR ; + sh:path qudt:memberDatatype . + +qudt:StructuredData-dimensionality + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:dimensionality . + +qudt:StructuredDatatype-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Datatype ; + sh:maxCount 1 ; + sh:path qudt:elementDatatype . + +qudt:SystemModifiableParameter + a qudt:ParameterModifiabilityType ; + dtype:code "1" ; + dtype:literal "system" ; + rdfs:comment "Parameter is modifiable by a (computer) system." ; + rdfs:isDefinedBy ; + rdfs:label "System modifiable parameter" . + +qudt:Table-byRow + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:byRow . + +qudt:Table-columns + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:columns . + +qudt:Table-dimensionality + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:dimensionality . + +qudt:Table-rows + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:rows . + +qudt:TaggedEnumeration-code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path dtype:code . + +qudt:TextTypeUnion + a rdf:List ; + dcterms:description """ + An rdf:List that can be used in property constraints as value for sh:or to indicate that all values of a property + must be a plain string, a string with HTML markup, or a string with LaTeX markup. + """ ; + rdf:first [ + sh:datatype xsd:string ; + ] ; + rdf:rest ( [ + sh:datatype rdf:HTML ; + ] [ + sh:datatype qudt:LatexString ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "Text Type Union" . + +qudt:Three-Tuple-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TupleMemberType ; + sh:minCount 0 ; + sh:path qudt:elementDatatype . + +qudt:Three-Tuple-elementTypeCount + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:hasValue 3 ; + sh:path qudt:elementTypeCount . + +qudt:Time-type + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TimeStringType ; + sh:path qudt:type . + +qudt:TimeInterval-type + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TimeStringType ; + sh:path qudt:type . + +qudt:TimeSeriesArray-dimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:int ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensions . + +qudt:TimeSeriesArray-incrementDatatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TimeStringType ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:incrementDatatype . + +qudt:TimeSeriesArray-vector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Vector ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:vector . + +qudt:TotallyOrdered + a qudt:OrderedType ; + dtype:literal "total" ; + qudt:plainTextDescription "Totally ordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Totally Ordered" . + +qudt:True + a qudt:BooleanStateType ; + dtype:code "1" ; + dtype:literal "true" ; + rdfs:isDefinedBy ; + rdfs:label "true" . + +qudt:Tuple-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TupleMemberType ; + sh:path qudt:elementDatatype . + +qudt:Tuple-elementTypeCount + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:minCount 0 ; + sh:path qudt:elementTypeCount . + +qudt:Tuple-length + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:length . + +qudt:TupleMember-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ScalarDatatype ; + sh:path qudt:elementDatatype . + +qudt:TupleMember-orderInStructure + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:orderInStructure . + +qudt:Two-Tuple-elementType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:minCount 0 ; + sh:path qudt:elementDatatype . + +qudt:Two-Tuple-elementTypeCount + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:hasValue 2 ; + sh:path qudt:elementTypeCount . + +qudt:UNARY-FUNCTION + a qudt:FunctionDatatype ; + dcterms:description "This type identifies functions that have exactly one argument."^^rdf:HTML ; + qudt:functionArity 1 ; + rdfs:isDefinedBy ; + rdfs:label "UNARY-FUNCTION" . + +qudt:UNSIGNED + a qudt:SignednessType ; + dtype:literal "unsigned" ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned" . + +qudt:Unordered + a qudt:OrderedType ; + dtype:literal "unordered" ; + qudt:plainTextDescription "Unordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Unordered" . + +qudt:UnsignedBigIntegerType-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "UI64" ; + sh:path qudt:abbreviation . + +qudt:UnsignedBigIntegerType-maxInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "2^{64}-1" ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxInclusive . + +qudt:UnsignedBigIntegerType-minInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "0" ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:minInclusive . + +qudt:UnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer Encoding" . + +qudt:UnsignedLongIntegerType-literal + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path dtype:literal . + +qudt:UnsignedLongIntegerType-maxInclusive + a sh:PropertyShape ; + sh:hasValue "2^{32}-1" ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:maxInclusive . + +qudt:UnsignedLongIntegerType-minInclusive + a sh:PropertyShape ; + sh:hasValue "0" ; + sh:or qudt:NumericTypeUnion ; + sh:path qudt:minInclusive . + +qudt:UnsignedShortIntegerType-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "UI16" ; + sh:path qudt:abbreviation . + +qudt:UnsignedShortIntegerType-maxInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "2^{16}-1" ; + sh:path qudt:maxInclusive . + +qudt:UnsignedShortIntegerType-minInclusive + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:hasValue "0" ; + sh:path qudt:minInclusive . + +qudt:UnsignedType-signedness + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SignednessType ; + sh:hasValue qudt:UNSIGNED ; + sh:path qudt:signedness . + +qudt:UserModifiableParameter + a qudt:ParameterModifiabilityType ; + dtype:code "2" ; + dtype:literal "user" ; + rdfs:comment "Parameter is modifiable by a user." ; + rdfs:isDefinedBy ; + rdfs:label "User modifiable parameter" . + +qudt:ValidateQuantityHasUnitShape + a sh:NodeShape ; + dcterms:description """ +

Specifies and checks an optional property for a quantified value. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Validate Quantity has Unit Shape" ; + sh:property qudt:MaybeQuantityPropertyShape ; + sh:property qudt:MaybeUnitPropertyShape ; + sh:severity sh:Warning ; + sh:sparql [ + sh:message "Quantity \"{$this}\" must have a unit." ; + sh:prefixes ; + sh:select """ + SELECT $this + WHERE { + $this qudt:quantity ?quantity . + FILTER NOT EXISTS {?quantity qudt:hasUnit ?unit} + } + """ ; + ] ; + sh:targetClass qudt:Array ; + sh:targetClass qudt:List ; + sh:targetClass qudt:Quantity ; + sh:targetClass qudt:Vector . + +qudt:VariableLengthIntegerType-maxBits + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:hasValue 64 ; + sh:path qudt:maxBits . + +qudt:VariableLengthIntegerType-minBits + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:hasValue 1 ; + sh:path qudt:minBits . + +qudt:VehicleCoordinateSystem-pitchRotationDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:AxialOrientationType ; + sh:maxCount 1 ; + sh:path qudt:pitchRotationDefinition . + +qudt:VehicleCoordinateSystem-rollRotationDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:AxialOrientationType ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:rollRotationDefinition . + +qudt:VehicleCoordinateSystem-yawRotationDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:AxialOrientationType ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:yawRotationDefinition . + +qudt:VisualCueEnumeration-defaultValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:VisualCue ; + sh:path qudt:defaultValue . + +qudt:WDST_DRY + a qudt:WetDryStateType ; + dtype:code "2" ; + dtype:literal "dry" ; + rdfs:isDefinedBy ; + rdfs:label "Dry" . + +qudt:WDST_WET + a qudt:WetDryStateType ; + dtype:code "1" ; + dtype:literal "wet" ; + rdfs:isDefinedBy ; + rdfs:label "Wet" . + +qudt:WordAligned + a qudt:AlignmentType ; + dtype:literal "word" ; + rdfs:isDefinedBy ; + rdfs:label "Word Aligned" . + +qudt:XSDatomicTypeUnion + a rdf:List ; + dcterms:description """ +

In XML Schema Definition (XSD) xsd:anySimpleType is the base type for all simple types. + Simple types in XSD represent atomic values without any child elements or complex structures. + All simple types are compliant with xsd:anySimpleType. +

+

In XSD, the atomic types are: xsd:string, xsd:boolean, xsd:decimal, xsd:float, + xsd:double, xsd:duration, xsd:dateTime, xsd:time, xsd:date, xsd:gYearMonth, xsd:gYear, xsd:gMonthDay, + xsd:gDay, xsd:gMonth, xsd:hexBinary, xsd:base64Binary, xsd:anyURI, xsd:QName, and xsd:NOTATION. +

"""^^rdf:HTML ; + rdf:first [ + sh:datatype xsd:anySimpleType ; + ] ; + rdf:rest ( [ + sh:datatype xsd:anySimpleType ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "XSD Atomic Type Union" . + +qudt:Yes + a qudt:YesNoType ; + dtype:literal "Y" ; + rdfs:isDefinedBy ; + rdfs:label "Yes" . + +qudt:hexbinary + a rdfs:Datatype, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "hexbinary" ; + rdfs:subClassOf xsd:string ; + sh:datatype xsd:string ; + sh:pattern "[0-9A-F]*" . + +qudt:negative + a qudt:Polarity ; + dtype:code "1" ; + dtype:literal "negative" ; + rdfs:isDefinedBy ; + rdfs:label "negative" . + +qudt:positive + a qudt:Polarity ; + dtype:code "2" ; + dtype:literal "positive" ; + rdfs:isDefinedBy ; + rdfs:label "positive" . + +xsd:dateTime + dcterms:description """ +

YYYY-MM-DDThh:mm:ss[.dd] or YYYY-DDDThh:mm:ss[.dd], where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant, 'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. + As many 'd' characters to the right of the period as required may be used to obtain the required precision. + All fields require leading zeros. +

"""^^rdf:HTML ; + rdfs:isDefinedBy . + + diff --git a/libraries/qudt/SCHEMA_QUDT.ttl b/libraries/qudt/SCHEMA_QUDT.ttl new file mode 100644 index 000000000..797baf17a --- /dev/null +++ b/libraries/qudt/SCHEMA_QUDT.ttl @@ -0,0 +1,3183 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dc: . +@prefix dcterms: . +@prefix dtype: . +@prefix prov: . +@prefix qudt: . +@prefix qudt.type: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Schema - Version 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-SCHEMA . + +qudt:Statement + a rdfs:Class ; + rdfs:isDefinedBy ; + rdfs:label "Statement" ; + rdfs:subClassOf rdf:Statement . + +qudt:AbstractQuantityKind + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind (abstract)" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty skos:broader ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:symbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:altSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexSymbol ; + ] . + +qudt:AngleUnit + a owl:Class ; + dcterms:description "All units relating to specification of angles. " ; + rdfs:isDefinedBy ; + rdfs:label "Angle unit" ; + rdfs:subClassOf qudt:DimensionlessUnit ; + skos:exactMatch . + +qudt:AspectClass + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Aspect Class" ; + rdfs:subClassOf rdfs:Class . + +qudt:BaseDimensionMagnitude + a owl:Class ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI ; + qudt:informativeReference "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ; + rdfs:comment """

A Dimension expresses a magnitude for a base quantiy kind such as mass, length and time.

+

DEPRECATED - each exponent is expressed as a property. Keep until a validaiton of this has been done.

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Base Dimension Magnitude" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasBaseQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:float ; + owl:onProperty qudt:vectorMagnitude ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:int ; + owl:onProperty qudt:hasBaseQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:int ; + owl:onProperty qudt:vectorMagnitude ; + ] . + +qudt:BinaryPrefix + a owl:Class ; + rdfs:comment "A Binary Prefix is a prefix for multiples of units in data processing, data transmission, and digital information, notably the bit and the byte, to indicate multiplication by a power of 2." ; + rdfs:isDefinedBy ; + rdfs:label "Binary Prefix" ; + rdfs:subClassOf qudt:Prefix . + +qudt:BitEncodingType + a owl:Class ; + dcterms:description "A bit encoding is a correspondence between the two possible values of a bit, 0 or 1, and some interpretation. For example, in a boolean encoding, a bit denotes a truth value, where 0 corresponds to False and 1 corresponds to True." ; + owl:oneOf ( qudt:BitEncoding ) ; + rdfs:isDefinedBy ; + rdfs:label "Bit Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:BooleanEncodingType + a owl:Class ; + owl:oneOf ( qudt:BooleanEncoding qudt:BitEncoding qudt:OctetEncoding ) ; + rdfs:isDefinedBy ; + rdfs:label "Boolean encoding type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:ByteEncodingType + a owl:Class ; + dcterms:description "This class contains the various ways that information may be encoded into bytes." ; + rdfs:isDefinedBy ; + rdfs:label "Byte Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:CardinalityType + a owl:Class ; + dcterms:description """ + In mathematics, the cardinality of a set is a measure of the number of elements of the set. + For example, the set $A = {2, 4, 6}$ contains 3 elements, and therefore $A$ has a cardinality of 3. + There are two approaches to cardinality: one which compares sets directly using bijections and injections, + and another which uses cardinal numbers. + """^^qudt:LatexString ; + owl:oneOf ( qudt:CT_COUNTABLY-INFINITE qudt:CT_FINITE qudt:CT_UNCOUNTABLE ) ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cardinal_number"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cardinality"^^xsd:anyURI ; + qudt:plainTextDescription "In mathematics, the cardinality of a set is a measure of the number of elements of the set. For example, the set 'A = {2, 4, 6}' contains 3 elements, and therefore 'A' has a cardinality of 3. There are two approaches to cardinality – one which compares sets directly using bijections and injections, and another which uses cardinal numbers." ; + rdfs:isDefinedBy ; + rdfs:label "Cardinality Type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dtype:literal ; + ] . + +qudt:CharEncodingType + a owl:Class ; + dcterms:description "The class of all character encoding schemes, each of which defines a rule or algorithm for encoding character data as a sequence of bits or bytes." ; + owl:oneOf ( qudt:CharEncoding ) ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding Type" ; + rdfs:subClassOf qudt:Encoding . + +qudt:Citation + a owl:Class ; + rdfs:comment "Provides a simple way of making citations."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Citation" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty dcterms:description ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:url ; + ] . + +qudt:Comment + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Comment" ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dcterms:description ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:rationale ; + ] . + +qudt:Concept + a owl:Class ; + rdfs:comment "The root class for all QUDT concepts."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Concept" ; + rdfs:subClassOf owl:Thing ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Rule ; + owl:onProperty qudt:hasRule ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dcterms:description ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dcterms:isReplacedBy ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:abbreviation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:deprecated ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:id ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:plainTextDescription ; + ] . + +qudt:ConstantValue + a owl:Class ; + rdfs:comment "Used to specify the values of a constant."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Constant value" ; + rdfs:subClassOf qudt:QuantityValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:exactConstant ; + ] . + +qudt:ContextualUnit + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Contextual Unit" ; + rdfs:subClassOf qudt:Unit ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty skos:broader ; + ] . + +qudt:CountingUnit + a owl:Class ; + rdfs:comment "Used for all units that express counts. Examples are Atomic Number, Number, Number per Year, Percent and Sample per Second."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Counting Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit . + +qudt:CurrencyUnit + a owl:Class ; + rdfs:comment "Currency Units have their own subclass of unit because: (a) they have additonal properites such as 'country' and (b) their URIs do not conform to the same rules as other units."^^rdf:HTML ; + rdfs:comment "Used for all units that express currency."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Currency Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:currencyCode ; + xsd:pattern "^\\d{3}$" ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:currencyExponent ; + ] . + +qudt:DataEncoding + a owl:Class ; + rdfs:comment "

Data Encoding expresses the properties that specify how data is represented at the bit and byte level. These properties are applicable to describing raw data.

"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Data Encoding" ; + rdfs:subClassOf qudt:Aspect ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Encoding ; + owl:onProperty qudt:encoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EndianType ; + owl:onProperty qudt:bitOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bitOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:byteOrder ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:encoding ; + ] . + +qudt:Datatype + a owl:Class ; + dcterms:description "A data type is a definition of a set of values (for example, \"all integers between 0 and 10\"), and the allowable operations on those values; the meaning of the data; and the way values of that type can be stored. Some types are primitive - built-in to the language, with no visible internal structure - e.g. Boolean; others are composite - constructed from one or more other types (of either kind) - e.g. lists, arrays, structures, unions. Object-oriented programming extends this with classes which encapsulate both the structure of a type and the operations that can be performed on it. Some languages provide strong typing, others allow implicit type conversion and/or explicit type conversion." ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_type"^^xsd:anyURI ; + qudt:informativeReference "http://foldoc.org/data+type"^^xsd:anyURI ; + qudt:informativeReference "http://www.princeton.edu/~achaney/tmve/wiki100k/docs/Data_type.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Datatype" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:CardinalityType ; + owl:onProperty qudt:cardinality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:basis ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:OrderedType ; + owl:onProperty qudt:orderedType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:ansiSQLName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:basis ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bounded ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:cName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:cardinality ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:id ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:javaName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:jsName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:matlabName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:microsoftSQLServerName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:mySQLName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:odbcName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:oleDBName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:oracleSQLName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:orderedType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:protocolBuffersName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:pythonName ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:vbName ; + ] . + +qudt:DateTimeStringEncodingType + a owl:Class ; + dcterms:description "Date Time encodings are logical encodings for expressing date/time quantities as strings by applying unambiguous formatting and parsing rules." ; + rdfs:isDefinedBy ; + rdfs:label "Date Time String Encoding Type" ; + rdfs:subClassOf qudt:StringEncodingType ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:allowedPattern ; + ] . + +qudt:DecimalPrefix + a owl:Class ; + rdfs:comment "A Decimal Prefix is a prefix for multiples of units that are powers of 10." ; + rdfs:isDefinedBy ; + rdfs:label "Decimal Prefix" ; + rdfs:subClassOf qudt:Prefix . + +qudt:DerivedUnit + a owl:Class ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Category:SI_derived_units"^^xsd:anyURI ; + rdfs:comment "A DerivedUnit is a type specification for units that are derived from other units."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Derived Unit" ; + rdfs:subClassOf qudt:Unit . + +qudt:DimensionlessUnit + a owl:Class ; + rdfs:comment "A Dimensionless Unit is a quantity for which all the exponents of the factors corresponding to the base quantities in its quantity dimension are zero."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Dimensionless Unit" ; + rdfs:subClassOf qudt:Unit . + +qudt:Discipline + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Discipline" ; + rdfs:subClassOf qudt:Concept . + +qudt:Encoding + a owl:Class ; + dcterms:description "An encoding is a rule or algorithm that is used to convert data from a native, or unspecified form into a specific form that satisfies the encoding rules. Examples of encodings include character encodings, such as UTF-8." ; + rdfs:isDefinedBy ; + rdfs:label "Encoding" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bytes ; + ] . + +qudt:EndianType + a owl:Class ; + owl:oneOf ( qudt.type:LittleEndian qudt.type:BigEndian ) ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Endianness"^^xsd:anyURI ; + qudt:plainTextDescription "In computing, endianness is the ordering used to represent some kind of data as a sequence of smaller units. Typical cases are the order in which integer values are stored as bytes in computer memory (relative to a given memory addressing scheme) and the transmission order over a network or other medium. When specifically talking about bytes, endianness is also referred to simply as byte order. Most computer processors simply store integers as sequences of bytes, so that, conceptually, the encoded value can be obtained by simple concatenation. For an 'n-byte' integer value this allows 'n!' (n factorial) possible representations (one for each byte permutation). The two most common of them are: increasing numeric significance with increasing memory addresses, known as little-endian, and its opposite, called big-endian." ; + rdfs:isDefinedBy ; + rdfs:label "Endian Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:EnumeratedValue + a owl:Class ; + dcterms:description """

This class is for all enumerated and/or coded values. For example, it contains the dimension objects that are the basis elements in some abstract vector space associated with a quantity kind system. Another use is for the base dimensions for quantity systems. Each quantity kind system that defines a base set has a corresponding ordered enumeration whose elements are the dimension objects for the base quantity kinds. The order of the dimensions in the enumeration determines the canonical order of the basis elements in the corresponding abstract vector space.

+ +

An enumeration is a set of literals from which a single value is selected. Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. Enumerated values are also controlled vocabularies and as such need to be standardized. Without this consistency enumeration literals can be stated differently and result in data conflicts and misinterpretations.

+ +

The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. An order attribute can also be given on the enumeration elements. An enumeration can itself be a member of an enumeration. This allows enumerations to be enumerated in a selection. Enumerations are also subclasses of Scalar Datatype. This allows them to be used as the reference of a datatype specification.

"""^^rdf:HTML ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Enumerated Value" ; + rdfs:subClassOf dtype:EnumeratedValue ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dcterms:description ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:abbreviation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:symbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:int ; + owl:onProperty qudt:altSymbol ; + ] . + +qudt:Enumeration + a owl:Class ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Enumeration"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumerated_type"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ; + rdfs:comment """

An enumeration is a set of literals from which a single value is selected. Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. Enumerated values are also controlled vocabularies and as such need to be standardized. Without this consistency enumeration literals can be stated differently and result in data conflicts and misinterpretations.

+ +

The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. An order attribute can also be given on the enumeration elements. An enumeration can itself be a member of an enumeration. This allows enumerations to be enumerated in a selection. Enumerations are also subclasses of Scalar Datatype. This allows them to be used as the reference of a datatype specification.

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Enumeration" ; + rdfs:subClassOf dtype:Enumeration ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EnumeratedValue ; + owl:onProperty qudt:default ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EnumeratedValue ; + owl:onProperty qudt:element ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:abbreviation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:default ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:element ; + ] . + +qudt:EnumerationScale + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Enumeration scale" ; + rdfs:subClassOf dtype:Enumeration ; + rdfs:subClassOf qudt:Scale . + +qudt:Figure + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Figure" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:imageLocation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:figureCaption ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:figureLabel ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:height ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:image ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:landscape ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:width ; + ] . + +qudt:FloatingPointEncodingType + a owl:Class ; + dcterms:description "A \"Encoding\" with the following instance(s): \"Double Precision Encoding\", \"Single Precision Real Encoding\"." ; + rdfs:isDefinedBy ; + rdfs:label "Floating Point Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:IntegerEncodingType + a owl:Class ; + dcterms:description "The encoding scheme for integer types" ; + owl:oneOf ( qudt:LongUnsignedIntegerEncoding qudt:ShortUnsignedIntegerEncoding + qudt:ShortUnsignedIntegerEncoding qudt:SignedIntegerEncoding qudt:UnsignedIntegerEncoding ) ; + rdfs:isDefinedBy ; + rdfs:label "Integer Encoding" ; + rdfs:subClassOf qudt:Encoding . + +qudt:IntervalScale + a owl:Class ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:comment """

The interval type allows for the degree of difference between items, but not the ratio between them. Examples include temperature with the Celsius scale, which has two defined points (the freezing and boiling point of water at specific conditions) and then separated into 100 intervals, date when measured from an arbitrary epoch (such as AD), percentage such as a percentage return on a stock,[16] location in Cartesian coordinates, and direction measured in degrees from true or magnetic north. Ratios are not meaningful since 20 °C cannot be said to be "twice as hot" as 10 °C, nor can multiplication/division be carried out between any two dates directly. However, ratios of differences can be expressed; for example, one difference can be twice another. Interval type variables are sometimes also called "scaled variables", but the formal mathematical term is an affine space (in this case an affine line).

+

Characteristics: median, percentile & Monotonic increasing (order (<) & totally ordered set

"""^^rdf:HTML ; + rdfs:comment "median, percentile & Monotonic increasing (order (<)) & totally ordered set"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Interval scale" ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale . + +qudt:LogarithmicUnit + a owl:Class ; + rdfs:comment "Logarithmic units are abstract mathematical units that can be used to express any quantities (physical or mathematical) that are defined on a logarithmic scale, that is, as being proportional to the value of a logarithm function. Examples of logarithmic units include common units of information and entropy, such as the bit, and the byte, as well as units of relative signal strength magnitude such as the decibel."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Logarithmic Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit . + +qudt:MathsFunctionType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Maths Function Type" ; + rdfs:subClassOf qudt:Concept . + +qudt:NIST_SP811_Comment + a owl:Class ; + dc:description "National Institute of Standards and Technology (NIST) Special Publication 811 Comments on some quantities and their units" ; + rdfs:isDefinedBy ; + rdfs:label "NIST SP~811 Comment" ; + rdfs:subClassOf qudt:Comment . + +qudt:NominalScale + a owl:Class ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:comment "A nominal scale differentiates between items or subjects based only on their names or (meta-)categories and other qualitative classifications they belong to; thus dichotomous data involves the construction of classifications as well as the classification of items. Discovery of an exception to a classification can be viewed as progress. Numbers may be used to represent the variables but the numbers do not have numerical value or relationship: For example, a Globally unique identifier. Examples of these classifications include gender, nationality, ethnicity, language, genre, style, biological species, and form. In a university one could also use hall of affiliation as an example."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Nominal scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale . + +qudt:NumericUnion + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Numeric union" ; + rdfs:subClassOf dtype:numericUnion ; + rdfs:subClassOf qudt:Concept . + +qudt:OrderedType + a owl:Class ; + dcterms:description "Describes how a data or information structure is ordered." ; + owl:oneOf ( qudt:Unordered qudt:PartiallyOrdered qudt:TotallyOrdered ) ; + rdfs:isDefinedBy ; + rdfs:label "Ordered type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty dtype:literal ; + ] . + +qudt:OrdinalScale + a owl:Class ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:comment "The ordinal type allows for rank order (1st, 2nd, 3rd, etc.) by which data can be sorted, but still does not allow for relative degree of difference between them. Examples include, on one hand, dichotomous data with dichotomous (or dichotomized) values such as 'sick' vs. 'healthy' when measuring health, 'guilty' vs. 'innocent' when making judgments in courts, 'wrong/false' vs. 'right/true' when measuring truth value, and, on the other hand, non-dichotomous data consisting of a spectrum of values, such as 'completely agree', 'mostly agree', 'mostly disagree', 'completely disagree' when measuring opinion."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ordinal scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:order ; + ] . + +qudt:Organization + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Organization" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:url ; + ] . + +qudt:PhysicalConstant + a owl:Class ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Physical_constant"^^xsd:anyURI ; + rdfs:comment "A physical constant is a physical quantity that is generally believed to be both universal in nature and constant in time. It can be contrasted with a mathematical constant, which is a fixed numerical value but does not directly involve any physical measurement. There are many physical constants in science, some of the most widely recognized being the speed of light in vacuum c, Newton's gravitational constant G, Planck's constant h, the electric permittivity of free space ε0, and the elementary charge e. Physical constants can take many dimensional forms, or may be dimensionless depending on the system of quantities and units used."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Physical Constant" ; + rdfs:subClassOf qudt:Quantity ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:PhysicalConstant ; + owl:onProperty qudt:exactMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:hasDimensionVector ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:applicableSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:applicableUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:boolean ; + owl:onProperty qudt:exactConstant ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:mathMLdefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:int ; + owl:onProperty qudt:altSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dbpediaMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:isoNormativeReference ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:normativeReference ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:symbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:ucumCode ; + ] . + +qudt:PlaneAngleUnit + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Plane Angle Unit" ; + rdfs:subClassOf qudt:AngleUnit . + +qudt:Prefix + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Prefix" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Prefix ; + owl:onProperty qudt:exactMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:UCUMcs-term ; + owl:onProperty qudt:ucumCode ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:prefixMultiplier ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:int ; + owl:onProperty qudt:altSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:symbol ; + ] . + +qudt:Quantifiable + a owl:Class ; + rdfs:comment "

Quantifiable ascribes to some thing the capability of being measured, observed, or counted.

"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantifiable" ; + rdfs:subClassOf qudt:Aspect ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:DataEncoding ; + owl:onProperty qudt:dataEncoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Datatype ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:decimal ; + owl:onProperty qudt:standardUncertainty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty qudt:relativeStandardUncertainty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:double ; + owl:onProperty qudt:standardUncertaintySN ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:datatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:relativeStandardUncertainty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:standardUncertainty ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dataEncoding ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:hasUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:value ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:valueSN ; + ] . + +qudt:Quantity + a owl:Class ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quantity"^^xsd:anyURI ; + rdfs:comment """

A quantity is the measurement of an observable property of a particular object, event, or physical system. + A quantity is always associated with the context of measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the + underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific + quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Examples of physical quantities include physical constants, such as + the speed of light in a vacuum, Planck's constant, the electric permittivity of free space, and the fine structure constant.

+

In other words, quantities are quantifiable aspects of the world, such as the duration of a movie, the distance between two points, +velocity of a car, the pressure of the atmosphere, and a person's weight; and units are used to describe their numerical measure.

+

Many quantity kinds are related to each other by various physical laws, and as a result, the associated units of some quantity +kinds can be expressed as products (or ratios) of powers of other quantity kinds (e.g., momentum is mass times velocity and velocity is defined as distance +divided by time). In this way, some quantities can be calculated from other measured quantities using their associations to the quantity kinds in these +expressions. These quantity kind relationships are also discussed in dimensional analysis. Those that cannot be so expressed can be regarded +as "fundamental" in this sense.

+

A quantity is distinguished from a "quantity kind" in that the former carries a value and the latter is a type specifier.

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Quantifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityValue ; + owl:onProperty qudt:quantityValue ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:boolean ; + owl:onProperty qudt:isDeltaQuantity ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:hasQuantityKind ; + ] . + +qudt:QuantityKind + a owl:Class ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=112-01-04"^^xsd:anyURI ; + rdfs:comment "A Quantity Kind is any observable property that can be measured and quantified numerically. Familiar examples include physical properties such as length, mass, time, force, energy, power, electric charge, etc. Less familiar examples include currency, interest rate, price to earning ratio, and information capacity."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind" ; + rdfs:subClassOf qudt:AbstractQuantityKind ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:exactMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:hasDimensionVector ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector_SI ; + owl:onProperty qudt:dimensionVectorForSI ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:string ; + owl:onProperty qudt:iec61360Code ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionVectorForSI ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:mathMLdefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:qkdvDenominator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:qkdvNumerator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableCGSUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableISOUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableImperialUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableSIUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableUSCustomaryUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:applicableUnit ; + ] . + +qudt:QuantityKindDimensionVector + a owl:Class ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI ; + qudt:informativeReference "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ; + rdfs:comment """

A Quantity Kind Dimension Vector describes the dimensionality of a quantity kind in the context of a system of units. In the SI system of units, the dimensions of a quantity kind are expressed as a product of the basic physical dimensions mass ($M$), length ($L$), time ($T$) current ($I$), amount of substance ($N$), luminous intensity ($J$) and absolute temperature ($\\theta$) as $dim \\, Q = L^{\\alpha} \\, M^{\\beta} \\, T^{\\gamma} \\, I ^{\\delta} \\, \\theta ^{\\epsilon} \\, N^{\\eta} \\, J ^{\\nu}$.

+ +

The rational powers of the dimensional exponents, $\\alpha, \\, \\beta, \\, \\gamma, \\, \\delta, \\, \\epsilon, \\, \\eta, \\, \\nu$, are positive, negative, or zero.

+ +

For example, the dimension of the physical quantity kind $\\it{speed}$ is $\\boxed{length/time}$, $L/T$ or $LT^{-1}$, and the dimension of the physical quantity kind force is $\\boxed{mass \\times acceleration}$ or $\\boxed{mass \\times (length/time)/time}$, $ML/T^2$ or $MLT^{-2}$ respectively.

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind Dimension Vector" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasReferenceQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForAmountOfSubstance ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForElectricCurrent ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForLength ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForLuminousIntensity ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForMass ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForThermodynamicTemperature ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionExponentForTime ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dimensionlessExponent ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexSymbol ; + ] . + +qudt:QuantityKindDimensionVector_CGS + a owl:Class ; + rdfs:comment "A CGS Dimension Vector is used to specify the dimensions for a C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_CGS-EMU + a owl:Class ; + rdfs:comment "A CGS EMU Dimension Vector is used to specify the dimensions for EMU C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS EMU Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-ESU + a owl:Class ; + rdfs:comment "A CGS ESU Dimension Vector is used to specify the dimensions for ESU C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS ESU Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-GAUSS + a owl:Class ; + rdfs:comment "A CGS GAUSS Dimension Vector is used to specify the dimensions for Gaussioan C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS GAUSS Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-LH + a owl:Class ; + rdfs:comment "A CGS LH Dimension Vector is used to specify the dimensions for Lorentz-Heaviside C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS LH Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_ISO + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "ISO Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_Imperial + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Imperial dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_SI + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind Dimension vector (SI)" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityType + a owl:Class ; + dcterms:description """ + A $\\textit{Quantity Type}$ is an enumeration of quantity kinds. + It specializes $\\boxed{dtype:EnumeratedValue}$ by constrinaing $\\boxed{dtype:value}$ to instances of $\\boxed{qudt:QuantityKind}$. + """^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "Quantity type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty dtype:value ; + ] . + +qudt:QuantityValue + a owl:Class ; + rdfs:comment "A Quantity Value expresses the magnitude and kind of a quantity and is given by the product of a numerical value n and a unit of measure U. The number multiplying the unit is referred to as the numerical value of the quantity expressed in that unit. Refer to NIST SP 811 section 7 for more on quantity values."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity value" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Quantifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:hasUnit ; + ] . + +qudt:RatioScale + a owl:Class ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:comment "The ratio type takes its name from the fact that measurement is the estimation of the ratio between a magnitude of a continuous quantity and a unit magnitude of the same kind (Michell, 1997, 1999). A ratio scale possesses a meaningful (unique and non-arbitrary) zero value. Most measurement in the physical sciences and engineering is done on ratio scales. Examples include mass, length, duration, plane angle, energy and electric charge. In contrast to interval scales, ratios are now meaningful because having a non-arbitrary zero point makes it meaningful to say, for example, that one object has \"twice the length\" of another (= is \"twice as long\"). Very informally, many ratio scales can be described as specifying \"how much\" of something (i.e. an amount or magnitude) or \"how many\" (a count). The Kelvin temperature scale is a ratio scale because it has a unique, non-arbitrary zero point called absolute zero."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Ratio scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:subClassOf qudt:Scale . + +qudt:Rule + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Rule" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:RuleType ; + owl:onProperty qudt:ruleType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:rationale ; + ] . + +qudt:RuleType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Rule Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ScalarDatatype + a owl:Class ; + dcterms:description "Scalar data types are those that have a single value. The permissible values are defined over a domain that may be integers, float, character or boolean. Often a scalar data type is referred to as a primitive data type." ; + rdfs:isDefinedBy ; + rdfs:label "Scalar Datatype" ; + rdfs:subClassOf qudt:Datatype ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom rdfs:Datatype ; + owl:onProperty qudt:rdfsDatatype ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bits ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:bytes ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:length ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxExclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:maxInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:minExclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:minInclusive ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty qudt:rdfsDatatype ; + ] . + +qudt:Scale + a owl:Class ; + rdfs:comment "Scales (also called \"scales of measurement\" or \"levels of measurement\") are expressions that typically refer to the theory of scale types."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Scale" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:MathsFunctionType ; + owl:onProperty qudt:permissibleMaths ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:ScaleType ; + owl:onProperty qudt:scaleType ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:TransformType ; + owl:onProperty qudt:permissibleTransformation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dataStructure ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:scaleType ; + ] . + +qudt:ScaleType + a owl:Class ; + qudt:plainTextDescription "Scales, or scales of measurement (or categorization) provide ways of quantifying measurements, values and other enumerated values according to a normative frame of reference. Four different types of scales are typically used. These are interval, nominal, ordinal and ratio scales." ; + rdfs:isDefinedBy ; + rdfs:label "Scale type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:MathsFunctionType ; + owl:onProperty qudt:permissibleMaths ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:TransformType ; + owl:onProperty qudt:permissibleTransformation ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dataStructure ; + ] . + +qudt:SolidAngleUnit + a owl:Class ; + dcterms:description "The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S's projection onto the sphere. A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi." ; + rdfs:isDefinedBy ; + rdfs:label "Solid Angle Unit" ; + rdfs:subClassOf qudt:AngleUnit . + +qudt:Symbol + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Symbol" ; + rdfs:subClassOf qudt:Concept . + +qudt:SystemOfQuantityKinds + a owl:Class ; + rdfs:comment "A system of quantity kinds is a set of one or more quantity kinds together with a set of zero or more algebraic equations that define relationships between quantity kinds in the set. In the physical sciences, the equations relating quantity kinds are typically physical laws and definitional relations, and constants of proportionality. Examples include Newton’s First Law of Motion, Coulomb’s Law, and the definition of velocity as the instantaneous change in position. In almost all cases, the system identifies a subset of base quantity kinds. The base set is chosen so that all other quantity kinds of interest can be derived from the base quantity kinds and the algebraic equations. If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind. From a scientific point of view, the division of quantities into base quantities and derived quantities is a matter of convention."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "System of Quantity Kinds" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Enumeration ; + owl:onProperty qudt:baseDimensionEnumeration ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasBaseQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:systemDerivedQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:hasUnitSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:baseDimensionEnumeration ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:hasQuantityKind ; + ] . + +qudt:SystemOfUnits + a owl:Class ; + qudt:informativeReference "http://dbpedia.org/resource/Category:Systems_of_units"^^xsd:anyURI ; + qudt:informativeReference "http://www.ieeeghn.org/wiki/index.php/System_of_Measurement_Units"^^xsd:anyURI ; + rdfs:comment "A system of units is a set of units which are chosen as the reference scales for some set of quantity kinds together with the definitions of each unit. Units may be defined by experimental observation or by proportion to another unit not included in the system. If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "System of Units" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:PhysicalConstant ; + owl:onProperty qudt:applicablePhysicalConstant ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Prefix ; + owl:onProperty qudt:prefix ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasAllowedUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasBaseUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasCoherentUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasDefinedUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasDerivedCoherentUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasDerivedUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:hasUnit ; + ] . + +qudt:TransformType + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "Transform type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + skos:prefLabel "Transform type" . + +qudt:Unit + a owl:Class ; + dcterms:description """ + A unit of measure, or unit, is a particular quantity value that has been chosen as a scale for measuring other quantities the same kind (more generally of equivalent dimension). + For example, the meter is a quantity of length that has been rigorously defined and standardized by the BIPM (International Board of Weights and Measures). + Any measurement of the length can be expressed as a number multiplied by the unit meter. + More formally, the value of a physical quantity Q with respect to a unit (U) is expressed as the scalar multiple of a real number (n) and U, as $Q = nU$. + """^^qudt:LatexString ; + qudt:informativeReference "http://dbpedia.org/resource/Category:Units_of_measure"^^xsd:anyURI ; + qudt:informativeReference "http://www.allmeasures.com/Fullconversion.asp"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Unit" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Prefix ; + owl:onProperty qudt:prefix ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:hasDimensionVector ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:qkdvDenominator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKindDimensionVector ; + owl:onProperty qudt:qkdvNumerator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:applicableSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:definedUnitOfSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:derivedCoherentUnitOfSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:SystemOfUnits ; + owl:onProperty qudt:derivedUnitOfSystem ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:UCUMcs ; + owl:onProperty qudt:ucumCode ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:exactMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:onProperty qudt:hasFactorUnit ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Unit ; + owl:onProperty qudt:scalingOf ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:string ; + owl:onProperty qudt:iec61360Code ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:string ; + owl:onProperty qudt:udunitsCode ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom xsd:string ; + owl:onProperty qudt:uneceCommonCode ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:conversionMultiplier ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:factorUnitScalar ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:conversionMultiplierSN ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:conversionOffset ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:int ; + owl:onProperty qudt:conversionOffsetSN ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:hasDimensionVector ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:mathMLdefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:qkdvDenominator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:maxCardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:qkdvNumerator ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:int ; + owl:onProperty qudt:altSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexDefinition ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:latexSymbol ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:siUnitsExpression ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:symbol ; + ] . + +qudt:UserQuantityKind + a owl:Class ; + rdfs:isDefinedBy ; + rdfs:label "User Quantity Kind" ; + rdfs:subClassOf qudt:AbstractQuantityKind ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:QuantityKind ; + owl:onProperty qudt:hasQuantityKind ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:hasQuantityKind ; + ] . + +dcterms:contributor + a rdf:Property ; + rdfs:label "contributor" . + +dcterms:created + a rdf:Property ; + rdfs:label "created" ; + rdfs:range xsd:date . + +dcterms:modified + a rdf:Property ; + rdfs:label "modified" ; + rdfs:range xsd:date . + +prov:wasDerivedFrom + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "was derived from" ; + rdfs:range qudt:Concept . + +qudt:ansiSQLName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ANSI SQL Name" ; + rdfs:range xsd:string . + +qudt:bits + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "bits" ; + rdfs:range xsd:integer . + +qudt:bytes + a owl:DatatypeProperty, rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "bytes" ; + rdfs:range xsd:integer . + +qudt:cName + a rdf:Property ; + rdfs:comment "Datatype name in the C programming language" ; + rdfs:isDefinedBy ; + rdfs:label "C Language name" ; + rdfs:range xsd:string . + +qudt:length + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "length" ; + rdfs:range xsd:integer . + +qudt:minExclusive + a owl:DatatypeProperty, rdf:Property ; + dcterms:description "minExclusive is the exclusive lower bound of the value space for a datatype with the ordered property. The value of minExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "min exclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:oracleSQLName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "ORACLE SQL name" ; + rdfs:range xsd:string . + +qudt:protocolBuffersName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "protocol buffers name" ; + rdfs:range xsd:string . + +qudt:pythonName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "python name" ; + rdfs:range xsd:string . + +qudt:vbName + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Vusal Basic name" ; + rdfs:range xsd:string . + +dcterms:isReplacedBy + a owl:ObjectProperty ; + rdfs:label "is replaced by" . + +qudt:applicableCGSUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable CGS unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableISOUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable ISO unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableImperialUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable Imperial unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicablePhysicalConstant + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable physical constant" . + +qudt:applicablePlanckUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable Planck unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableSIUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable SI unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure with a unit system that may or may not define the unit, but within which the unit is compatible."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "applicable system" . + +qudt:applicableUSCustomaryUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "applicable US Customary unit" ; + rdfs:range qudt:Unit ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableUnit + a owl:ObjectProperty ; + dcterms:description "See https://github.com/qudt/qudt-public-repo/wiki/Advanced-User-Guide#4-computing-applicable-units-for-a-quantitykind on how `qudt:applicableUnit` is computed from `qudt:hasQuantityKind` and then materialized"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "applicable unit" ; + rdfs:range qudt:Unit . + +qudt:baseDimensionEnumeration + a owl:ObjectProperty, owl:FunctionalProperty ; + dcterms:description "This property associates a system of quantities with an enumeration that enumerates the base dimensions of the system in canonical order."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "base dimension enumeration" ; + rdfs:range qudt:Enumeration . + +qudt:baseUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure to the system of units in which it is defined as a base unit for the system. The base units of a system are used to define the derived units of the system by expressing the derived units as products of the base units raised to a rational power."^^rdf:HTML ; + owl:inverseOf qudt:hasBaseUnit ; + rdfs:isDefinedBy ; + rdfs:label "is base unit of system" ; + rdfs:subPropertyOf qudt:definedUnitOfSystem . + +qudt:basis + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "basis" . + +qudt:belongsToSystemOfQuantities + a owl:ObjectProperty ; + rdfs:domain qudt:QuantityKind ; + rdfs:isDefinedBy ; + rdfs:label "belongs to system of quantities" ; + rdfs:range qudt:SystemOfQuantityKinds . + +qudt:bitOrder + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "bit order" ; + rdfs:range qudt:EndianType . + +qudt:byteOrder + a owl:ObjectProperty ; + dcterms:description "Byte order is an enumeration of two values: 'Big Endian' and 'Little Endian' and is used to denote whether the most signiticant byte is either first or last, respectively." ; + rdfs:isDefinedBy ; + rdfs:label "byte order" ; + rdfs:range qudt:EndianType . + +qudt:cardinality + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "cardinality" . + +qudt:categorizedAs + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "categorized as" . + +qudt:coherentUnitSystem + a owl:ObjectProperty, owl:FunctionalProperty ; + dcterms:description """ + A system of units is coherent with respect to a system of quantities and equations if the system of units is chosen in such a way that the equations between numerical values have exactly the same form (including the numerical factors) as the corresponding equations between the quantities. + In such a coherent system, no numerical factor other than the number 1 ever occurs in the expressions for the derived units in terms of the base units. + For example, the $newton$ and the $joule$. + These two are, respectively, the force that causes one kilogram to be accelerated at 1 metre per (1) second per (1) second, and the work done by 1 newton acting over 1 metre. + Being coherent refers to this consistent use of 1. + In the old c.g.s. system , with its base units the centimetre and the gram, the corresponding coherent units were the dyne and the erg, + respectively the force that causes 1 gram to be accelerated at 1 centimetre per (1) second per (1) second, and the work done by 1 dyne acting over 1 centimetre. + So $1\\,newton = 10^5 dyne$, $1 joule = 10^7 erg$, making each of the four compatible in a decimal sense within its respective other system, but not coherent therein.

+ """^^qudt:LatexString ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Coherence_(units_of_measurement)"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "coherent unit system" ; + rdfs:subPropertyOf qudt:hasUnitSystem . + +qudt:dataEncoding + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "data encoding" ; + rdfs:range qudt:DataEncoding . + +qudt:datatype + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "datatype" ; + rdfs:label "element type" . + +qudt:default + a owl:ObjectProperty ; + dcterms:description "The default element in an enumeration"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "default" . + +qudt:definedUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure with the unit system that defines the unit."^^rdf:HTML ; + owl:inverseOf qudt:hasDefinedUnit ; + rdfs:isDefinedBy ; + rdfs:label "defined unit of system" ; + rdfs:subPropertyOf qudt:isUnitOfSystem . + +qudt:denominatorDimensionVector + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "denominator dimension vector" ; + rdfs:range qudt:QuantityKindDimensionVector . + +qudt:derivedCoherentUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure to the unit system in which the unit is derived from the system's base units with a proportionality constant of one."^^rdf:HTML ; + owl:inverseOf qudt:hasDerivedCoherentUnit ; + rdfs:isDefinedBy ; + rdfs:label "is coherent derived unit of system" ; + rdfs:subPropertyOf qudt:definedUnitOfSystem ; + rdfs:subPropertyOf qudt:derivedUnitOfSystem . + +qudt:derivedNonCoherentUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure to the unit system in which the unit is derived from the system's base units without proportionality constant of one."^^rdf:HTML ; + owl:inverseOf qudt:hasDerivedNonCoherentUnit ; + rdfs:isDefinedBy ; + rdfs:label "is non-coherent derived unit of system" ; + rdfs:range qudt:SystemOfUnits ; + rdfs:subPropertyOf qudt:derivedUnitOfSystem . + +qudt:derivedUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure to the system of units in which it is defined as a derived unit. That is, the derived unit is defined as a product of the base units for the system raised to some rational power."^^rdf:HTML ; + owl:inverseOf qudt:hasDerivedUnit ; + rdfs:isDefinedBy ; + rdfs:label "is derived unit of system" ; + rdfs:subPropertyOf qudt:isUnitOfSystem . + +qudt:dimensionInverse + a owl:ObjectProperty, owl:FunctionalProperty, owl:InverseFunctionalProperty, owl:SymmetricProperty ; + owl:inverseOf qudt:dimensionInverse ; + rdfs:isDefinedBy ; + rdfs:label "dimension inverse" . + +qudt:dimensionVectorForSI + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension vector for SI" ; + rdfs:range qudt:QuantityKindDimensionVector_SI . + +qudt:element + a owl:ObjectProperty ; + dcterms:description "An element of an enumeration"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "element" . + +qudt:elementKind + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "element kind" . + +qudt:encoding + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "encoding" . + +qudt:enumeratedValue + a owl:ObjectProperty ; + rdfs:label "enumerated value" ; + rdfs:range qudt:EnumeratedValue . + +qudt:enumeration + a owl:ObjectProperty ; + rdfs:label "enumeration" ; + rdfs:range qudt:Enumeration . + +qudt:exactMatch + a owl:ObjectProperty, qudt:SymmetricRelation ; + rdfs:isDefinedBy ; + rdfs:label "exact match" . + +qudt:exponent + a owl:ObjectProperty ; + dcterms:description "This property relates a factor unit its exponent"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "exponent" . + +qudt:figure + a owl:ObjectProperty ; + dcterms:description "Provides a link to an image."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "figure" ; + rdfs:range qudt:Figure . + +qudt:hasAllowedUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a unit system with a unit of measure that is not defined by or part of the system, but is allowed for use within the system. An allowed unit must be convertible to some dimensionally eqiuvalent unit that is defined by the system."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "allowed unit" ; + rdfs:subPropertyOf qudt:hasUnit . + +qudt:hasBaseQuantityKind + a owl:ObjectProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "has base quantity kind" ; + rdfs:subPropertyOf qudt:hasQuantityKind . + +qudt:hasBaseUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a system of units to a base unit defined within the system. The base units of a system are used to define the derived units of the system by expressing the derived units as products of the base units raised to a rational power."^^rdf:HTML ; + owl:inverseOf qudt:baseUnitOfSystem ; + rdfs:isDefinedBy ; + rdfs:label "base unit" ; + rdfs:subPropertyOf qudt:hasCoherentUnit . + +qudt:hasCoherentUnit + a owl:ObjectProperty ; + dcterms:description "A coherent unit of measurement for a unit system is a defined unit that may be expressed as a product of powers of the system's base units with the proportionality factor of one."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "coherent unit" ; + rdfs:subPropertyOf qudt:hasDefinedUnit . + +qudt:hasDefinedUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a unit system with a unit of measure that is defined by the system."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "defined unit" ; + rdfs:subPropertyOf qudt:hasUnit . + +qudt:hasDenominatorPart + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has quantity kind dimension vector denominator part" . + +qudt:hasDerivedCoherentUnit + a owl:ObjectProperty ; + owl:inverseOf qudt:derivedCoherentUnitOfSystem ; + rdfs:isDefinedBy ; + rdfs:label "derived coherent unit" ; + rdfs:subPropertyOf qudt:hasCoherentUnit ; + rdfs:subPropertyOf qudt:hasDerivedUnit . + +qudt:hasDerivedNonCoherentUnit + a owl:ObjectProperty ; + owl:inverseOf qudt:derivedNonCoherentUnitOfSystem ; + rdfs:isDefinedBy ; + rdfs:label "has coherent derived unit" ; + rdfs:subPropertyOf qudt:hasDerivedUnit . + +qudt:hasDerivedUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a system of units to a unit of measure that is defined within the system in terms of the base units for the system. That is, the derived unit is defined as a product of the base units for the system raised to some rational power."^^rdf:HTML ; + owl:inverseOf qudt:derivedUnitOfSystem ; + rdfs:isDefinedBy ; + rdfs:label "derived unit" . + +qudt:hasDimension + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has dimension" . + +qudt:hasDimensionExpression + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension expression" . + +qudt:hasDimensionVector + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has dimension vector" ; + rdfs:range qudt:QuantityKindDimensionVector . + +qudt:hasFactorUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a derived unit to one of its constituent factor units"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "hasFactorUnit" . + +qudt:hasNumeratorPart + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has quantity kind dimension vector numerator part" . + +qudt:hasPrefixUnit + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "prefix unit" ; + rdfs:subPropertyOf qudt:hasDefinedUnit . + +qudt:hasQuantity + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has quantity" ; + rdfs:range qudt:Quantity . + +qudt:hasQuantityKind + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has quantity kind" ; + rdfs:range qudt:QuantityKind . + +qudt:hasReferenceQuantityKind + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has reference quantity kind" . + +qudt:hasRule + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "has rule" . + +qudt:hasUnit + a owl:ObjectProperty ; + dcterms:description "This property relates a factor unit its unit"^^rdf:HTML ; + dcterms:description "This property relates a factor unit to its unit or a system of units with a unit of measure that is either a) defined by the system, or b) accepted for use by the system and is convertible to a unit of equivalent dimension that is defined by the system. Systems of units may distinguish between base and derived units. Base units are the units which measure the base quantities for the corresponding system of quantities. The base units are used to define units for all other quantities as products of powers of the base units. Such units are called derived units for the system."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "has unit" ; + rdfs:label "hasUnit" . + +qudt:hasUnitSystem + a owl:ObjectProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "has unit system" . + +qudt:hasVocabulary + a owl:ObjectProperty ; + qudt:plainTextDescription "Used to relate a class to one or more graphs where vocabularies for the class are defined." ; + rdfs:isDefinedBy ; + rdfs:label "has vocabulary" ; + rdfs:range owl:Ontology . + +qudt:isDimensionInSystem + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "is dimension in system" . + +qudt:isUnitOfSystem + a owl:ObjectProperty ; + dcterms:description "This property relates a unit of measure with a system of units that either a) defines the unit or b) allows the unit to be used within the system."^^rdf:HTML ; + rdfs:domain qudt:Unit ; + rdfs:isDefinedBy ; + rdfs:label "is unit of system" ; + rdfs:range qudt:SystemOfUnits . + +qudt:numeratorDimensionVector + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "numerator dimension vector" ; + rdfs:range qudt:QuantityKindDimensionVector . + +qudt:omUnit + a owl:ObjectProperty ; + rdfs:domain qudt:Unit ; + rdfs:isDefinedBy ; + rdfs:label "om unit" . + +qudt:orderedType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "ordered type" . + +qudt:permissibleMaths + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "permissible maths" . + +qudt:permissibleTransformation + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "permissible transformation" . + +qudt:prefix + a owl:ObjectProperty ; + rdfs:comment "Associates a unit with the appropriate prefix, if any." ; + rdfs:isDefinedBy ; + rdfs:label "prefix" ; + rdfs:range qudt:Prefix . + +qudt:qkdvDenominator + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "denominator dimension vector" ; + rdfs:range qudt:QuantityKindDimensionVector . + +qudt:qkdvNumerator + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "numerator dimension vector" ; + rdfs:range qudt:QuantityKindDimensionVector . + +qudt:quantity + a owl:ObjectProperty ; + dcterms:description "a property to relate an observable thing with a quantity (qud:Quantity)"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "quantity" . + +qudt:quantityValue + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "quantity value" ; + rdfs:range qudt:QuantityValue . + +qudt:reference + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "reference" . + +qudt:referenceUnit + a owl:ObjectProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "reference unit" . + +qudt:relevantQuantityKind + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "relevant quantity kind" ; + rdfs:range qudt:QuantityKind . + +qudt:relevantUnit + a owl:ObjectProperty ; + rdfs:comment "This property is used for qudt:Discipline instances to identify the Unit instances that are used within a given discipline." ; + rdfs:isDefinedBy ; + rdfs:label "Relevant Unit" ; + rdfs:range qudt:Unit . + +qudt:ruleType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "rule type" . + +qudt:scaleType + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "scale type" . + +qudt:scalingOf + a owl:ObjectProperty ; + dcterms:description "This property relates a unit that is scaled to the base unit that its qudt:conversionMultiplier converts it to"^^rdf:HTML ; + dcterms:description "This property relates a unit to another unit it is scaled from"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "scalingOf" . + +qudt:siExactMatch + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "Individual from SI Reference Point" . + +qudt:systemDefinition + a owl:ObjectProperty, owl:TransitiveProperty ; + rdfs:isDefinedBy ; + rdfs:label "system definition" . + +qudt:systemDerivedQuantityKind + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "system derived quantity kind" ; + rdfs:subPropertyOf qudt:hasQuantityKind . + +qudt:systemDimension + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "system dimension" . + +qudt:unitFor + a owl:ObjectProperty ; + owl:inverseOf qudt:hasUnit ; + rdfs:isDefinedBy ; + rdfs:label "unit for" . + +qudt:valueQuantity + a owl:ObjectProperty ; + owl:inverseOf qudt:quantityValue ; + rdfs:isDefinedBy ; + rdfs:label "value for quantity" . + +voag:supersededBy + a owl:ObjectProperty ; + rdfs:isDefinedBy ; + rdfs:label "superseded by" . + +dcterms:description + a owl:DatatypeProperty ; + rdfs:label "description" . + +dtype:literal + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "literal" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf dtype:literal . + +qudt:abbreviation + a owl:DatatypeProperty ; + dcterms:description "An abbreviation for a unit is a short ASCII string that is used in place of the full name for the unit in contexts where non-ASCII characters would be problematic, or where using the abbreviation will enhance readability. When a power of abase unit needs to be expressed, such as squares this can be done using abbreviations rather than symbols. For example, sq ft means square foot, and cu ft means cubic foot."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "abbreviation" ; + rdfs:range xsd:string . + +qudt:acronym + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "acronym" ; + rdfs:range xsd:string . + +qudt:allowedPattern + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "allowed pattern" . + +qudt:altSymbol + a owl:DatatypeProperty ; + dcterms:description "An alternative symbol"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "alt symbol" ; + rdfs:subPropertyOf dtype:literal . + +qudt:bounded + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "bounded" . + +qudt:conversionMultiplier + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "conversion multiplier" ; + rdfs:range xsd:decimal . + +qudt:conversionMultiplierSN + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "conversion multiplier scientific" ; + rdfs:range xsd:decimal . + +qudt:conversionOffset + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "conversion offset" ; + rdfs:range xsd:decimal . + +qudt:conversionOffsetSN + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "conversion offset scientific" ; + rdfs:range xsd:double . + +qudt:currencyCode + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description "Alphabetic Currency Code as defined by ISO 4217. For example, US Dollar has the code 'USD'."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "currency code" ; + rdfs:range xsd:string ; + rdfs:seeAlso "https://en.wikipedia.org/wiki/ISO_4217"^^xsd:anyURI . + +qudt:currencyExponent + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description "The currency exponent indicates the number of decimal places between a major currency unit and its minor currency unit. For example, the US dollar is the major currency unit of the United States, and the US cent is the minor currency unit. Since one cent is 1/100 of a dollar, the US dollar has a currency exponent of 2. However, the Japanese Yen has no minor currency units, so the yen has a currency exponent of 0."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "currency exponent" ; + rdfs:range xsd:integer . + +qudt:currencyNumber + a owl:DatatypeProperty, owl:FunctionalProperty ; + dcterms:description "Numeric currency Code as defined by ISO 4217. For example, US Dollar has the number 840."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "currency number" ; + rdfs:range xsd:string ; + rdfs:seeAlso "https://en.wikipedia.org/wiki/ISO_4217"^^xsd:anyURI . + +qudt:dataStructure + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "data structure" ; + rdfs:range xsd:string . + +qudt:dbpediaMatch + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dbpedia match" ; + rdfs:range xsd:anyURI . + +qudt:deprecated + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "deprecated" ; + rdfs:range xsd:boolean . + +qudt:dimensionExponent + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent" . + +qudt:dimensionExponentForAmountOfSubstance + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for amount of substance" . + +qudt:dimensionExponentForElectricCurrent + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for electric current" . + +qudt:dimensionExponentForLength + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for length" . + +qudt:dimensionExponentForLuminousIntensity + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for luminous intensity" . + +qudt:dimensionExponentForMass + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for mass" . + +qudt:dimensionExponentForThermodynamicTemperature + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for thermodynamic temperature" . + +qudt:dimensionExponentForTime + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for time" . + +qudt:dimensionlessExponent + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "dimensionless exponent" . + +qudt:exactConstant + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "exact constant" ; + rdfs:range xsd:boolean . + +qudt:factorUnitScalar + a owl:DatatypeProperty ; + dcterms:description "For a derived unit that is not exactly the product of its factor units, this property defines the scalar with which that product has to be multiplied with."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "factorUnitScalar" . + +qudt:fieldCode + a owl:DatatypeProperty ; + qudt:plainTextDescription "A field code is a generic property for representing unique codes that make up other identifers. For example each QuantityKind class caries a domain code as its field code." ; + rdfs:isDefinedBy ; + rdfs:label "field code" ; + rdfs:range xsd:string . + +qudt:figureCaption + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "figure caption" ; + rdfs:range xsd:string . + +qudt:figureLabel + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "figure label" ; + rdfs:range xsd:string . + +qudt:guidance + a owl:DatatypeProperty ; + rdfs:domain qudt:Concept ; + rdfs:isDefinedBy ; + rdfs:label "guidance" ; + rdfs:range rdf:HTML . + +qudt:hasCitation + a owl:DatatypeProperty ; + qudt:plainTextDescription "Used to provide an annotation for an informative reference." ; + rdfs:isDefinedBy ; + rdfs:label "citation" ; + rdfs:range xsd:string . + +qudt:height + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "height" ; + rdfs:range xsd:string . + +qudt:id + a owl:DatatypeProperty ; + dcterms:description "The \"qudt:id\" is an identifier string that uniquely identifies a QUDT concept. The identifier is constructed using a prefix. For example, units are coded using the pattern: \"UCCCENNNN\", where \"CCC\" is a numeric code or a category and \"NNNN\" is a digit string for a member element of that category. For scaled units there may be an addition field that has the format \"QNN\" where \"NN\" is a digit string representing an exponent power, and \"Q\" is a qualifier that indicates with the code \"P\" that the power is a positive decimal exponent, or the code \"N\" for a negative decimal exponent, or the code \"B\" for binary positive exponents."^^rdf:HTML ; + rdfs:domain qudt:Concept ; + rdfs:isDefinedBy ; + rdfs:label "qudt id" ; + rdfs:range xsd:string . + +qudt:iec61360Code + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "iec-61360 code" ; + rdfs:range xsd:string . + +qudt:image + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "image" ; + rdfs:range xsd:anyURI . + +qudt:imageLocation + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "image location" ; + rdfs:range xsd:anyURI . + +qudt:isDeltaQuantity + a owl:DatatypeProperty ; + rdfs:comment "This property is used to identify a Quantity instance that is a measure of a change, or interval, of some property, rather than a measure of its absolute value. This is important for measurements such as temperature differences where the conversion among units would be calculated differently because of offsets." ; + rdfs:isDefinedBy ; + rdfs:label "is Delta Quantity" ; + rdfs:range xsd:boolean . + +qudt:isMetricUnit + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "is metric unit" ; + rdfs:range xsd:boolean . + +qudt:isoNormativeReference + a owl:DatatypeProperty ; + dcterms:description "Provides a way to reference the ISO unit definition."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "normative reference (ISO)" ; + rdfs:range xsd:anyURI ; + rdfs:subPropertyOf qudt:normativeReference . + +qudt:javaName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "java name" ; + rdfs:range xsd:string . + +qudt:jsName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Javascript name" ; + rdfs:range xsd:string . + +qudt:landscape + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "landscape" ; + rdfs:range xsd:boolean . + +qudt:latexDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "latex definition" ; + rdfs:range qudt:LatexString . + +qudt:latexSymbol + a owl:DatatypeProperty ; + dcterms:description """ + The symbol is a glyph that is used to represent some concept, typically a unit or a quantity, in a compact form. + For example, the symbol for an Ohm is $ohm$. + This contrasts with 'unit:abbreviation', which gives a short alphanumeric abbreviation for the unit, 'ohm' for Ohm. + """^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "latex symbol" ; + rdfs:range qudt:LatexString . + +qudt:lowerBound + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "lower bound" . + +qudt:mathDefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "math definition" ; + rdfs:range xsd:string . + +qudt:mathMLdefinition + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "mathML definition" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:mathDefinition . + +qudt:matlabName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "matlab name" ; + rdfs:range xsd:string . + +qudt:maxExclusive + a owl:DatatypeProperty ; + dcterms:description "maxExclusive is the exclusive upper bound of the value space for a datatype with the ordered property. The value of maxExclusive must be in the value space of the base type or be equal to {value} in {base type definition}." ; + rdfs:isDefinedBy ; + rdfs:label "max exclusive" ; + rdfs:range xsd:string ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:maxInclusive + a owl:DatatypeProperty ; + dcterms:description "maxInclusive is the inclusive upper bound of the value space for a datatype with the ordered property. The value of maxInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "max inclusive" ; + rdfs:subPropertyOf qudt:upperBound . + +qudt:microsoftSQLServerName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "Microsoft SQL Server name" ; + rdfs:range xsd:string . + +qudt:minInclusive + a owl:DatatypeProperty ; + dcterms:description "minInclusive is the inclusive lower bound of the value space for a datatype with the ordered property. The value of minInclusive must be in the value space of the base type." ; + rdfs:isDefinedBy ; + rdfs:label "min inclusive" ; + rdfs:subPropertyOf qudt:lowerBound . + +qudt:mySQLName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "MySQL name" ; + rdfs:range xsd:string . + +qudt:negativeDeltaLimit + a owl:DatatypeProperty ; + dcterms:description "A negative change limit between consecutive sample values for a parameter. The Negative Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "negative delta limit" ; + rdfs:range xsd:string . + +qudt:normativeReference + a owl:DatatypeProperty ; + dcterms:description "Provides a way to reference information that is an authorative source providing a standard definition"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "normative reference" ; + rdfs:range xsd:anyURI . + +qudt:numericValue + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "numeric value" ; + rdfs:range qudt:NumericUnion . + +qudt:odbcName + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "ODBC name" ; + rdfs:range xsd:string . + +qudt:oleDBName + a owl:DatatypeProperty ; + dcterms:description "OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. " ; + qudt:informativeReference "http://en.wikipedia.org/wiki/OLE_DB"^^xsd:anyURI ; + qudt:informativeReference "http://msdn.microsoft.com/en-us/library/windows/desktop/ms714931(v=vs.85).aspx"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "OLE DB name" ; + rdfs:range xsd:string . + +qudt:onlineReference + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "online reference" ; + rdfs:range xsd:anyURI . + +qudt:order + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "order" ; + rdfs:range xsd:nonNegativeInteger . + +qudt:outOfScope + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "out of scope" ; + rdfs:range xsd:boolean . + +qudt:plainTextDescription + a owl:DatatypeProperty ; + dcterms:description "A plain text description is used to provide a description with only simple ASCII characters for cases where LaTeX , HTML or other markup would not be appropriate."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "description (plain text)" ; + rdfs:range xsd:string . + +qudt:positiveDeltaLimit + a owl:DatatypeProperty ; + dcterms:description "A positive change limit between consecutive sample values for a parameter. The Positive Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Positive delta limit" ; + rdfs:range xsd:string . + +qudt:prefixMultiplier + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "prefix multiplier" ; + rdfs:range xsd:decimal . + +qudt:prefixMultiplierSN + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "prefix multiplier scientific" ; + rdfs:range xsd:double . + +qudt:rationale + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "rationale" ; + rdfs:range rdf:HTML . + +qudt:rdfsDatatype + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "rdfs datatype" . + +qudt:relativeStandardUncertainty + a owl:DatatypeProperty ; + dcterms:description "The relative standard uncertainty of a measurement is the (absolute) standard uncertainty divided by the magnitude of the exact value."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "relative standard uncertainty" ; + rdfs:range xsd:double . + +qudt:siUnitsExpression + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "si units expression" ; + rdfs:range xsd:string . + +qudt:standardUncertainty + a owl:DatatypeProperty ; + dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "standard uncertainty" ; + rdfs:range xsd:decimal . + +qudt:standardUncertaintySN + a owl:DatatypeProperty ; + dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "standard uncertainty scientific" ; + rdfs:range xsd:double . + +qudt:symbol + a owl:DatatypeProperty ; + dcterms:description """ + The symbol is a glyph that is used to represent some concept, typically a unit or a quantity, in a compact form. + For example, the symbol for an Ohm is $ohm$. + This contrasts with 'unit:abbreviation', which gives a short alphanumeric abbreviation for the unit, 'ohm' for Ohm. + """^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "symbol" ; + rdfs:subPropertyOf dtype:literal . + +qudt:ucumCode + a owl:DatatypeProperty ; + dcterms:description "

ucumCode associates a QUDT unit with its UCUM code (case-sensitive).

In SHACL the values are derived from specific ucum properties using 'sh:values'.

"^^rdf:HTML ; + dcterms:source "https://ucum.org/ucum.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "ucum code" ; + rdfs:range [ + a owl:Class ; + owl:unionOf ( qudt:UCUMcs qudt:UCUMcs-term ) ; + ] ; + rdfs:seeAlso ; + rdfs:subPropertyOf skos:notation . + +qudt:udunitsCode + a owl:DatatypeProperty ; + dcterms:description "The UDUNITS package supports units of physical quantities. Its C library provides for arithmetic manipulation of units and for conversion of numeric values between compatible units. The package contains an extensive unit database, which is in XML format and user-extendable. The package also contains a command-line utility for investigating units and converting values."^^rdf:HTML ; + dcterms:source "https://www.unidata.ucar.edu/software/udunits/"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "udunits code" ; + rdfs:range xsd:string . + +qudt:uneceCommonCode + a owl:DatatypeProperty ; + dcterms:description "The UN/CEFACT Recommendation 20 provides three character alphabetic and alphanumeric codes for representing units of measurement for length, area, volume/capacity, mass (weight), time, and other quantities used in international trade. The codes are intended for use in manual and/or automated systems for the exchange of information between participants in international trade."^^rdf:HTML ; + dcterms:source "https://service.unece.org/trade/uncefact/vocabulary/rec20/"^^xsd:anyURI ; + dcterms:source "https://unece.org/trade/documents/2021/06/uncefact-rec20-0"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "unece common code" ; + rdfs:range xsd:string . + +qudt:upperBound + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "upper bound" ; + rdfs:range xsd:anySimpleType . + +qudt:url + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "url" ; + rdfs:range xsd:anyURI . + +qudt:value + a owl:DatatypeProperty ; + dcterms:description "A property to relate an observable thing with a value of any kind"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "value" . + +qudt:valueSN + a owl:DatatypeProperty ; + dcterms:description "A property to relate an observable thing with a value of any kind"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "value scientific" . + +qudt:vectorMagnitude + a owl:DatatypeProperty, owl:FunctionalProperty ; + rdfs:isDefinedBy ; + rdfs:label "vector magnitude" ; + rdfs:range xsd:float . + +qudt:width + a owl:DatatypeProperty ; + rdfs:isDefinedBy ; + rdfs:label "width" ; + rdfs:range xsd:string . + +dcterms:abstract + a owl:AnnotationProperty ; + rdfs:isDefinedBy dcterms: ; + rdfs:label "abstract" ; + rdfs:range xsd:string . + +dcterms:creator + a owl:AnnotationProperty ; + rdfs:label "creator" . + +dcterms:rights + a owl:AnnotationProperty ; + rdfs:label "rights" ; + rdfs:range xsd:string . + +dcterms:source + a owl:AnnotationProperty ; + rdfs:isDefinedBy dcterms: ; + rdfs:label "source" ; + rdfs:range xsd:anyURI . + +dcterms:subject + a owl:AnnotationProperty ; + rdfs:label "subject" ; + rdfs:range xsd:string . + +dcterms:title + a owl:AnnotationProperty ; + rdfs:label "title" ; + rdfs:range xsd:string . + +qudt:example + a owl:AnnotationProperty ; + rdfs:comment "The 'qudt:example' property is used to annotate an instance of a class with a reference to a concept that is an example. The type of this property is 'rdf:Property'. This allows both scalar and object ranges."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "example" . + +qudt:expression + a owl:AnnotationProperty ; + dcterms:description "An 'expression' is a finite combination of symbols that are well-formed according to rules that apply to units of measure, quantity kinds and their dimensions."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "expression" . + +qudt:informativeReference + a owl:AnnotationProperty ; + dcterms:description "Provides a way to reference a source that provided useful but non-normative information."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "informative reference" ; + rdfs:range xsd:anyURI . + + + vaem:namespace "http://www.linkedmodel.org/schema/dtype#"^^xsd:anyURI ; + vaem:namespacePrefix "dtype" . + +qudt:Aspect + a qudt:AspectClass ; + rdfs:comment "An aspect is an abstract type class that defines properties that can be reused."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Aspect" ; + rdfs:subClassOf owl:Thing . + +qudt:BigEndian + a qudt:EndianType ; + dtype:literal "big" ; + rdfs:isDefinedBy ; + rdfs:label "Big Endian" . + +qudt:BitEncoding + a qudt:BitEncodingType ; + qudt:bits 1 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Encoding" . + +qudt:BooleanEncoding + a qudt:BooleanEncodingType ; + qudt:bits 1 ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Encoding" . + +qudt:CT_COUNTABLY-INFINITE + a qudt:CardinalityType ; + dcterms:description """ + A set of numbers is called countably infinite if there is a way to enumerate them. + Formally this is done with a bijection function that associates each number in the set with exactly one of the positive integers. + The set of all fractions is also countably infinite. + In other words, any set $X$ that has the same cardinality as the set of the natural numbers, + or $| X | \\; = \\; | \\mathbb N | \\; = \\; \\aleph0$, is said to be a countably infinite set. + """^^qudt:LatexString ; + dtype:literal "countable" ; + qudt:informativeReference "http://www.math.vanderbilt.edu/~schectex/courses/infinity.pdf"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Countably Infinite Cardinality Type" . + +qudt:CT_FINITE + a qudt:CardinalityType ; + dcterms:description "Any set $X$ with cardinality less than that of the natural numbers, or $| X | \\\\; < \\; | \\\\mathbb N | $, is said to be a finite set."^^qudt:LatexString ; + dtype:literal "finite" ; + rdfs:isDefinedBy ; + rdfs:label "Finite Cardinality Type" . + +qudt:CT_UNCOUNTABLE + a qudt:CardinalityType ; + dcterms:description "Any set with cardinality greater than that of the natural numbers, or $| X | \\; > \\; | \\mathbb N | $, for example $| R| \\; = \\; c \\; > |\\mathbb N |$, is said to be uncountable."^^qudt:LatexString ; + dtype:literal "uncountable" ; + rdfs:isDefinedBy ; + rdfs:label "Uncountable Cardinality Type" . + +qudt:CharEncoding + a qudt:BooleanEncodingType, qudt:CharEncodingType ; + dc:description "7 bits of 1 octet" ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding" . + +qudt:DoublePrecisionEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 64 ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Real Encoding" . + +qudt:EnumeratedQuantity + a qudt:AspectClass ; + rdfs:label "Enumerated Quantity" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:EnumeratedValue ; + owl:onProperty qudt:enumeratedValue ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:allValuesFrom qudt:Enumeration ; + owl:onProperty qudt:enumeration ; + ] . + +qudt:IEEE754_1985RealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "IEEE 754 1985 Real Encoding" . + +qudt:ISO8601-UTCDateTime-BasicFormat + a qudt:DateTimeStringEncodingType ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}.[0-9]+Z" ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}Z" ; + rdfs:isDefinedBy ; + rdfs:label "ISO 8601 UTC Date Time - Basic Format" . + +qudt:LatexString + a rdfs:Datatype ; + rdfs:comment "A type of string in which some characters may be wrapped with '$' and '$ characters for LaTeX rendering." ; + rdfs:isDefinedBy ; + rdfs:label "Latex String" ; + rdfs:subClassOf xsd:string . + +qudt:LittleEndian + a qudt:EndianType ; + dtype:literal "little" ; + rdfs:isDefinedBy ; + rdfs:label "Little Endian" . + +qudt:LongUnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 8 ; + rdfs:isDefinedBy ; + rdfs:label "Long Unsigned Integer Encoding" . + +qudt:OctetEncoding + a qudt:BooleanEncodingType, qudt:ByteEncodingType ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "OCTET Encoding" . + +qudt:PartiallyOrdered + a qudt:OrderedType ; + dtype:literal "partial" ; + qudt:plainTextDescription "Partial ordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Partially Ordered" . + +qudt:SIGNED + a qudt:SignednessType ; + dtype:literal "signed" ; + rdfs:isDefinedBy ; + rdfs:label "Signed" . + +qudt:ShortSignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Signed Integer Encoding" . + +qudt:ShortUnsignedIntegerEncoding + a qudt:BooleanEncodingType, qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Unsigned Integer Encoding" . + +qudt:SignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Encoding" . + +qudt:SinglePrecisionRealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Real Encoding" . + +qudt:TotallyOrdered + a qudt:OrderedType ; + dtype:literal "total" ; + qudt:plainTextDescription "Totally ordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Totally Ordered" . + +qudt:UCUMcs + a rdfs:Datatype ; + dcterms:source "https://ucum.org/ucum.html"^^xsd:anyURI ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:pattern "[\\x21-\\x7e]+" ; + ] ) ; + rdfs:comment "Lexical pattern for the case-sensitive version of UCUM code" ; + rdfs:isDefinedBy ; + rdfs:label "case-sensitive UCUM code" ; + rdfs:seeAlso ; + rdfs:subClassOf rdfs:Resource . + +qudt:UCUMcs-term + a rdfs:Datatype ; + dcterms:source "https://ucum.org/ucum.html"^^xsd:anyURI ; + owl:onDatatype xsd:string ; + owl:withRestrictions ( [ + xsd:pattern "[\\x21,\\x23-\\x27,\\x2a,\\x2c,\\x30-\\x3c,\\x3e-\\x5a,\\x5c,\\x5e-\\x7a,\\x7c,\\x7e]+" ; + ] ) ; + rdfs:comment "Lexical pattern for the terminal symbols in the case-sensitive version of UCUM code" ; + rdfs:isDefinedBy ; + rdfs:label "case-sensitive UCUM terminal" ; + rdfs:seeAlso ; + rdfs:subClassOf rdfs:Resource . + +qudt:UNSIGNED + a qudt:SignednessType ; + dtype:literal "unsigned" ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned" . + +qudt:Unordered + a qudt:OrderedType ; + dtype:literal "unordered" ; + qudt:plainTextDescription "Unordered structure." ; + rdfs:isDefinedBy ; + rdfs:label "Unordered" . + +qudt:UnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer Encoding" . + +qudt:Verifiable + a qudt:AspectClass ; + rdfs:comment "An aspect class that holds properties that provide external knowledge and specifications of a given resource." ; + rdfs:isDefinedBy ; + rdfs:label "Verifiable" ; + rdfs:subClassOf qudt:Aspect ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:dbpediaMatch ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:isoNormativeReference ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:isoNormativeReference ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:normativeReference ; + ] ; + rdfs:subClassOf [ + a owl:Restriction ; + owl:minCardinality "0"^^xsd:nonNegativeInteger ; + owl:onProperty qudt:normativeReference ; + ] . + +qudt:floatPercentage + a rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:float ; + owl:withRestrictions ( [ + xsd:minInclusive "0.00"^^xsd:float ; + ] [ + xsd:maxInclusive "100.00"^^xsd:float ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "float percentage" . + +qudt:integerPercentage + a rdfs:Datatype ; + owl:equivalentClass [ + a rdfs:Datatype ; + owl:onDatatype xsd:integer ; + owl:withRestrictions ( [ + xsd:minInclusive 0 ; + ] [ + xsd:maxInclusive 100 ; + ] ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "integer percentage" . + +qudt:valueUnion + a rdfs:Datatype ; + dcterms:description "A datatype that is the union of numeric xsd data types. \"numericUnion\" is equivalent to the xsd specification that uses an xsd:union of memberTypes=\"xsd:decimal xsd:double xsd:float xsd:integer\"." ; + owl:equivalentClass [ + a owl:Class ; + owl:unionOf ( xsd:anySimpleType dtype:EnumeratedValue ) ; + ] ; + rdfs:isDefinedBy ; + rdfs:label "value union" ; + rdfs:subClassOf rdfs:Resource . + +vaem:GMD_QUDT-SCHEMA + a vaem:GraphMetaData ; + dcterms:contributor "Daniel Mekonnen" ; + dcterms:contributor "David Price" ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "James E. Masters" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2011-04-20"^^xsd:date ; + dcterms:creator "Ralph Hodgson" ; + dcterms:description """

The QUDT, or "Quantity, Unit, Dimension and Type" schema defines the base classes properties, and restrictions used for modeling physical quantities, units of measure, and their dimensions in various measurement systems. The goal of the QUDT ontology is to provide a unified model of, measurable quantities, units for measuring different kinds of quantities, the numerical values of quantities in different units of measure and the data structures and data types used to store and manipulate these objects in software.

+ +

Except for unit prefixes, all units are specified in separate vocabularies. Descriptions are provided in both HTML and LaTeX formats. A quantity is a measure of an observable phenomenon, that, when associated with something, becomes a property of that thing; a particular object, event, or physical system.

+ +

A quantity has meaning in the context of a measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Or, as stated at Wikipedia, in the language of measurement, quantities are quantifiable aspects of the world, such as time, distance, velocity, mass, momentum, energy, and weight, and units are used to describe their measure. Many of these quantities are related to each other by various physical laws, and as a result the units of some of the quantities can be expressed as products (or ratios) of powers of other units (e.g., momentum is mass times velocity and velocity is measured in distance divided by time).

"""^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights """ + This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved. + +THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + """ ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "QUDT" ; + dcterms:title "QUDT Schema - Version 3.1.0" ; + owl:versionIRI ; + qudt:informativeReference "http://unitsofmeasure.org/trac"^^xsd:anyURI ; + qudt:informativeReference "http://www.bipm.org/en/publications/si-brochure"^^xsd:anyURI ; + qudt:informativeReference "http://www.bipm.org/utils/common/documents/jcgm/JCGM_200_2008.pdf"^^xsd:anyURI ; + qudt:informativeReference "https://books.google.com/books?id=pIlCAAAAIAAJ&dq=dimensional+analysis&hl=en"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/physical-measurement-laboratory/special-publication-811"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Schema - Version 3.1.0" ; + vaem:graphName "qudt" ; + vaem:graphTitle "Quantities, Units, Dimensions and Types (QUDT) Schema - Version 3.1.0" ; + vaem:hasGraphRole vaem:SchemaGraph ; + vaem:hasOwner vaem:QUDT ; + vaem:hasSteward vaem:QUDT ; + vaem:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_SCHEMA-QUDT.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ; + vaem:namespacePrefix "qudt" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_SCHEMA-QUDT.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/schema/qudt"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:contributor ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:description ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:source ; + vaem:usesNonImportedResource dcterms:subject ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource voag:QUDT-Attribution ; + vaem:withAttributionTo voag:QUDT-Attribution . + +vaem:QUDT + a vaem:Party ; + dcterms:description "QUDT is a non-profit organization that governs the QUDT ontologies."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT" ; + vaem:graphName "qudt.org" ; + vaem:website "http://www.qudt.org"^^xsd:anyURI . + +voag:QUDT-SchemaCatalogEntry + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Schema Catalog Entry" . + + diff --git a/libraries/qudt/SCHEMA_QUDT_NoOWL.ttl b/libraries/qudt/SCHEMA_QUDT_NoOWL.ttl new file mode 100644 index 000000000..759f5356a --- /dev/null +++ b/libraries/qudt/SCHEMA_QUDT_NoOWL.ttl @@ -0,0 +1,3082 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix dtype: . +@prefix prov: . +@prefix qudt: . +@prefix sh: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports sh: ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT SHACL Schema Version 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_SHACLQUDT-SCHEMA . + +qudt:AbstractQuantityKind + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind (abstract)" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:AbstractQuantityKind-altSymbol ; + sh:property qudt:AbstractQuantityKind-broader ; + sh:property qudt:AbstractQuantityKind-latexSymbol ; + sh:property qudt:AbstractQuantityKind-symbol . + +qudt:AngleUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description "All units relating to specificaiton of angles. " ; + rdfs:isDefinedBy ; + rdfs:label "Angle unit" ; + rdfs:subClassOf qudt:DimensionlessUnit ; + skos:exactMatch . + +qudt:AspectClass + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Aspect Class" ; + rdfs:subClassOf rdfs:Class . + +qudt:BaseDimensionMagnitude + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Dimension expresses a magnitude for a base quantity kind such as mass, length and time. +

+

DEPRECATED - each exponent is expressed as a property. + Keep until a validation of this has been done. +

"""^^rdf:HTML ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI ; + qudt:informativeReference "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Base Dimension Magnitude" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:BaseDimensionMagnitude-hasBaseQuantityKind ; + sh:property qudt:BaseDimensionMagnitude-vectorMagnitude . + +qudt:BinaryPrefix + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Binary Prefix is a prefix for multiples of units in data processing, data transmission, and digital information, + notably the bit and the byte, to indicate multiplication by a power of 2. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Binary Prefix" ; + rdfs:subClassOf qudt:Prefix . + +qudt:Citation + a rdfs:Class, sh:NodeShape ; + dcterms:description "Provides a simple way of making citations."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Citation" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:Citation-description ; + sh:property qudt:Citation-url . + +qudt:Comment + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Comment" ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Comment-description ; + sh:property qudt:Comment-rationale . + +qudt:Concept + a rdfs:Class, sh:NodeShape ; + dcterms:description "The root class for all QUDT concepts."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Concept" ; + rdfs:subClassOf rdfs:Resource ; + sh:property qudt:Concept-abbreviation ; + sh:property qudt:Concept-code ; + sh:property qudt:Concept-deprecated ; + sh:property qudt:Concept-description ; + sh:property qudt:Concept-exactMatch ; + sh:property qudt:Concept-guidance ; + sh:property qudt:Concept-hasRule ; + sh:property qudt:Concept-id ; + sh:property qudt:Concept-isReplacedBy ; + sh:property qudt:Concept-plainTextDescription . + +qudt:ConstantValue + a rdfs:Class, sh:NodeShape ; + dcterms:description "Used to specify the values of a constant."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Constant value" ; + rdfs:subClassOf qudt:QuantityValue ; + sh:property qudt:ConstantValue-exactConstant . + +qudt:ContextualUnit + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Contextual Unit" ; + rdfs:subClassOf qudt:Unit ; + sh:property qudt:ContextualUnit-broader . + +qudt:CountingUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Counting Unit is used for all units that express counts. + Examples are Atomic Number, Number, Number per Year, Percent and Sample per Second. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Counting Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit . + +qudt:CurrencyUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Currency Units have their own subclass of unit because: + (a) they have additional properties such as 'country' and + (b) their URIs do not conform to the same rules as other units. + """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Currency Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit ; + sh:property qudt:CurrencyUnit-currencyCode ; + sh:property qudt:CurrencyUnit-currencyExponent ; + sh:property qudt:CurrencyUnit-currencyNumber . + +qudt:DataItem + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Data Item holds a value that maybe a scalar or structured datatype. + Quantity Value specifies which case applies. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Data Item" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:ValuePropertyShape . + +qudt:Datatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Datatype is a definition of the type of the "value" of a data item (for example, "all integers between 0 and 10"), + and the allowable operations on those values; the meaning of the data; and the way values of that type can be stored. + Some types are primitive - built-in to the language, with no visible internal structure. + For example "Boolean"; others are composite - constructed from one or more other types (of either kind). + For example lists, arrays, structures, unions. + Some languages provide strong typing, others allow implicit type conversion and/or explicit type conversion. +

"""^^rdf:HTML ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_type"^^xsd:anyURI ; + qudt:informativeReference "http://foldoc.org/data+type"^^xsd:anyURI ; + qudt:informativeReference "http://www.princeton.edu/~achaney/tmve/wiki100k/docs/Data_type.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Datatype" ; + rdfs:subClassOf qudt:Concept . + +qudt:DecimalPrefix + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A Decimal Prefix is a prefix for multiples of units that are powers of 10. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Decimal Prefix" ; + rdfs:subClassOf qudt:Prefix . + +qudt:DerivedUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Derived Unit is a type specification for units that are derived from other units. +

"""^^rdf:HTML ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Category:SI_derived_units"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Derived Unit" ; + rdfs:subClassOf qudt:Unit . + +qudt:DimensionlessUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Dimensionless Unit is a quantity for which all the exponents of the factors corresponding to the base quantities in its quantity dimension are zero. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Dimensionless Unit" ; + rdfs:subClassOf qudt:Unit . + +qudt:Discipline + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Discipline" ; + rdfs:subClassOf qudt:Concept . + +qudt:EnumeratedQuantity + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Enumerated Quantity" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:EnumeratedQuantity-enumeratedValue ; + sh:property qudt:EnumeratedQuantity-enumeration . + +qudt:EnumeratedValue + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Enumerated Value class defines the members of an enumeration. + An enumeration is a set of literals from which a single value is selected. + Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. + Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. +

+

Enumerated values are also controlled vocabularies and as such need to be standardized. + Without this consistency enumeration literals can be stated differently and result in data conflicts and misinterpretations. +

+

The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. + An order attribute can also be given on the enumeration elements. + An enumeration can itself be a member of an enumeration. + This allows enumerations to be enumerated in a selection. +

+

Enumerations are also subclasses of Scalar Datatype. + This allows them to be used as the reference of a datatype specification. +

+ """^^rdf:HTML ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Enumerated Value" ; + rdfs:subClassOf dtype:EnumeratedValue ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:EnumeratedValue-abbreviation ; + sh:property qudt:EnumeratedValue-altSymbol ; + sh:property qudt:EnumeratedValue-description ; + sh:property qudt:EnumeratedValue-symbol . + +qudt:Enumeration + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

An Enumeration is a set of literals from which a single value is selected. + Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. + Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. + Enumerated values are also controlled vocabularies and as such need to be standardized. + Without this consistency enumeration literals can be stated differently and result in data conflicts and misinterpretations. +

+

The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. + An order attribute can also be given on the enumeration elements. An enumeration can itself be a member of an enumeration. This allows enumerations to be enumerated in a selection. + Enumerations are also subclasses of Scalar Datatype. + This allows them to be used as the reference of a datatype specification. +

+ """^^rdf:HTML ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Enumeration"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumerated_type"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Enumeration" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:Enumeration-abbreviation ; + sh:property qudt:Enumeration-default ; + sh:property qudt:Enumeration-element . + +qudt:FactorUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Factor Unit is a type specification for a unit, exponent pair that is a component of a derived unit. +

"""^^rdf:HTML ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Category:SI_derived_units"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Factor Unit" ; + sh:property qudt:FactorUnit-exponent ; + sh:property qudt:FactorUnit-hasUnit . + +qudt:Figure + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Figure" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:Figure-figureCaption ; + sh:property qudt:Figure-figureLabel ; + sh:property qudt:Figure-height ; + sh:property qudt:Figure-image ; + sh:property qudt:Figure-imageLocation ; + sh:property qudt:Figure-landscape ; + sh:property qudt:Figure-width . + +qudt:IntervalScale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

The interval type allows for the degree of difference between items, but not the ratio between them. + Examples include temperature with the Celsius scale, which has two defined points + (the freezing and boiling point of water at specific conditions) and then separated into 100 intervals, + date when measured from an arbitrary epoch (such as AD), percentage such as a percentage return on a stock, + location in Cartesian coordinates, and direction measured in degrees from true or magnetic north. +

+

Ratios are not meaningful since 20 °C cannot be said to be "twice as hot" as 10 °C, nor can multiplication/division be carried out between any two dates directly. + However, ratios of differences can be expressed; for example, one difference can be twice another. + Interval type variables are sometimes also called "scaled variables", but the formal mathematical term is an affine space (in this case an affine line). +

+

Characteristics: median, percentile & Monotonic increasing (order (<) & totally ordered set.

+ """^^rdf:HTML ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Interval scale" ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale . + +qudt:LogarithmicUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Logarithmic units are abstract mathematical units that can be used to express any quantities + (physical or mathematical) that are defined on a logarithmic scale, that is, as being proportional + to the value of a logarithm function. + Examples of logarithmic units include common units of information and entropy, such as the bit, + and the byte, as well as units of relative signal strength magnitude such as the decibel. + """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Logarithmic Unit" ; + rdfs:subClassOf qudt:DimensionlessUnit . + +qudt:NIST_SP811_Comment + a rdfs:Class, sh:NodeShape ; + dcterms:description "National Institute of Standards and Technology (NIST) Special Publication 811 Comments on some quantities and their units" ; + rdfs:isDefinedBy ; + rdfs:label "NIST SP~811 Comment" ; + rdfs:subClassOf qudt:Comment . + +qudt:NominalScale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A nominal scale differentiates between items or subjects based only on their names or (meta-)categories and other qualitative classifications they belong to; + thus dichotomous data involves the construction of classifications as well as the classification of items. + Discovery of an exception to a classification can be viewed as progress. + Numbers may be used to represent the variables but the numbers do not have numerical value or relationship: + for example, a Globally unique identifier. + Examples of these classifications include gender, nationality, ethnicity, language, genre, style, biological species, and form. + In a university one could also use hall of affiliation as an example. + """^^rdf:HTML ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nominal scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale . + +qudt:NumericListShape + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:subClassOf rdf:List ; + sh:property [ + sh:or qudt:NumericTypeUnion ; + sh:path rdf:first ; + ] ; + sh:property [ + sh:or ( [ + sh:node ( ) ; + ] [ + sh:node qudt:NumericListShape ; + ] ) ; + sh:path rdf:rest ; + ] . + +qudt:OrdinalScale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

The ordinal type allows for rank order (1st, 2nd, 3rd, etc.) by which data can be sorted, + but still does not allow for relative degree of difference between them. + Examples include, on one hand, dichotomous data with dichotomous (or dichotomized) values such as: + 'sick' vs. 'healthy' when measuring health, 'guilty' vs. 'innocent' when making judgments in courts, + 'wrong/false' vs. 'right/true' when measuring truth value, and, on the other hand, non-dichotomous data consisting of a spectrum of values, such as: + 'completely agree', 'mostly agree', 'mostly disagree', 'completely disagree' when measuring opinion. +

"""^^rdf:HTML ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ordinal scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:RatioScale ; + rdfs:subClassOf qudt:Scale ; + sh:property qudt:OrdinalScale-order . + +qudt:Organization + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Organization" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:Organization-url . + +qudt:PhysicalConstant + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Physical constant is a physical quantity that is generally believed to be both universal in nature and constant in time. + It can be contrasted with a mathematical constant, which is a fixed numerical value but does not directly involve any physical measurement. +

+

There are many physical constants in science, some of the most widely recognized being: + the speed of light in vacuum c, Newton's gravitational constant G, Planck's constant h, + the electric permittivity of free space ε0, and the elementary charge e. +

+

Physical constants can take many dimensional forms, or may be dimensionless depending on the system of quantities and units used. +

"""^^rdf:HTML ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Physical_constant"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Physical Constant" ; + rdfs:subClassOf qudt:Quantity ; + sh:property qudt:PhysicalConstant-altSymbol ; + sh:property qudt:PhysicalConstant-applicableSystem ; + sh:property qudt:PhysicalConstant-applicableUnit ; + sh:property qudt:PhysicalConstant-dbpediaMatch ; + sh:property qudt:PhysicalConstant-exactConstant ; + sh:property qudt:PhysicalConstant-hasDimensionVector ; + sh:property qudt:PhysicalConstant-iec61360Code ; + sh:property qudt:PhysicalConstant-isoNormativeReference ; + sh:property qudt:PhysicalConstant-latexDefinition ; + sh:property qudt:PhysicalConstant-latexSymbol ; + sh:property qudt:PhysicalConstant-mathMLdefinition ; + sh:property qudt:PhysicalConstant-normativeReference ; + sh:property qudt:PhysicalConstant-siExactMatch ; + sh:property qudt:PhysicalConstant-symbol ; + sh:property qudt:PhysicalConstant-ucumCode . + +qudt:PlaneAngleUnit + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Plane Angle Unit" ; + rdfs:subClassOf qudt:AngleUnit . + +qudt:Prefix + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Prefix" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Prefix-altSymbol ; + sh:property qudt:Prefix-latexSymbol ; + sh:property qudt:Prefix-prefixMultiplier ; + sh:property qudt:Prefix-prefixMultiplierSN ; + sh:property qudt:Prefix-siExactMatch ; + sh:property qudt:Prefix-symbol ; + sh:property qudt:Prefix-ucumCode . + +qudt:Quantifiable + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

Quantifiable is an aspect class that affords to an entity properties for being measurable, + observable, or countable. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantifiable" ; + rdfs:subClassOf qudt:Aspect ; + sh:property qudt:Quantifiable-datatype ; + sh:property qudt:Quantifiable-hasUnit ; + sh:property qudt:Quantifiable-relativeStandardUncertainty ; + sh:property qudt:Quantifiable-standardUncertainty ; + sh:property qudt:Quantifiable-standardUncertaintySN ; + sh:property qudt:Quantifiable-value ; + sh:property qudt:Quantifiable-valueSN . + +qudt:Quantity + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Quantity is the measurement of an observable property of a particular object, event, or physical system. + A quantity is always associated with the context of measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the + underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific + quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Examples of physical quantities include physical constants, such as + the speed of light in a vacuum, Planck's constant, the electric permittivity of free space, and the fine structure constant.

+

In other words, quantities are quantifiable aspects of the world, such as the duration of a movie, the distance between two points, +velocity of a car, the pressure of the atmosphere, and a person's weight; and units are used to describe their numerical measure.

+

Many quantity kinds are related to each other by various physical laws, and as a result, the associated units of some quantity +kinds can be expressed as products (or ratios) of powers of other quantity kinds (e.g., momentum is mass times velocity and velocity is defined as distance +divided by time). In this way, some quantities can be calculated from other measured quantities using their associations to the quantity kinds in these +expressions. These quantity kind relationships are also discussed in dimensional analysis. Those that cannot be so expressed can be regarded +as "fundamental" in this sense.

+

A quantity is distinguished from a "quantity kind" in that the former carries a value and the latter is a type specifier. +

"""^^rdf:HTML ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quantity"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Quantity" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Quantifiable ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Quantity-hasQuantityKind ; + sh:property qudt:Quantity-isDeltaQuantity ; + sh:property qudt:Quantity-quantityValue . + +qudt:QuantityKind + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Quantity Kind is any observable property that can be measured and quantified numerically. + Familiar examples include physical properties such as length, mass, time, force, energy, power, electric charge, etc. + Less familiar examples include currency, interest rate, price to earning ratio, and information capacity. +

"""^^rdf:HTML ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=112-01-04"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind" ; + rdfs:subClassOf qudt:AbstractQuantityKind ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:QuantityKind-applicableCGSUnit ; + sh:property qudt:QuantityKind-applicableISOUnit ; + sh:property qudt:QuantityKind-applicableImperialUnit ; + sh:property qudt:QuantityKind-applicableSIUnit ; + sh:property qudt:QuantityKind-applicableUSCustomaryUnit ; + sh:property qudt:QuantityKind-applicableUnit ; + sh:property qudt:QuantityKind-baseCGSUnitDimensions ; + sh:property qudt:QuantityKind-baseISOUnitDimensions ; + sh:property qudt:QuantityKind-baseImperialUnitDimensions ; + sh:property qudt:QuantityKind-baseSIUnitDimensions ; + sh:property qudt:QuantityKind-baseUSCustomaryUnitDimensions ; + sh:property qudt:QuantityKind-belongsToSystemOfQuantities ; + sh:property qudt:QuantityKind-dimensionVectorForSI ; + sh:property qudt:QuantityKind-expression ; + sh:property qudt:QuantityKind-hasDimensionVector ; + sh:property qudt:QuantityKind-iec61360Code ; + sh:property qudt:QuantityKind-latexDefinition ; + sh:property qudt:QuantityKind-mathMLdefinition ; + sh:property qudt:QuantityKind-qkdvDenominator ; + sh:property qudt:QuantityKind-qkdvNumerator ; + sh:property qudt:QuantityKind-siExactMatch . + +qudt:QuantityKindDimensionVector + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + $\\text{Quantity Kind Dimension Vector}$ describes the dimensionality of a quantity kind in the context of a system of units. + In the SI system of units, the dimensions of a quantity kind are expressed as a product of the basic + physical dimensions mass ($M$), length ($L$), time ($T$) current ($I$), amount of substance ($N$), + luminous intensity ($J$) and absolute temperature + ($\\theta$) as $dim \\, Q = L^{\\alpha} \\, M^{\\beta} \\, T^{\\gamma} \\, I ^{\\delta} \\, \\theta ^{\\epsilon} \\, N^{\\eta} \\, J ^{\\nu}$. + + + The rational powers of the dimensional exponents, $\\alpha, \\, \\beta, \\, \\gamma, \\, \\delta, \\, \\epsilon, \\, \\eta, \\, \\nu$, are positive, negative, or zero. + + For example, the dimension of the physical quantity kind $\\it{speed}$ is $\\boxed{length/time}$, $L/T$ or $LT^{-1}$, + and the dimension of the physical quantity kind force is $\\boxed{mass \\times acceleration}$ or $\\boxed{mass \\times (length/time)/time}$, $ML/T^2$ or $MLT^{-2}$ respectively. + """^^qudt:LatexString ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI ; + qudt:informativeReference "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind Dimension Vector" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForAmountOfSubstance ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForElectricCurrent ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForLength ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForLuminousIntensity ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForMass ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForThermodynamicTemperature ; + sh:property qudt:QuantityKindDimensionVector-dimensionExponentForTime ; + sh:property qudt:QuantityKindDimensionVector-dimensionlessExponent ; + sh:property qudt:QuantityKindDimensionVector-hasReferenceQuantityKind ; + sh:property qudt:QuantityKindDimensionVector-latexDefinition ; + sh:property qudt:QuantityKindDimensionVector-latexSymbol . + +qudt:QuantityKindDimensionVector_CGS + a rdfs:Class, sh:NodeShape ; + dcterms:description "A CGS Dimension Vector is used to specify the dimensions for a C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_CGS-EMU + a rdfs:Class, sh:NodeShape ; + dcterms:description "A CGS EMU Dimension Vector is used to specify the dimensions for EMU C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS EMU Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-ESU + a rdfs:Class, sh:NodeShape ; + dcterms:description "A CGS ESU Dimension Vector is used to specify the dimensions for ESU C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS ESU Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-GAUSS + a rdfs:Class, sh:NodeShape ; + dcterms:description "A CGS GAUSS Dimension Vector is used to specify the dimensions for Gaussioan C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS GAUSS Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_CGS-LH + a rdfs:Class, sh:NodeShape ; + dcterms:description "A CGS LH Dimension Vector is used to specify the dimensions for Lorentz-Heaviside C.G.S. quantity kind."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "CGS LH Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS . + +qudt:QuantityKindDimensionVector_ISO + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "ISO Dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_Imperial + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Imperial dimension vector" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityKindDimensionVector_SI + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Quantity Kind Dimension vector (SI)" ; + rdfs:subClassOf qudt:QuantityKindDimensionVector . + +qudt:QuantityType + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A $\\textit{Quantity Type}$ is an enumeration of quantity kinds. + It specializes $\\boxed{dtype:EnumeratedValue}$ by constrinaing $\\boxed{dtype:value}$ to instances of $\\boxed{qudt:QuantityKind}$. + """^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "Quantity type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:QuantityType-value . + +qudt:QuantityValue + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Quantity Value +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Quantity value" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Quantifiable ; + rdfs:subClassOf qudt:Verifiable . + +qudt:RatioScale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Ratio Scale possesses a meaningful (unique and non-arbitrary) zero value. + Most measurement in the physical sciences and engineering is done on ratio scales. + Examples include mass, length, duration, plane angle, energy and electric charge. +

+

In contrast to interval scales, ratios are now meaningful because having a non-arbitrary zero point makes it meaningful to say, + for example, that one object has "twice the length" of another (= is "twice as long"). + Very informally, many ratio scales can be described as specifying "how much" of something (i.e. an amount or magnitude) or "how many" (a count). + The Kelvin temperature scale is a ratio scale because it has a unique, non-arbitrary zero point called absolute zero. +

"""^^rdf:HTML ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ratio scale" ; + rdfs:seeAlso qudt:IntervalScale ; + rdfs:seeAlso qudt:NominalScale ; + rdfs:seeAlso qudt:OrdinalScale ; + rdfs:subClassOf qudt:Scale . + +qudt:Rule + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Rule" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Rule-example ; + sh:property qudt:Rule-rationale ; + sh:property qudt:Rule-ruleType . + +qudt:RuleType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Rule Type" ; + rdfs:subClassOf qudt:EnumeratedValue . + +qudt:ScalarDataItem + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A Data Item holds a value that is compliant with a specified Datatype. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Scalar Data Item" ; + rdfs:subClassOf qudt:Concept ; + sh:property qudt:ScalarDataItem-datatype ; + sh:property qudt:ScalarDataItem-value . + +qudt:ScalarDatatype + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + Scalar data types are those that have a single value. + The permissible values are defined over a domain that may be integers, float, character or boolean. + Often a scalar data type is referred to as a primitive data type. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Scalar Datatype" ; + rdfs:subClassOf qudt:Datatype . + +qudt:Scale + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

Scales (also called "scales of measurement" or "levels of measurement") are expressions that typically are based on scale types. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Scale" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Scale-dataStructure ; + sh:property qudt:Scale-permissibleMaths ; + sh:property qudt:Scale-permissibleTransformation ; + sh:property qudt:Scale-scaleType . + +qudt:ScaleType + a rdfs:Class, sh:NodeShape ; + qudt:plainTextDescription """ + Scales, or scales of measurement (or categorization) provide ways of quantifying measurements, values and other enumerated values according to a normative frame of reference. + Four different types of scales are typically used. + These are interval, nominal, ordinal and ratio scales. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Scale type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + sh:property qudt:ScaleType-dataStructure ; + sh:property qudt:ScaleType-permissibleMaths ; + sh:property qudt:ScaleType-permissibleTransformation . + +qudt:SolidAngleUnit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S's projection onto the sphere. + A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. + Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Solid Angle Unit" ; + rdfs:subClassOf qudt:AngleUnit . + +qudt:Statement + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Statement" ; + rdfs:subClassOf rdf:Statement . + +qudt:Symbol + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Symbol" ; + rdfs:subClassOf qudt:Concept . + +qudt:SymmetricRelation + a rdfs:Class, sh:NodeShape ; + rdfs:comment "A `SymmetricRelation` is modeling construct used to define symmetric behavior for appropriate relations." ; + rdfs:label "Symmetric relation" ; + rdfs:subClassOf rdf:Property . + +qudt:SystemOfQuantityKinds + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A System of Quantity Kinds is a set of one or more quantity kinds together with a set of zero or more algebraic equations that define relationships between quantity kinds in the set. + In the physical sciences, the equations relating quantity kinds are typically physical laws and definitional relations, and constants of proportionality. + Examples include Newton's First Law of Motion, Coulomb's Law, and the definition of velocity as the instantaneous change in position. + In almost all cases, the system identifies a subset of base quantity kinds. +

+

The base set is chosen so that all other quantity kinds of interest can be derived from the base quantity kinds and the algebraic equations. + If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind. + From a scientific point of view, the division of quantities into base quantities and derived quantities is a matter of convention. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "System of Quantity Kinds" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:SystemOfQuantityKinds-baseDimensionEnumeration ; + sh:property qudt:SystemOfQuantityKinds-hasBaseQuantityKind ; + sh:property qudt:SystemOfQuantityKinds-hasQuantityKind ; + sh:property qudt:SystemOfQuantityKinds-hasUnitSystem ; + sh:property qudt:SystemOfQuantityKinds-systemDerivedQuantityKind . + +qudt:SystemOfUnits + a rdfs:Class, sh:NodeShape ; + dcterms:description """ +

A System of Units is a set of units which are chosen as the reference scales for some set of quantity kinds together with the definitions of each unit. + Units may be defined by experimental observation or by proportion to another unit not included in the system. + If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind. +

"""^^rdf:HTML ; + qudt:informativeReference "http://dbpedia.org/resource/Category:Systems_of_units"^^xsd:anyURI ; + qudt:informativeReference "http://www.ieeeghn.org/wiki/index.php/System_of_Measurement_Units"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "System of Units" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:SystemOfUnits-applicablePhysicalConstant ; + sh:property qudt:SystemOfUnits-hasAllowedUnit ; + sh:property qudt:SystemOfUnits-hasBaseUnit ; + sh:property qudt:SystemOfUnits-hasCoherentUnit ; + sh:property qudt:SystemOfUnits-hasDefinedUnit ; + sh:property qudt:SystemOfUnits-hasDerivedCoherentUnit ; + sh:property qudt:SystemOfUnits-hasDerivedUnit ; + sh:property qudt:SystemOfUnits-hasUnit ; + sh:property qudt:SystemOfUnits-prefix . + +qudt:TransformType + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "Transform type" ; + rdfs:subClassOf qudt:EnumeratedValue ; + skos:prefLabel "Transform type" . + +qudt:Unit + a rdfs:Class, sh:NodeShape ; + dcterms:description """ + A unit of measure, or unit, is a particular quantity value that has been chosen as a scale for measuring other quantities the same kind (more generally of equivalent dimension). + For example, the meter is a quantity of length that has been rigorously defined and standardized by the BIPM (International Board of Weights and Measures). + Any measurement of the length can be expressed as a number multiplied by the unit meter. + More formally, the value of a physical quantity Q with respect to a unit (U) is expressed as the scalar multiple of a real number (n) and U, as $Q = nU$. + """^^qudt:LatexString ; + qudt:informativeReference "http://dbpedia.org/resource/Category:Units_of_measure"^^xsd:anyURI ; + qudt:informativeReference "http://www.allmeasures.com/Fullconversion.asp"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Unit" ; + rdfs:subClassOf qudt:Concept ; + rdfs:subClassOf qudt:Verifiable ; + sh:property qudt:Unit-altSymbol ; + sh:property qudt:Unit-applicableSystem ; + sh:property qudt:Unit-conversionMultiplier ; + sh:property qudt:Unit-conversionMultiplierSN ; + sh:property qudt:Unit-conversionOffset ; + sh:property qudt:Unit-conversionOffsetSN ; + sh:property qudt:Unit-definedUnitOfSystem ; + sh:property qudt:Unit-derivedCoherentUnitOfSystem ; + sh:property qudt:Unit-derivedUnitOfSystem ; + sh:property qudt:Unit-expression ; + sh:property qudt:Unit-factorUnitScalar ; + sh:property qudt:Unit-hasDimensionVector ; + sh:property qudt:Unit-hasFactorUnit ; + sh:property qudt:Unit-hasQuantityKind ; + sh:property qudt:Unit-iec61360Code ; + sh:property qudt:Unit-latexDefinition ; + sh:property qudt:Unit-latexSymbol ; + sh:property qudt:Unit-mathMLdefinition ; + sh:property qudt:Unit-omUnit ; + sh:property qudt:Unit-prefix ; + sh:property qudt:Unit-qkdvDenominator ; + sh:property qudt:Unit-qkdvNumerator ; + sh:property qudt:Unit-scalingOf ; + sh:property qudt:Unit-siExactMatch ; + sh:property qudt:Unit-siUnitsExpression ; + sh:property qudt:Unit-symbol ; + sh:property qudt:Unit-ucumCode ; + sh:property qudt:Unit-udunitsCode ; + sh:property qudt:Unit-uneceCommonCode ; + sh:property qudt:Unit-unitOfSystem . + +qudt:UserQuantityKind + a rdfs:Class, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "User Quantity Kind" ; + rdfs:subClassOf qudt:AbstractQuantityKind ; + sh:property qudt:UserQuantityKind-hasQuantityKind . + +dcterms:abstract + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "abstract" . + +dcterms:contributor + a rdf:Property ; + rdfs:label "contributor" . + +dcterms:created + a rdf:Property ; + rdfs:label "created" . + +dcterms:creator + a rdf:Property ; + rdfs:label "creator" . + +dcterms:description + a rdf:Property ; + rdfs:label "description" . + +dcterms:isReplacedBy + a rdf:Property ; + rdfs:label "is replaced by" . + +dcterms:modified + a rdf:Property ; + rdfs:label "modified" . + +dcterms:rights + a rdf:Property ; + rdfs:label "rights" . + +dcterms:source + a rdf:Property ; + rdfs:label "source" . + +dcterms:subject + a rdf:Property ; + rdfs:label "subject" . + +dcterms:title + a rdf:Property ; + rdfs:label "title" . + +prov:wasDerivedFrom + a rdf:Property ; + rdfs:label "was derived from" . + +qudt:abbreviation + a rdf:Property ; + dcterms:description """ +

An abbreviation for a unit is a short ASCII string that is used in place of the full name for the unit in contexts where non-ASCII characters would be problematic, + or where using the abbreviation will enhance readability. + When a power of abase unit needs to be expressed, such as squares this can be done using abbreviations rather than symbols. + For example, sq ft means square foot, and cu ft means cubic foot. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "abbreviation" . + +qudt:acronym + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "acronym" . + +qudt:altSymbol + a rdf:Property ; + dcterms:description "An alternative symbol"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "alt symbol" ; + rdfs:subPropertyOf dtype:literal . + +qudt:applicableCGSUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable CGS unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableISOUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable ISO unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableImperialUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable Imperial unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicablePhysicalConstant + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable physical constant" . + +qudt:applicablePlanckUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable Planck unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableSIUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable SI unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableSystem + a rdf:Property ; + dcterms:description """ + This property relates a unit of measure with a unit system that may or may not define the unit, + but within which the unit is compatible. + """ ; + rdfs:isDefinedBy ; + rdfs:label "applicable system" . + +qudt:applicableUSCustomaryUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "applicable US Customary unit" ; + rdfs:subPropertyOf qudt:applicableUnit . + +qudt:applicableUnit + a rdf:Property ; + dcterms:description """ +

See this page on the QUDT GitHubWiki + on how "qudt:applicableUnit" is computed from "qudt:hasQuantityKind" and then materialized. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "applicable unit" . + +qudt:baseDimensionEnumeration + a rdf:Property ; + dcterms:description "This property associates a system of quantities with an enumeration that enumerates the base dimensions of the system in canonical order."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "base dimension enumeration" . + +qudt:baseUnitOfSystem + a rdf:Property ; + dcterms:description """ + This property relates a unit of measure to the system of units in which it is defined as a base unit for the system. + The base units of a system are used to define the derived units of the system by expressing the derived units as products of the base units raised to a rational power. + """ ; + rdfs:isDefinedBy ; + rdfs:label "is base unit of system" ; + rdfs:subPropertyOf qudt:definedUnitOfSystem . + +qudt:belongsToSystemOfQuantities + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "belongs to system of quantities" . + +qudt:categorizedAs + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "categorized as" . + +qudt:coherentUnitSystem + a rdf:Property ; + dcterms:description """ + A system of units is coherent with respect to a system of quantities and equations if the system of units is chosen in such a way that the equations between numerical values have exactly the same form (including the numerical factors) as the corresponding equations between the quantities. + In such a coherent system, no numerical factor other than the number 1 ever occurs in the expressions for the derived units in terms of the base units. + For example, the $newton$ and the $joule$. + These two are, respectively, the force that causes one kilogram to be accelerated at 1 metre per (1) second per (1) second, and the work done by 1 newton acting over 1 metre. + Being coherent refers to this consistent use of 1. + In the old c.g.s. system , with its base units the centimetre and the gram, the corresponding coherent units were the dyne and the erg, + respectively the force that causes 1 gram to be accelerated at 1 centimetre per (1) second per (1) second, and the work done by 1 dyne acting over 1 centimetre. + So $1\\,newton = 10^5 dyne$, $1 joule = 10^7 erg$, making each of the four compatible in a decimal sense within its respective other system, but not coherent therein.

+ """^^qudt:LatexString ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Coherence_(units_of_measurement)"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "coherent unit system" ; + rdfs:subPropertyOf qudt:hasUnitSystem . + +qudt:conversionMultiplier + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "conversion multiplier" . + +qudt:conversionMultiplierSN + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "conversion multiplier scientific" . + +qudt:conversionOffset + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "conversion offset" . + +qudt:conversionOffsetSN + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "conversion offset scientific" . + +qudt:currencyCode + a rdf:Property ; + dcterms:description "Alphabetic Currency Code as defined by ISO 4217. For example, the currency code for the US dollar is USD."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "currency code" . + +qudt:currencyExponent + a rdf:Property ; + dcterms:description """ + The currency exponent indicates the number of decimal places between a major currency unit and its minor currency unit. + For example, the US dollar is the major currency unit of the United States, and the US cent is the minor currency unit. Since one cent is 1/100 of a dollar, the US dollar has a currency exponent of 2. + However, the Japanese Yen has no minor currency units, so the yen has a currency exponent of 0. + """ ; + rdfs:isDefinedBy ; + rdfs:label "currency exponent" . + +qudt:currencyNumber + a rdf:Property ; + dcterms:description "Three-digit Currency Code as defined by ISO 4217. For example, the currency number for the US dollar is \"840\"."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "currency number" . + +qudt:dataStructure + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "data structure" . + +qudt:dbpediaMatch + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dbpedia match" . + +qudt:default + a rdf:Property ; + dcterms:description "The default element in an enumeration"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "default" . + +qudt:definedUnitOfSystem + a rdf:Property ; + dcterms:description "This property relates a unit of measure with the unit system that defines the unit."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "defined unit of system" ; + rdfs:subPropertyOf qudt:isUnitOfSystem . + +qudt:denominatorDimensionVector + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "denominator dimension vector" . + +qudt:deprecated + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "deprecated" . + +qudt:derivedCoherentUnitOfSystem + a rdf:Property ; + dcterms:description "This property relates a unit of measure to the unit system in which the unit is derived from the system's base units with a proportionality constant of one."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "is coherent derived unit of system" ; + rdfs:subPropertyOf qudt:definedUnitOfSystem ; + rdfs:subPropertyOf qudt:derivedUnitOfSystem . + +qudt:derivedNonCoherentUnitOfSystem + a rdf:Property ; + dcterms:description """ + This property relates a unit of measure to the unit system in which the unit is derived from the system's + base units without proportionality constant of one. + """ ; + rdfs:isDefinedBy ; + rdfs:label "is non-coherent derived unit of system" ; + rdfs:subPropertyOf qudt:derivedUnitOfSystem . + +qudt:derivedUnitOfSystem + a rdf:Property ; + dcterms:description """ + This property relates a unit of measure to the system of units in which it is defined as a derived unit. + That is, the derived unit is defined as a product of the base units for the system raised to some rational power. + """ ; + rdfs:isDefinedBy ; + rdfs:label "is derived unit of system" ; + rdfs:subPropertyOf qudt:isUnitOfSystem . + +qudt:dimensionExponent + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent" . + +qudt:dimensionExponentForAmountOfSubstance + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for amount of substance" . + +qudt:dimensionExponentForElectricCurrent + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for electric current" . + +qudt:dimensionExponentForLength + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for length" . + +qudt:dimensionExponentForLuminousIntensity + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for luminous intensity" . + +qudt:dimensionExponentForMass + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for mass" . + +qudt:dimensionExponentForThermodynamicTemperature + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for thermodynamic temperature" . + +qudt:dimensionExponentForTime + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension exponent for time" . + +qudt:dimensionInverse + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension inverse" . + +qudt:dimensionVectorForSI + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension vector for SI" . + +qudt:dimensionlessExponent + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimensionless exponent" . + +qudt:element + a rdf:Property ; + dcterms:description "An element of an enumeration"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "element" . + +qudt:exactConstant + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "exact constant" . + +qudt:exactMatch + a qudt:SymmetricRelation, rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "exact match" . + +qudt:example + a rdf:Property ; + dcterms:description """ + The 'qudt:example' property is used to annotate an instance of a class with a reference to a concept that is an example. + The type of this property is 'rdf:Property'. + This allows both scalar and object ranges. + """ ; + rdfs:isDefinedBy ; + rdfs:label "example" . + +qudt:exponent + a rdf:Property ; + qudt:plainTextDescription "Defines the exponent of a factor unit" ; + rdfs:isDefinedBy ; + rdfs:label "exponent" . + +qudt:expression + a rdf:Property ; + dcterms:description """ + An 'expression' is a finite combination of symbols that are well-formed according to rules that apply to units of measure, quantity kinds and their dimensions. + """ ; + rdfs:isDefinedBy ; + rdfs:label "expression" . + +qudt:factorUnitScalar + a rdf:Property ; + dcterms:description "For a derived unit that is not exactly the product of its factor units, this property defines the scalar with which that product has to be multiplied with."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "factorUnitScalar" . + +qudt:fieldCode + a rdf:Property ; + qudt:plainTextDescription """ + A field code is a generic property for representing unique codes that make up other identifers. + For example each QuantityKind class caries a domain code as its field code. + """ ; + rdfs:isDefinedBy ; + rdfs:label "field code" . + +qudt:figure + a rdf:Property ; + dcterms:description "Provides a link to an image."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "figure" . + +qudt:figureCaption + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "figure caption" . + +qudt:figureLabel + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "figure label" . + +qudt:guidance + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "guidance" . + +qudt:hasAllowedUnit + a rdf:Property ; + dcterms:description """ + This property relates a unit system with a unit of measure that is not defined by or part of the system, + but is allowed for use within the system. + An allowed unit must be convertible to some dimensionally eqiuvalent unit that is defined by the system. + """ ; + rdfs:isDefinedBy ; + rdfs:label "allowed unit" ; + rdfs:subPropertyOf qudt:hasUnit . + +qudt:hasBaseQuantityKind + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has base quantity kind" ; + rdfs:subPropertyOf qudt:hasQuantityKind . + +qudt:hasBaseUnit + a rdf:Property ; + dcterms:description """ + This property relates a system of units to a base unit defined within the system. + The base units of a system are used to define the derived units of the system by expressing + the derived units as products of the base units raised to a rational power. + """ ; + rdfs:isDefinedBy ; + rdfs:label "base unit" ; + rdfs:subPropertyOf qudt:hasCoherentUnit . + +qudt:hasCoherentUnit + a rdf:Property ; + dcterms:description """ + A coherent unit of measurement for a unit system is a defined unit that may be expressed as a product of powers + of the system's base units with the proportionality factor of one. + """ ; + rdfs:isDefinedBy ; + rdfs:label "coherent unit" ; + rdfs:subPropertyOf qudt:hasDefinedUnit . + +qudt:hasDefinedUnit + a rdf:Property ; + dcterms:description "This property relates a unit system with a unit of measure that is defined by the system."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "defined unit" ; + rdfs:subPropertyOf qudt:hasUnit . + +qudt:hasDenominatorPart + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has quantity kind dimension vector denominator part" . + +qudt:hasDerivedCoherentUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "derived coherent unit" ; + rdfs:subPropertyOf qudt:hasCoherentUnit ; + rdfs:subPropertyOf qudt:hasDerivedUnit . + +qudt:hasDerivedNonCoherentUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has coherent derived unit" ; + rdfs:subPropertyOf qudt:hasDerivedUnit . + +qudt:hasDerivedUnit + a rdf:Property ; + dcterms:description """ + This property relates a system of units to a unit of measure that is defined within the system in terms + of the base units for the system. + That is, the derived unit is defined as a product of the base units for the system raised to some rational power. + """ ; + rdfs:isDefinedBy ; + rdfs:label "derived unit" . + +qudt:hasDimension + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has dimension" . + +qudt:hasDimensionExpression + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "dimension expression" . + +qudt:hasDimensionVector + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has dimension vector" . + +qudt:hasFactorUnit + a rdf:Property ; + dcterms:description "This property relates a derived unit to one of its constituent factor units"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "hasFactorUnit" . + +qudt:hasNumeratorPart + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has numerator part" . + +qudt:hasPrefixUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "prefix unit" ; + rdfs:subPropertyOf qudt:hasDefinedUnit . + +qudt:hasQuantity + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has quantity" . + +qudt:hasQuantityKind + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has quantity kind" . + +qudt:hasReferenceQuantityKind + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has reference quantity kind" . + +qudt:hasRule + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has rule" . + +qudt:hasUnit + a rdf:Property ; + dcterms:description """ +

This property relates a factor unit to its unit or system of units with a unit of measure that is either: +

+
a) defined by the system,
+
b) accepted for use by the system and is convertible to a unit of equivalent dimension that is defined by the system,
+
c) a reference to the unit of measure of a quantity (variable or constant) of interest. +

Systems of units may distinguish between base and derived units. + Base units are the units which measure the base quantities for the corresponding system of quantities. + The base units are used to define units for all other quantities as products of powers of the base units. + Such units are called derived units for the system. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "has unit" . + +qudt:hasUnitSystem + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "has unit system" . + +qudt:hasVocabulary + a rdf:Property ; + qudt:plainTextDescription "Used to relate a class to one or more graphs where vocabularies for the class are defined." ; + rdfs:isDefinedBy ; + rdfs:label "has vocabulary" . + +qudt:height + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "height" . + +qudt:id + a rdf:Property ; + dcterms:description """ +

The "qudt:id" is an identifier string that uniquely identifies a QUDT concept. + The identifier is constructed using a prefix. + For example, units are coded using the pattern: "UCCCENNNN", where "CCC" is a numeric code or a category + and "NNNN" is a digit string for a member element of that category. +

+

For scaled units there may be an addition field that has the format "QNN" where "NN" is a digit string representing + an exponent power, and "Q" is a qualifier that indicates with the code "P" that the power is a positive decimal exponent, + or the code "N" for a negative decimal exponent, or the code "B" for binary positive exponents. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "qudt id" . + +qudt:iec61360Code + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "iec-61360 code" . + +qudt:image + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "image" . + +qudt:imageLocation + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "image location" . + +qudt:informativeReference + a rdf:Property ; + dcterms:description "Provides a way to reference a source that provided useful but non-normative information." ; + rdfs:isDefinedBy ; + rdfs:label "informative reference" . + +qudt:isDeltaQuantity + a rdf:Property ; + dcterms:description """ + This property is used to identify a Quantity instance that is a measure of a change, or interval, of some property, + rather than a measure of its absolute value. + This is important for measurements such as temperature differences where the conversion among units would be calculated differently because of offsets. + """ ; + rdfs:isDefinedBy ; + rdfs:label "is Delta Quantity" . + +qudt:isDimensionInSystem + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "is dimension in system" . + +qudt:isMetricUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "is metric unit" . + +qudt:isUnitOfSystem + a rdf:Property ; + dcterms:description """ + This property relates a unit of measure with a system of units that either a) defines the unit + or b) allows the unit to be used within the system. + """ ; + rdfs:isDefinedBy ; + rdfs:label "is unit of system" . + +qudt:isoNormativeReference + a rdf:Property ; + dcterms:description "Provides a way to reference the ISO unit definition." ; + rdfs:isDefinedBy ; + rdfs:label "normative reference (ISO)" ; + rdfs:subPropertyOf qudt:normativeReference . + +qudt:landscape + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "landscape" . + +qudt:latexDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "latex definition" . + +qudt:latexSymbol + a rdf:Property ; + dcterms:description """ + The symbol is a glyph that is used to represent some concept, typically a unit or a quantity, in a compact form. + For example, the symbol for an Ohm is $ohm$. + This contrasts with 'unit:abbreviation', which gives a short alphanumeric abbreviation for the unit, 'ohm' for Ohm. + """^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "latex symbol" . + +qudt:mathDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "math definition" . + +qudt:mathMLdefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "mathML definition" ; + rdfs:subPropertyOf qudt:mathDefinition . + +qudt:normativeReference + a rdf:Property ; + dcterms:description "Provides a way to reference information that is an authorative source providing a standard definition" ; + rdfs:isDefinedBy ; + rdfs:label "normative reference" . + +qudt:numeratorDimensionVector + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "numerator dimension vector" . + +qudt:numericValue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "numeric value" . + +qudt:omUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "om unit" . + +qudt:onlineReference + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "online reference" . + +qudt:order + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "order" . + +qudt:outOfScope + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "out of scope" . + +qudt:permissibleMaths + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "permissible maths" . + +qudt:permissibleTransformation + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "permissible transformation" . + +qudt:plainTextDescription + a rdf:Property ; + dcterms:description "A plain text description is used to provide a description with only simple ASCII characters for cases where LaTeX , HTML or other markup would not be appropriate." ; + rdfs:isDefinedBy ; + rdfs:label "description (plain text)" . + +qudt:prefix + a rdf:Property ; + dcterms:description "Associates a unit with the appropriate prefix, if any." ; + rdfs:isDefinedBy ; + rdfs:label "prefix" . + +qudt:prefixMultiplier + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "prefix multiplier" . + +qudt:prefixMultiplierSN + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "prefix multiplier scientific" . + +qudt:qkdvDenominator + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "denominator dimension vector" . + +qudt:qkdvNumerator + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "numerator dimension vector" . + +qudt:quantity + a rdf:Property ; + dcterms:description "a property to relate an observable thing with a quantity (qud:Quantity)" ; + rdfs:isDefinedBy ; + rdfs:label "quantity" . + +qudt:quantityValue + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "quantity value" . + +qudt:rationale + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rationale" . + +qudt:reference + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "reference" . + +qudt:referenceUnit + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "reference unit" . + +qudt:relativeStandardUncertainty + a rdf:Property ; + dcterms:description "The relative standard uncertainty of a measurement is the (absolute) standard uncertainty divided by the magnitude of the exact value." ; + rdfs:isDefinedBy ; + rdfs:label "relative standard uncertainty" . + +qudt:relevantQuantityKind + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "relevant quantity kind" . + +qudt:relevantUnit + a rdf:Property ; + dcterms:description "This property is used for qudt:Discipline instances to identify the Unit instances that are used within a given discipline." ; + rdfs:isDefinedBy ; + rdfs:label "Relevant Unit" . + +qudt:ruleType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "rule type" . + +qudt:scaleType + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "scale type" . + +qudt:scalingOf + a rdf:Property ; + dcterms:description "This property relates a unit that is scaled to the base unit that its qudt:conversionMultiplier converts it to"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "scalingOf" . + +qudt:siExactMatch + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "Individual from SI Reference Point" . + +qudt:siUnitsExpression + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "si units expression" . + +qudt:standardUncertainty + a rdf:Property ; + dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements." ; + rdfs:isDefinedBy ; + rdfs:label "standard uncertainty" . + +qudt:standardUncertaintySN + a rdf:Property ; + dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements." ; + rdfs:isDefinedBy ; + rdfs:label "standard uncertainty scientific" . + +qudt:symbol + a rdf:Property ; + dcterms:description "The symbol is a glyph that is used to represent some concept, typically a unit or a quantity, in a compact form. For example, the symbol for an Ohm is $ohm$. This contrasts with 'unit:abbreviation', which gives a short alphanumeric abbreviation for the unit, 'ohm' for Ohm."^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "symbol" ; + rdfs:subPropertyOf dtype:literal . + +qudt:systemDefinition + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "system definition" . + +qudt:systemDerivedQuantityKind + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "system derived quantity kind" ; + rdfs:subPropertyOf qudt:hasQuantityKind . + +qudt:systemDimension + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "system dimension" . + +qudt:ucumCode + a rdf:Property ; + dcterms:description "

ucumCode associates a QUDT unit with its UCUM code (case-sensitive).

In SHACL the values are derived from specific ucum properties using 'sh:values'.

"^^rdf:HTML ; + dcterms:source "https://ucum.org/ucum.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "ucum code" ; + rdfs:seeAlso ; + rdfs:subPropertyOf skos:notation . + +qudt:udunitsCode + a rdf:Property ; + dcterms:description "The UDUNITS package supports units of physical quantities. Its C library provides for arithmetic manipulation of units and for conversion of numeric values between compatible units. The package contains an extensive unit database, which is in XML format and user-extendable. The package also contains a command-line utility for investigating units and converting values."^^rdf:HTML ; + dcterms:source "https://www.unidata.ucar.edu/software/udunits/"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "udunits code" . + +qudt:uneceCommonCode + a rdf:Property ; + dcterms:description "The UN/CEFACT Recommendation 20 provides three character alphabetic and alphanumeric codes for representing units of measurement for length, area, volume/capacity, mass (weight), time, and other quantities used in international trade. The codes are intended for use in manual and/or automated systems for the exchange of information between participants in international trade."^^rdf:HTML ; + dcterms:source "https://service.unece.org/trade/uncefact/vocabulary/rec20/"^^xsd:anyURI ; + dcterms:source "https://unece.org/trade/documents/2021/06/uncefact-rec20-0"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "unece common code" . + +qudt:unitFor + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "unit for" . + +qudt:url + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "url" . + +qudt:value + a rdf:Property ; + dcterms:description "A property to relate an observable thing with a value expressed as a decimal"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "value" . + +qudt:valueQuantity + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "value for quantity" . + +qudt:valueSN + a rdf:Property ; + dcterms:description "A property to relate an observable thing with a value expressed in scientific notation"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "value scientific" . + +qudt:vectorMagnitude + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "vector magnitude" . + +qudt:width + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "width" . + +voag:supersededBy + a rdf:Property ; + rdfs:isDefinedBy ; + rdfs:label "superseded by" . + + + vaem:namespace "http://www.linkedmodel.org/schema/dtype#"^^xsd:anyURI ; + vaem:namespacePrefix "dtype" . + +qudt:AbstractQuantityKind-altSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:altSymbol . + +qudt:AbstractQuantityKind-broader + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:path skos:broader . + +qudt:AbstractQuantityKind-latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexSymbol . + +qudt:AbstractQuantityKind-symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:symbol . + +qudt:Aspect + a qudt:AspectClass, sh:NodeShape ; + dcterms:description "An aspect is an abstract type class that defines properties that can be reused."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Aspect" ; + rdfs:subClassOf rdfs:Resource . + +qudt:BaseDimensionMagnitude-hasBaseQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:hasBaseQuantityKind . + +qudt:BaseDimensionMagnitude-vectorMagnitude + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:float ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:vectorMagnitude . + +qudt:Citation-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path dcterms:description . + +qudt:Citation-url + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:maxCount 1 ; + sh:path qudt:url . + +qudt:Comment-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path dcterms:description . + +qudt:Comment-rationale + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype rdf:HTML ; + sh:minCount 0 ; + sh:path qudt:rationale . + +qudt:Concept-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:abbreviation . + +qudt:Concept-code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path dtype:code . + +qudt:Concept-deprecated + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:deprecated . + +qudt:Concept-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path dcterms:description . + +qudt:Concept-exactMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Concept ; + sh:path qudt:exactMatch . + +qudt:Concept-guidance + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype rdf:HTML ; + sh:path qudt:guidance . + +qudt:Concept-hasRule + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Rule ; + sh:path qudt:hasRule . + +qudt:Concept-id + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:id . + +qudt:Concept-isReplacedBy + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path dcterms:isReplacedBy . + +qudt:Concept-plainTextDescription + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:plainTextDescription . + +qudt:ConstantValue-exactConstant + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:exactConstant . + +qudt:ContextualUnit-broader + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path skos:broader . + +qudt:CurrencyUnit-currencyCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:currencyCode . + +qudt:CurrencyUnit-currencyExponent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:path qudt:currencyExponent . + +qudt:CurrencyUnit-currencyNumber + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:currencyNumber ; + sh:pattern "^\\d{3}$" . + +qudt:EnumeratedQuantity-enumeratedValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EnumeratedValue ; + sh:maxCount 1 ; + sh:path qudt:enumeratedValue . + +qudt:EnumeratedQuantity-enumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Enumeration ; + sh:maxCount 1 ; + sh:path qudt:enumeration . + +qudt:EnumeratedValue-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:abbreviation . + +qudt:EnumeratedValue-altSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:altSymbol . + +qudt:EnumeratedValue-description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path dcterms:description . + +qudt:EnumeratedValue-symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:symbol . + +qudt:Enumeration-abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:abbreviation . + +qudt:Enumeration-default + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EnumeratedValue ; + sh:maxCount 1 ; + sh:path qudt:default . + +qudt:Enumeration-element + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:EnumeratedValue ; + sh:minCount 1 ; + sh:path qudt:element . + +qudt:FactorUnit-exponent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:path qudt:exponent . + +qudt:FactorUnit-hasUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:path qudt:hasUnit . + +qudt:Figure-figureCaption + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:figureCaption . + +qudt:Figure-figureLabel + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:figureLabel . + +qudt:Figure-height + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:height . + +qudt:Figure-image + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:maxCount 1 ; + sh:path qudt:image . + +qudt:Figure-imageLocation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:imageLocation . + +qudt:Figure-landscape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:path qudt:landscape . + +qudt:Figure-width + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:width . + +qudt:InformativeReferencePropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or ( [ + sh:datatype xsd:anyURI ; + ] [ + sh:class qudt:Citation ; + ] ) ; + sh:path qudt:informativeReference . + +qudt:LatexString + a rdfs:Datatype, sh:NodeShape ; + dcterms:description "A type of string in which some characters may be wrapped with '$' and '$ characters for LaTeX rendering." ; + rdfs:isDefinedBy ; + rdfs:label "Latex String" ; + rdfs:subClassOf xsd:string . + +qudt:NumericTypeUnion + a rdf:List ; + dcterms:description """ + An rdf:List that can be used in property constraints as value for sh:or to indicate that all values + of a property must be a string, an integer, a float, a double or a decimal. + """ ; + rdf:first [ + sh:datatype xsd:string ; + ] ; + rdf:rest ( [ + sh:datatype xsd:nonNegativeInteger ; + ] [ + sh:datatype xsd:positiveInteger ; + ] [ + sh:datatype xsd:integer ; + ] [ + sh:datatype xsd:int ; + ] [ + sh:datatype xsd:float ; + ] [ + sh:datatype xsd:double ; + ] [ + sh:datatype xsd:decimal ; + ] ) ; + rdfs:isDefinedBy ; + rdfs:label "Numeric Type Union" . + +qudt:OrderedType-literal + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path dtype:literal . + +qudt:OrdinalScale-order + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:nonNegativeInteger ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:order . + +qudt:Organization-url + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:minCount 0 ; + sh:path qudt:url . + +qudt:PhysicalConstant-altSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:altSymbol . + +qudt:PhysicalConstant-applicableSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:applicableSystem . + +qudt:PhysicalConstant-applicableUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:applicableUnit . + +qudt:PhysicalConstant-dbpediaMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:minCount 0 ; + sh:path qudt:dbpediaMatch . + +qudt:PhysicalConstant-exactConstant + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:path qudt:exactConstant . + +qudt:PhysicalConstant-hasDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:path qudt:hasDimensionVector . + +qudt:PhysicalConstant-iec61360Code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:minCount 0 ; + sh:path qudt:iec61360Code . + +qudt:PhysicalConstant-isoNormativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:path qudt:isoNormativeReference . + +qudt:PhysicalConstant-latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:maxCount 1 ; + sh:path qudt:latexDefinition . + +qudt:PhysicalConstant-latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexSymbol . + +qudt:PhysicalConstant-mathMLdefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:mathMLdefinition . + +qudt:PhysicalConstant-normativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:path qudt:normativeReference . + +qudt:PhysicalConstant-siExactMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:siExactMatch . + +qudt:PhysicalConstant-symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:symbol . + +qudt:PhysicalConstant-ucumCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:UCUMcs ; + sh:path qudt:ucumCode . + +qudt:Prefix-altSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:altSymbol . + +qudt:Prefix-latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexSymbol . + +qudt:Prefix-prefixMultiplier + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:path qudt:prefixMultiplier . + +qudt:Prefix-prefixMultiplierSN + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:path qudt:prefixMultiplierSN . + +qudt:Prefix-siExactMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:siExactMatch . + +qudt:Prefix-symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:symbol . + +qudt:Prefix-ucumCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:ucumCode ; + sh:pattern "[\\x21,\\x23-\\x27,\\x2a,\\x2c,\\x30-\\x3c,\\x3e-\\x5a,\\x5c,\\x5e-\\x7a,\\x7c,\\x7e]+" . + +qudt:Quantifiable-datatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or ( [ + sh:class qudt:Datatype ; + ] [ + sh:class qudt:EnumeratedValue ; + ] ) ; + sh:path qudt:datatype . + +qudt:Quantifiable-hasUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:path qudt:hasUnit . + +qudt:Quantifiable-relativeStandardUncertainty + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:path qudt:relativeStandardUncertainty . + +qudt:Quantifiable-standardUncertainty + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:path qudt:standardUncertainty . + +qudt:Quantifiable-standardUncertaintySN + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:path qudt:standardUncertaintySN . + +qudt:Quantifiable-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:node ( [ + sh:or qudt:NumericTypeUnion ; + ] [ + sh:property [ + sh:class qudt:DataItem ; + sh:path qudt:value ; + ] ; + ] [ + sh:property [ + sh:class qudt:EnumeratedValue ; + sh:path qudt:value ; + ] ; + ] ) ; + sh:path qudt:value . + +qudt:Quantifiable-valueSN + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:valueSN . + +qudt:Quantity-hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:minCount 0 ; + sh:path qudt:hasQuantityKind . + +qudt:Quantity-isDeltaQuantity + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:boolean ; + sh:path qudt:isDeltaQuantity . + +qudt:Quantity-quantityValue + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityValue ; + sh:path qudt:quantityValue . + +qudt:QuantityKind-applicableCGSUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableCGSUnit . + +qudt:QuantityKind-applicableISOUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableISOUnit . + +qudt:QuantityKind-applicableImperialUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableImperialUnit . + +qudt:QuantityKind-applicableSIUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableSIUnit . + +qudt:QuantityKind-applicableUSCustomaryUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableUSCustomaryUnit . + +qudt:QuantityKind-applicableUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:minCount 0 ; + sh:path qudt:applicableUnit . + +qudt:QuantityKind-baseCGSUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:baseCGSUnitDimensions . + +qudt:QuantityKind-baseISOUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:baseISOUnitDimensions . + +qudt:QuantityKind-baseImperialUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:baseImperialUnitDimensions . + +qudt:QuantityKind-baseSIUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:baseSIUnitDimensions . + +qudt:QuantityKind-baseUSCustomaryUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:baseUSCustomaryUnitDimensions . + +qudt:QuantityKind-belongsToSystemOfQuantities + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfQuantityKinds ; + sh:path qudt:belongsToSystemOfQuantities . + +qudt:QuantityKind-dimensionVectorForSI + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector_SI ; + sh:maxCount 1 ; + sh:path qudt:dimensionVectorForSI . + +qudt:QuantityKind-expression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:minCount 0 ; + sh:path qudt:expression . + +qudt:QuantityKind-hasDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:hasDimensionVector ; + sh:severity sh:Info . + +qudt:QuantityKind-iec61360Code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:iec61360Code . + +qudt:QuantityKind-latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:maxCount 1 ; + sh:path qudt:latexDefinition . + +qudt:QuantityKind-mathMLdefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:mathMLdefinition . + +qudt:QuantityKind-qkdvDenominator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:path qudt:qkdvDenominator . + +qudt:QuantityKind-qkdvNumerator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:path qudt:qkdvNumerator . + +qudt:QuantityKind-siExactMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:siExactMatch . + +qudt:QuantityKindDimensionVector-dimensionExponentForAmountOfSubstance + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForAmountOfSubstance . + +qudt:QuantityKindDimensionVector-dimensionExponentForElectricCurrent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForElectricCurrent . + +qudt:QuantityKindDimensionVector-dimensionExponentForLength + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForLength . + +qudt:QuantityKindDimensionVector-dimensionExponentForLuminousIntensity + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForLuminousIntensity . + +qudt:QuantityKindDimensionVector-dimensionExponentForMass + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForMass . + +qudt:QuantityKindDimensionVector-dimensionExponentForThermodynamicTemperature + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForThermodynamicTemperature . + +qudt:QuantityKindDimensionVector-dimensionExponentForTime + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionExponentForTime . + +qudt:QuantityKindDimensionVector-dimensionlessExponent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:dimensionlessExponent . + +qudt:QuantityKindDimensionVector-hasReferenceQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:path qudt:hasReferenceQuantityKind . + +qudt:QuantityKindDimensionVector-latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:maxCount 1 ; + sh:path qudt:latexDefinition . + +qudt:QuantityKindDimensionVector-latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexSymbol . + +qudt:QuantityType-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:path dtype:value . + +qudt:Rule-example + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:minCount 0 ; + sh:path qudt:example . + +qudt:Rule-rationale + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype rdf:HTML ; + sh:minCount 0 ; + sh:path qudt:rationale . + +qudt:Rule-ruleType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:RuleType ; + sh:path qudt:ruleType . + +qudt:ScalarDataItem-datatype + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ScalarDatatype ; + sh:maxCount 1 ; + sh:path qudt:datatype . + +qudt:ScalarDataItem-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or ( [ + sh:class qudt:QuantityValue ; + ] [ + sh:or qudt:NumericTypeUnion ; + ] ) ; + sh:path qudt:value . + +qudt:Scale-dataStructure + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:dataStructure . + +qudt:Scale-permissibleMaths + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:MathsFunctionType ; + sh:path qudt:permissibleMaths . + +qudt:Scale-permissibleTransformation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TransformType ; + sh:path qudt:permissibleTransformation . + +qudt:Scale-scaleType + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:ScaleType ; + sh:maxCount 1 ; + sh:path qudt:scaleType . + +qudt:ScaleType-dataStructure + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:dataStructure . + +qudt:ScaleType-permissibleMaths + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:MathsFunctionType ; + sh:path qudt:permissibleMaths . + +qudt:ScaleType-permissibleTransformation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:TransformType ; + sh:path qudt:permissibleTransformation . + +qudt:SystemOfQuantityKinds-baseDimensionEnumeration + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Enumeration ; + sh:maxCount 1 ; + sh:path qudt:baseDimensionEnumeration . + +qudt:SystemOfQuantityKinds-hasBaseQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:minCount 0 ; + sh:path qudt:hasBaseQuantityKind . + +qudt:SystemOfQuantityKinds-hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:minCount 0 ; + sh:path qudt:hasQuantityKind . + +qudt:SystemOfQuantityKinds-hasUnitSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:maxCount 1 ; + sh:path qudt:hasUnitSystem . + +qudt:SystemOfQuantityKinds-systemDerivedQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:minCount 0 ; + sh:path qudt:systemDerivedQuantityKind . + +qudt:SystemOfUnits-applicablePhysicalConstant + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:PhysicalConstant ; + sh:path qudt:applicablePhysicalConstant . + +qudt:SystemOfUnits-hasAllowedUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasAllowedUnit . + +qudt:SystemOfUnits-hasBaseUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasBaseUnit . + +qudt:SystemOfUnits-hasCoherentUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasCoherentUnit . + +qudt:SystemOfUnits-hasDefinedUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasDefinedUnit . + +qudt:SystemOfUnits-hasDerivedCoherentUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasDerivedCoherentUnit . + +qudt:SystemOfUnits-hasDerivedUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasDerivedUnit . + +qudt:SystemOfUnits-hasUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:path qudt:hasUnit . + +qudt:SystemOfUnits-prefix + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Prefix ; + sh:path qudt:prefix . + +qudt:UCUMcs + a rdfs:Datatype, sh:NodeShape ; + dcterms:description "Lexical pattern for the case-sensitive version of UCUM code" ; + dcterms:source ; + rdfs:isDefinedBy ; + rdfs:label "case-sensitive UCUM code" ; + rdfs:seeAlso ; + rdfs:subClassOf xsd:string . + +qudt:Unit-altSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:altSymbol . + +qudt:Unit-applicableSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:applicableSystem . + +qudt:Unit-conversionMultiplier + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:path qudt:conversionMultiplier . + +qudt:Unit-conversionMultiplierSN + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:path qudt:conversionMultiplierSN . + +qudt:Unit-conversionOffset + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:path qudt:conversionOffset . + +qudt:Unit-conversionOffsetSN + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:double ; + sh:maxCount 1 ; + sh:path qudt:conversionOffsetSN . + +qudt:Unit-definedUnitOfSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:definedUnitOfSystem . + +qudt:Unit-derivedCoherentUnitOfSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:derivedCoherentUnitOfSystem . + +qudt:Unit-derivedUnitOfSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:derivedUnitOfSystem . + +qudt:Unit-expression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:minCount 0 ; + sh:path qudt:expression . + +qudt:Unit-factorUnitScalar + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:decimal ; + sh:maxCount 1 ; + sh:path qudt:factorUnitScalar . + +qudt:Unit-hasDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:hasDimensionVector . + +qudt:Unit-hasFactorUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:nodeKind sh:BlankNodeOrIRI ; + sh:path qudt:hasFactorUnit . + +qudt:Unit-hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:minCount 1 ; + sh:path qudt:hasQuantityKind ; + sh:severity sh:Info . + +qudt:Unit-iec61360Code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:iec61360Code . + +qudt:Unit-latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexDefinition . + +qudt:Unit-latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:LatexString ; + sh:minCount 0 ; + sh:path qudt:latexSymbol . + +qudt:Unit-mathMLdefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:maxCount 1 ; + sh:path qudt:mathMLdefinition . + +qudt:Unit-omUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:path qudt:omUnit . + +qudt:Unit-prefix + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Prefix ; + sh:maxCount 1 ; + sh:path qudt:prefix . + +qudt:Unit-qkdvDenominator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:path qudt:qkdvDenominator . + +qudt:Unit-qkdvNumerator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKindDimensionVector ; + sh:maxCount 1 ; + sh:path qudt:qkdvNumerator . + +qudt:Unit-scalingOf + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:Unit ; + sh:maxCount 1 ; + sh:nodeKind sh:BlankNodeOrIRI ; + sh:path qudt:scalingOf . + +qudt:Unit-siExactMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:path qudt:siExactMatch . + +qudt:Unit-siUnitsExpression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:minCount 0 ; + sh:path qudt:siUnitsExpression . + +qudt:Unit-symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:minCount 0 ; + sh:path qudt:symbol . + +qudt:Unit-ucumCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype qudt:UCUMcs ; + sh:path qudt:ucumCode ; + sh:pattern "[\\x21-\\x7e]+" . + +qudt:Unit-udunitsCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:udunitsCode . + +qudt:Unit-uneceCommonCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:string ; + sh:path qudt:uneceCommonCode . + +qudt:Unit-unitOfSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:SystemOfUnits ; + sh:path qudt:isUnitOfSystem . + +qudt:UserQuantityKind-hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:class qudt:QuantityKind ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:path qudt:hasQuantityKind . + +qudt:ValuePropertyShape + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:node qudt:NumericListShape ; + sh:path qudt:value . + +qudt:Verifiable + a qudt:AspectClass, sh:NodeShape ; + dcterms:description """ + An aspect class that holds properties that provide external knowledge and specifications of a given resource. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Verifiable" ; + rdfs:subClassOf qudt:Aspect ; + sh:property qudt:InformativeReferencePropertyShape ; + sh:property qudt:Verifiable-dbpediaMatch ; + sh:property qudt:Verifiable-isoNormativeReference ; + sh:property qudt:Verifiable-normativeReference . + +qudt:Verifiable-dbpediaMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:minCount 0 ; + sh:path qudt:dbpediaMatch . + +qudt:Verifiable-isoNormativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:minCount 0 ; + sh:path qudt:isoNormativeReference . + +qudt:Verifiable-normativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:datatype xsd:anyURI ; + sh:minCount 0 ; + sh:path qudt:normativeReference . + +vaem:GMD_SHACLQUDT-SCHEMA + a vaem:GraphMetaData ; + dcterms:contributor "Daniel Mekonnen" ; + dcterms:contributor "David Price" ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "James E. Masters" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2011-04-20"^^xsd:date ; + dcterms:creator "Ralph Hodgson" ; + dcterms:description """

The QUDT, or "Quantity, Unit, Dimension and Type" schema defines the base classes properties, and restrictions used for modeling physical quantities, units of measure, and their dimensions in various measurement systems. The goal of the QUDT ontology is to provide a unified model of, measurable quantities, units for measuring different kinds of quantities, the numerical values of quantities in different units of measure and the data structures and data types used to store and manipulate these objects in software.

+ +

Except for unit prefixes, all units are specified in separate vocabularies. Descriptions are provided in both HTML and LaTeX formats. A quantity is a measure of an observable phenomenon, that, when associated with something, becomes a property of that thing; a particular object, event, or physical system.

+ +

A quantity has meaning in the context of a measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Or, as stated at Wikipedia, in the language of measurement, quantities are quantifiable aspects of the world, such as time, distance, velocity, mass, momentum, energy, and weight, and units are used to describe their measure. Many of these quantities are related to each other by various physical laws, and as a result the units of some of the quantities can be expressed as products (or ratios) of powers of other units (e.g., momentum is mass times velocity and velocity is measured in distance divided by time).

"""^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights """ + This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved. + +THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + """ ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "QUDT" ; + dcterms:title "QUDT SHACL Schema - Version 3.1.0" ; + owl:versionIRI ; + qudt:informativeReference "http://unitsofmeasure.org/trac"^^xsd:anyURI ; + qudt:informativeReference "http://www.bipm.org/en/publications/si-brochure"^^xsd:anyURI ; + qudt:informativeReference "http://www.bipm.org/utils/common/documents/jcgm/JCGM_200_2008.pdf"^^xsd:anyURI ; + qudt:informativeReference "https://books.google.com/books?id=pIlCAAAAIAAJ&dq=dimensional+analysis&hl=en"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/physical-measurement-laboratory/special-publication-811"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT SHACL Schema Metadata Version 3.1.0" ; + vaem:graphName "qudt" ; + vaem:graphTitle "Quantities, Units, Dimensions and Types (QUDT) SHACL Schema - Version 3.1.0" ; + vaem:hasGraphRole vaem:SHACLSchemaGraph ; + vaem:hasOwner vaem:QUDT ; + vaem:hasSteward vaem:QUDT ; + vaem:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_SCHEMA-SHACL-QUDT.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/schema/qudt/" ; + vaem:namespacePrefix "qudt" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_SCHEMA-SHACL-QUDT.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/schema/shacl/qudt"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:contributor ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:description ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:source ; + vaem:usesNonImportedResource dcterms:subject ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource voag:QUDT-Attribution ; + vaem:withAttributionTo voag:QUDT-Attribution . + +vaem:QUDT + a vaem:Party ; + dcterms:description "QUDT is a non-profit organization that governs the QUDT ontologies."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "QUDT" ; + vaem:graphName "qudt.org" ; + vaem:website "http://www.qudt.org"^^xsd:anyURI . + +voag:QUDT-SchemaCatalogEntry + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Schema Catalog Entry" . + + diff --git a/libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl b/libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl new file mode 100644 index 000000000..497a7ac50 --- /dev/null +++ b/libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl @@ -0,0 +1,623 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix qudt: . +@prefix sh: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports sh: ; + rdfs:comment "Supplements the generated SHACL Schema with constructs not expressible in the QUDT OWL Ontology" ; + rdfs:label "QUDT SHACL Schema Supplement Version 3.1.0" ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://purl.org/dc/terms/"^^xsd:anyURI ; + sh:prefix "dcterms" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ; + sh:prefix "qudt" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://qudt.org/vocab/dimensionvector/"^^xsd:anyURI ; + sh:prefix "qkdv" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://qudt.org/vocab/quantitykind/"^^xsd:anyURI ; + sh:prefix "quantitykind" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://qudt.org/vocab/unit/"^^xsd:anyURI ; + sh:prefix "unit" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://www.w3.org/1999/02/22-rdf-syntax-ns#"^^xsd:anyURI ; + sh:prefix "rdf" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://www.w3.org/2000/01/rdf-schema#"^^xsd:anyURI ; + sh:prefix "rdfs" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://www.w3.org/2002/07/owl#"^^xsd:anyURI ; + sh:prefix "owl" ; + ] ; + sh:declare [ + a sh:PrefixDeclaration ; + sh:namespace "http://www.w3.org/2004/02/skos/core#"^^xsd:anyURI ; + sh:prefix "skos" ; + ] ; + vaem:hasGraphMetadata vaem:GMD_SHACLQUDTOVERLAY-SCHEMA . + +qudt:AbstractQuantityKind-qudt_latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:AbstractQuantityKind-qudt_symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:AbstractQuantityKind-skos_broader + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "120"^^xsd:decimal . + +qudt:ApplicableUnitsGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "Applicable Units" ; + sh:order "30"^^xsd:decimal . + +qudt:Aspect + rdfs:isDefinedBy ; + sh:property qudt:Aspect-rdfs_isDefinedBy . + +qudt:Aspect-rdfs_isDefinedBy + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "200"^^xsd:decimal ; + sh:path rdfs:isDefinedBy . + +qudt:Citation-qudt_description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:TextTypeUnion . + +qudt:Concept + rdfs:isDefinedBy ; + sh:property qudt:Concept-rdf_type ; + sh:property qudt:Concept-rdfs_isDefinedBy ; + sh:property qudt:Concept-rdfs_label ; + sh:property qudt:Concept-rdfs_seeAlso ; + sh:property qudt:Concept-skos_altLabel . + +qudt:Concept-dcterms_description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:name "dcterms description" ; + sh:order "60"^^xsd:decimal . + +qudt:Concept-qudt_abbreviation + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "18"^^xsd:decimal . + +qudt:Concept-qudt_code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "100"^^xsd:decimal . + +qudt:Concept-qudt_description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:name "full description" ; + sh:order "60"^^xsd:decimal . + +qudt:Concept-qudt_guidance + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "60"^^xsd:decimal . + +qudt:Concept-qudt_hasRule + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "95"^^xsd:decimal . + +qudt:Concept-qudt_id + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Concept-qudt_plainTextDescription + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Concept-rdf_type + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:minCount 1 ; + sh:name "type" ; + sh:order "10"^^xsd:decimal ; + sh:path rdf:type . + +qudt:Concept-rdfs_isDefinedBy + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "200"^^xsd:decimal ; + sh:path rdfs:isDefinedBy . + +qudt:Concept-rdfs_label + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:minCount 1 ; + sh:order "10"^^xsd:decimal ; + sh:path rdfs:label ; + sh:severity sh:Warning . + +qudt:Concept-rdfs_seeAlso + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "900"^^xsd:decimal ; + sh:path rdfs:seeAlso . + +qudt:Concept-skos_altLabel + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "12"^^xsd:decimal ; + sh:path skos:altLabel . + +qudt:EnumeratedValue-qudt_description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:TextTypeUnion . + +qudt:IdentifiersAndDescriptionsPropertyGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "Identifiers and Descriptions" ; + sh:order "10"^^xsd:decimal . + +qudt:Narratable + a qudt:AspectClass, sh:NodeShape ; + rdfs:comment "

Narratable specifies properties that provide for documentation and references.

"^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Narratable" ; + rdfs:subClassOf qudt:Aspect . + +qudt:PhysicalConstant-qudt_latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:PropertiesGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "Properties" ; + sh:order "20"^^xsd:decimal . + +qudt:Quantifiable-qudt_value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:maxCount 1 ; + sh:or ( [ + sh:datatype xsd:float ; + ] [ + sh:datatype xsd:double ; + ] [ + sh:datatype xsd:integer ; + ] [ + sh:datatype xsd:decimal ; + ] ) ; + sh:path qudt:value . + +qudt:Quantity-qudt_description + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_applicableCGSUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:deactivated true . + +qudt:QuantityKind-qudt_applicableSIUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:deactivated true . + +qudt:QuantityKind-qudt_applicableUSCustomaryUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:deactivated true . + +qudt:QuantityKind-qudt_applicableUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:ApplicableUnitsGroup ; + sh:order "10"^^xsd:decimal . + +qudt:QuantityKind-qudt_baseCGSUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_baseISOUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_baseImperialUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_baseSIUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_baseUSCustomaryUnitDimensions + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:or qudt:TextTypeUnion . + +qudt:QuantityKind-qudt_belongsToSystemOfQuantities + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "90"^^xsd:decimal . + +qudt:QuantityKind-qudt_dimensionVectorForSI + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "100"^^xsd:decimal . + +qudt:QuantityKind-qudt_expression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:name "symbol expression" ; + sh:order "10"^^xsd:decimal . + +qudt:QuantityKind-qudt_hasDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "50"^^xsd:decimal . + +qudt:QuantityKind-qudt_latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:QuantityKind-qudt_mathMLdefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "70"^^xsd:decimal . + +qudt:QuantityKind-qudt_qkdvDenominator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "61"^^xsd:decimal . + +qudt:QuantityKind-qudt_qkdvNumerator + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "60"^^xsd:decimal . + +qudt:QuantityKindDimensionVector-dimensionExponentForAmountOfSubstance + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionExponentForLength + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionExponentForLuminousIntensity + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionExponentForMass + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionExponentForThermodynamicTemperature + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionExponentForTime + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector-dimensionlessExponent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityKindDimensionVector_dimensionExponentForElectricCurrent + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:QuantityValue-value + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:NumericTypeUnion . + +qudt:Rule-example + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:TextTypeUnion . + +qudt:Rule-qudt_example + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:or qudt:TextTypeUnion . + +qudt:Unit + rdfs:isDefinedBy ; + rdfs:subClassOf qudt:Narratable . + +qudt:Unit-qudt_applicableSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "62"^^xsd:decimal . + +qudt:Unit-qudt_conversionMultiplier + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitConversionGroup ; + sh:order "10"^^xsd:decimal . + +qudt:Unit-qudt_conversionOffset + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitConversionGroup ; + sh:order "20"^^xsd:decimal . + +qudt:Unit-qudt_denominatorDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "52"^^xsd:decimal . + +qudt:Unit-qudt_expression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "30"^^xsd:decimal . + +qudt:Unit-qudt_hasDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "50"^^xsd:decimal . + +qudt:Unit-qudt_hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:name "quantity kind" ; + sh:order "40"^^xsd:decimal . + +qudt:Unit-qudt_iec61360Code + a sh:PropertyShape ; + rdfs:isDefinedBy ; + rdfs:label "IEC-61369 code" ; + sh:group qudt:UnitEquivalencePropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Unit-qudt_latexDefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Unit-qudt_latexSymbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "60"^^xsd:decimal . + +qudt:Unit-qudt_mathMLdefinition + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "70"^^xsd:decimal . + +qudt:Unit-qudt_numeratorDimensionVector + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "54"^^xsd:decimal . + +qudt:Unit-qudt_omUnit + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitEquivalencePropertyGroup ; + sh:order "10"^^xsd:decimal . + +qudt:Unit-qudt_siUnitsExpression + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "35"^^xsd:decimal . + +qudt:Unit-qudt_symbol + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Unit-qudt_ucumCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitEquivalencePropertyGroup ; + sh:order "50"^^xsd:decimal . + +qudt:Unit-qudt_udunitsCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitEquivalencePropertyGroup ; + sh:order "55"^^xsd:decimal . + +qudt:Unit-qudt_uneceCommonCode + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:UnitEquivalencePropertyGroup ; + sh:order "40"^^xsd:decimal . + +qudt:Unit-qudt_unitOfSystem + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:order "60"^^xsd:decimal . + +qudt:UnitConversionGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "Conversion" ; + sh:order "60"^^xsd:decimal . + +qudt:UnitEquivalencePropertyGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "Equivalent Units" ; + sh:order "50"^^xsd:decimal . + +qudt:UnitReferencesPropertyGroup + a sh:PropertyGroup ; + rdfs:isDefinedBy ; + rdfs:label "References" ; + sh:order "20"^^xsd:decimal . + +qudt:UserQuantityKind-qudt_hasQuantityKind + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:PropertiesGroup ; + sh:name "quantity kind" ; + sh:order "40"^^xsd:decimal . + +qudt:Verifiable-qudt_dbpediaMatch + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "90"^^xsd:decimal . + +qudt:Verifiable-qudt_informativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "84"^^xsd:decimal . + +qudt:Verifiable-qudt_isoNormativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "82"^^xsd:decimal . + +qudt:Verifiable-qudt_normativeReference + a sh:PropertyShape ; + rdfs:isDefinedBy ; + sh:group qudt:IdentifiersAndDescriptionsPropertyGroup ; + sh:order "80"^^xsd:decimal . + +vaem:GMD_SHACLQUDTOVERLAY-SCHEMA + a vaem:GraphMetaData ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2020-04-20"^^xsd:date ; + dcterms:creator "Ralph Hodgson" ; + dcterms:description """ +

The QUDT, or "Quantity, Unit, Dimension and Type" schema defines the base classes properties, and restrictions used for modeling physical quantities, + units of measure, and their dimensions in various measurement systems. + This overlay graph provides additional properties that affect the display of entities in a user interface, as well as some SHACL rules. +

"""^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights """ + This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved. + +THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + """ ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "QUDT" ; + dcterms:title "QUDT SHACL Schema Overlay - Version 3.1.0" ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT SHACL Schema Overlay Metadata Version 3.1.0" ; + vaem:graphName "qudtOverlay" ; + vaem:graphTitle "Quantities, Units, Dimensions and Types (QUDT) SHACL Schema Overlay - Version 3.1.0" ; + vaem:hasGraphRole vaem:SHACLSchemaOverlayGraph ; + vaem:hasOwner vaem:QUDT ; + vaem:hasSteward vaem:QUDT ; + vaem:intent "Specifies overlay properties and rules for the schema for quantities, units and dimensions. Types are defined in other schemas." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_SCHEMA-SHACL-QUDT-OVERLAY.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/schema/qudt/" ; + vaem:namespacePrefix "qudt" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_SCHEMA-SHACL-QUDT-OVERLAY.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/schema/shacl/overlay/qudt"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:contributor ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:description ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:source ; + vaem:usesNonImportedResource dcterms:subject ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource voag:QUDT-Attribution ; + vaem:withAttributionTo voag:QUDT-Attribution . + + diff --git a/libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl b/libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl new file mode 100644 index 000000000..3222457cb --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl @@ -0,0 +1,7222 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix constant: . +@prefix dcterms: . +@prefix qkdv: . +@prefix quantitykind: . +@prefix qudt: . +@prefix si-constant: . +@prefix skos: . +@prefix sou: . +@prefix unit: . +@prefix vaem: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:versionIRI ; + rdfs:label "QUDT VOCAB Physical Constants Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-CONSTANTS . + +constant:AlphaParticleElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "Alpha particle-electron mass ratio"@en ; + skos:closeMatch . + +constant:AlphaParticleMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleMass ; + rdfs:isDefinedBy ; + rdfs:label "Alpha particle mass"@en ; + skos:closeMatch . + +constant:AlphaParticleMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "alpha particle mass energy equivalent"@en ; + skos:closeMatch . + +constant:AlphaParticleMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "Alpha particle mass energy equivalent in Me V"@en ; + skos:closeMatch . + +constant:AlphaParticleMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "alpha particle mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:AlphaParticleMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "alpha particle molar mass"@en ; + skos:closeMatch . + +constant:AlphaParticleProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AlphaParticleProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "alpha particle-proton mass ratio"@en ; + skos:closeMatch . + +constant:AngstromStar + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AngstromStar ; + rdfs:isDefinedBy ; + rdfs:label "Angstrom star"@en . + +constant:AtomicMassConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Atomic Mass Constant}$ is one twelfth of the mass of an unbound atom of carbon-12 at rest + and in its ground state. + """^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:latexSymbol "$m_u$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassConstant ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass constant"@en . + +constant:AtomicMassConstantEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassConstantEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass constant energy equivalent"@en ; + skos:closeMatch . + +constant:AtomicMassConstantEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassConstantEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass constant energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:AtomicMassUnitElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-electron volt relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-hartree relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-hertz relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-inverse meter relationship"@en-US ; + rdfs:label "atomic mass unit-inverse metre relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-joule relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-kelvin relationship"@en ; + skos:closeMatch . + +constant:AtomicMassUnitKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicMassUnitKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "atomic mass unit-kilogram relationship"@en ; + skos:closeMatch . + +constant:AtomicUnitOf1stHyperpolarizablity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOf1stHyperpolarizability ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of 1st hyperpolarizablity"@en ; + skos:closeMatch . + +constant:AtomicUnitOf2ndHyperpolarizablity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOf2ndHyperpolarizability ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of 2nd hyperpolarizablity"@en ; + skos:closeMatch . + +constant:AtomicUnitOfAction + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfAction ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of action"@en ; + skos:closeMatch . + +constant:AtomicUnitOfCharge + a qudt:PhysicalConstant ; + qudt:exactMatch constant:ElementaryCharge ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfCharge ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of charge"@en ; + skos:closeMatch . + +constant:AtomicUnitOfChargeDensity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfChargeDensity ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of charge density"@en ; + skos:closeMatch . + +constant:AtomicUnitOfCurrent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfCurrent ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of current"@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricDipoleMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricDipoleMoment ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric dipole mom."@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricField + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricField ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric field"@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricFieldGradient + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:EnergyPerAreaElectricCharge ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricFieldGradient ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric field gradient"@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricPolarizablity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Polarizability ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricPolarizability ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric polarizablity"@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricPotential + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricPotential ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric potential"@en ; + skos:closeMatch . + +constant:AtomicUnitOfElectricQuadrupoleMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricQuadrupoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfElectricQuadrupoleMoment ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of electric quadrupole moment"@en ; + skos:closeMatch . + +constant:AtomicUnitOfEnergy + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfEnergy ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of energy"@en ; + skos:closeMatch . + +constant:AtomicUnitOfForce + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfForce ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of force"@en ; + skos:closeMatch . + +constant:AtomicUnitOfLength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfLength ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of length"@en ; + skos:closeMatch . + +constant:AtomicUnitOfMagneticDipoleMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfMagneticDipoleMoment ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of magnetic dipole moment"@en ; + skos:closeMatch . + +constant:AtomicUnitOfMagneticFluxDensity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfMagneticFluxDensity ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of magnetic flux density"@en ; + skos:closeMatch . + +constant:AtomicUnitOfMagnetizability + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:EnergyPerMagneticFluxDensity_Squared ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfMagnetizability ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of magnetizability"@en ; + skos:closeMatch . + +constant:AtomicUnitOfMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfMass ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of mass"@en ; + skos:closeMatch . + +constant:AtomicUnitOfMomentum + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfMomentum ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of momentum"@en ; + skos:closeMatch . + +constant:AtomicUnitOfPermittivity + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfPermittivity ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of permittivity"@en ; + skos:closeMatch . + +constant:AtomicUnitOfTime + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfTime ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of time"@en ; + skos:closeMatch . + +constant:AtomicUnitOfVelocity + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AtomicUnitOfVelocity ; + rdfs:isDefinedBy ; + rdfs:label "atomic unit of velocity"@en ; + skos:closeMatch . + +constant:AvogadroConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Avogadro Constant}$ is defined as the ratio of the number of constituent particles N in + a sample to the amount of substance $n$ through the relationship $NA = N/n$. + Thus, it is the proportionality factor that relates the molar mass of an entity, that is, + the mass per amount of substance, to the mass of said entity. + """^^qudt:LatexString ; + qudt:abbreviation "mole^{-1}" ; + qudt:applicableUnit unit:PER-MOL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Avogadro_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:InverseAmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAD015" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Avogadro_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD015"^^xsd:anyURI ; + qudt:latexDefinition "$L = \\frac{N}{n}$, where $N$ is the number of particles and $n$ is amount of substance."^^qudt:LatexString ; + qudt:latexSymbol "$L, N_A$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:quantityValue constant:Value_AvogadroConstant ; + qudt:siExactMatch si-constant:AvogadroConstant ; + rdfs:isDefinedBy ; + rdfs:label "Avogadro constant"@en . + +constant:BohrMagneton + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Bohr Magneton}$ is a physical constant and the natural unit for expressing an + electron magnetic dipole moment. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-T ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bohr_magneton"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bohr_magneton"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_B = \\frac{e\\hbar}{2m_e}$, where $e$ is the elementary charge, $\\hbar$ is the Planck constant, and $m_e$ is the rest mass of electron."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_B$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrMagneton ; + rdfs:isDefinedBy ; + rdfs:label "Bohr Magneton"@en . + +constant:BohrMagnetonInEVPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrMagnetonInEVPerT ; + rdfs:isDefinedBy ; + rdfs:label "Bohr magneton in eV per T"@en ; + skos:closeMatch . + +constant:BohrMagnetonInHzPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrMagnetonInHzPerT ; + rdfs:isDefinedBy ; + rdfs:label "Bohr magneton in Hz perT"@en ; + skos:closeMatch . + +constant:BohrMagnetonInInverseMetersPerTesla + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticReluctivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrMagnetonInInverseMetersPerTesla ; + rdfs:isDefinedBy ; + rdfs:label "Bohr magneton in inverse meters per tesla"@en-US ; + rdfs:label "Bohr magneton in inverse metres per tesla"@en ; + skos:closeMatch . + +constant:BohrMagnetonInKPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrMagnetonInKPerT ; + rdfs:isDefinedBy ; + rdfs:label "Bohr magneton in K per T"@en ; + skos:closeMatch . + +constant:BohrRadius + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Bohr Radius}$ is a physical constant, approximately equal to the most probable distance + between the proton and electron in a hydrogen atom in its ground state. + It is named after Niels Bohr, due to its role in the Bohr model of an atom. + The precise definition of the Bohr radius is: + + $$a_0 = \\frac{4\\pi \\epsilon_0 \\hbar^2}{me^2}$$ + + Where, + $a_0$ is the Bohr radius, + $\\epsilon_0$ is the permittivity of a vacuum, + $m_e$ is the mass of an electron, + $\\hbar$ is the reduced Planck's constant, + $e$ is the elementary charge. + + When rearranged to highlight the role of the Coulomb constant and the elementary charge, + the formula can be shown as: + + $$a_0 \\equiv \\frac{{\\hbar ^2 }}{{m_e ke^2 }}$$ + + Where, + $a_0$ is the Bohr radius, + $m_e$ is the mass of an electron, + $\\hbar$ is the reduced Planck's constant, + $k$ is the Coulomb Constant, + $e$ is the elementary charge. + + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:applicableUnit unit:M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bohr_radius"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bohr_radius"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.deepnlp.org/blog/atomic-electro-chemical-equations"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:informativeReference "https://byjus.com/physics/bohr-radius/"^^xsd:anyURI ; + qudt:latexDefinition "$a_0 = \\frac{4\\pi \\varepsilon_0 \\hbar^2}{m_ee^2}$, where $\\varepsilon_0$ is the electric constant, $\\hbar$ is the reduced Planck constant, $m_e$ is the rest mass of electron, and $e$ is the elementary charge."^^qudt:LatexString ; + qudt:latexSymbol "$a_0$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BohrRadius ; + rdfs:isDefinedBy ; + rdfs:label "Bohr Radius"@en . + +constant:BoltzmannConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Boltzmann Constant}$, symbol $k$ or $kB$, is the physical constant relating energy at the individual particle level with temperature, + which must necessarily be observed at the collective or bulk level. + It is the gas constant $R$ divided by the Avogadro constant $N_A$, having the same dimension as entropy. + It is named after the Austrian physicist Ludwig Boltzmann. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Boltzmann_constant"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Boltzmann_constant?oldid=495542430"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$k$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_BoltzmannConstant ; + qudt:siExactMatch si-constant:BoltzmannConstant ; + qudt:ucumCode "[k]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Boltzmann Constant"@en . + +constant:BoltzmannConstantInEVPerK + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BoltzmannConstantInEVPerK ; + rdfs:isDefinedBy ; + rdfs:label "Boltzmann constant in eV per K"@en ; + skos:closeMatch . + +constant:BoltzmannConstantInHzPerK + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseTimeTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BoltzmannConstantInHzPerK ; + rdfs:isDefinedBy ; + rdfs:label "Boltzmann constant in Hz per K"@en ; + skos:closeMatch . + +constant:BoltzmannConstantInInverseMetersPerKelvin + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLengthTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_BoltzmannConstantInInverseMetersPerKelvin ; + rdfs:isDefinedBy ; + rdfs:label "Boltzmann constant in inverse meters per kelvin"@en-US ; + rdfs:label "Boltzmann constant in inverse metres per kelvin"@en ; + skos:closeMatch . + +constant:CharacteristicImpedanceOfVacuum + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Characteristic Impedance of Vacuum}$, symbol $Z0$ is the impedance of free space. + This is a physical constant relating the magnitudes of the electric and magnetic fields of electromagnetic radiation travelling through free space. + That is, $Z0 = |E|/|H|$, where $|E|$ is the electric field strength and $|H|$ magnetic field strength. + It has an exact value, given approximately as 376.73031 ohms. + The impedance of free space equals the product of the vacuum permeability or magnetic constant $μ0$ and the speed of light in vacuum $c0$. + Since the numerical values of the magnetic constant and of the speed of light are fixed by the definitions of the ampere and the metre respectively, + the exact value of the impedance of free space is likewise fixed by definition and is not subject to experimental error. + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Impedance_of_free_space"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_CharacteristicImpedanceOfVacuum ; + rdfs:isDefinedBy ; + rdfs:label "characteristic impedance of vacuum"@en . + +constant:ClassicalElectronRadius + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Classical_electron_radius"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ClassicalElectronRadius ; + rdfs:isDefinedBy ; + rdfs:label "classical electron radius"@en . + +constant:ComptonWavelength + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Compton Wavelength}$ is a quantum mechanical property of a particle. + It was introduced by Arthur Compton in his explanation of the scattering of photons by electrons. + The process is known as Compton scattering. + The Compton Wavelength of a particle is equivalent to the wavelength of a photon whose energy + is the same as the rest-mass energy of the particle. + """^^qudt:LatexString ; + qudt:applicableUnit unit:M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Compton_wavelength"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Compton_wavelength"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda_C = \\frac{h}{mc_0}$, where $h$ is the Planck constant, $m$ is the rest mass of a particle, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda_C$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ComptonWavelength ; + rdfs:isDefinedBy ; + rdfs:label "Compton Wavelength"@en . + +constant:ComptonWavelengthOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ComptonWavelengthOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "Compton wavelength over 2 pi"@en ; + skos:closeMatch . + +constant:ConductanceQuantum + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Conductance_quantum"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:ElectricConductivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ConductanceQuantum ; + rdfs:isDefinedBy ; + rdfs:label "conductance quantum"@en . + +constant:ConventionalValueOfJosephsonConstant + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:InverseMagneticFlux ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ConventionalValueOfJosephsonConstant ; + rdfs:isDefinedBy ; + rdfs:label "conventional value of Josephson constant"@en ; + skos:closeMatch . + +constant:ConventionalValueOfVonKlitzingConstant + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ConventionalValueOfVonKlitzingConstant ; + rdfs:isDefinedBy ; + rdfs:label "conventional value of von Klitzing constant"@en ; + skos:closeMatch . + +constant:CuXUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_CuXUnit ; + rdfs:isDefinedBy ; + rdfs:label "Cu x unit"@en ; + skos:closeMatch . + +constant:DeuteronElectronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronElectronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron-electron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:DeuteronElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron-electron mass ratio"@en . + +constant:DeuteronGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronGFactor ; + rdfs:isDefinedBy ; + rdfs:label "deuteron g factor"@en ; + skos:closeMatch . + +constant:DeuteronMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "deuteron magnetic moment"@en ; + skos:closeMatch . + +constant:DeuteronMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:DeuteronMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:DeuteronMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMass ; + rdfs:isDefinedBy ; + rdfs:label "deuteron mass"@en . + +constant:DeuteronMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "deuteron mass energy equivalent"@en ; + skos:closeMatch . + +constant:DeuteronMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "deuteron mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:DeuteronMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "deuteron mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:DeuteronMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "deuteron molar mass"@en . + +constant:DeuteronNeutronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronNeutronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron-neutron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:DeuteronProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron-proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:DeuteronProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "deuteron-proton mass ratio"@en . + +constant:DeuteronRmsChargeRadius + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_DeuteronRmsChargeRadius ; + rdfs:isDefinedBy ; + rdfs:label "deuteron rms charge radius"@en ; + skos:closeMatch . + +constant:ElectricConstant + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Vacuum_permittivity"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectricConstant ; + rdfs:isDefinedBy ; + rdfs:label "electric constant"@en . + +constant:ElectromagneticPermeabilityOfVacuum + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Permeability of Vacuum}$, also known as $\\textit{Magnetic Constant}$, is a scalar constant + $\\mu_0$ such that, in a vacuum the product with the magnetic field vector, $\\overrightarrow{H}$ + is equal to the magnetic flux density vector, $\\overrightarrow{B}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:H-PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Vacuum_permeability"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:exactMatch constant:MagneticConstant ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=705-03-14"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_0 = \\frac{\\overrightarrow{B}}{\\overrightarrow{H}}$, where $\\overrightarrow{B}$ is the B-Filed magnetic vector, and $\\overrightarrow{H}$ is the H-Field magnetic vector. The value of $\\mu_0$ is $\\approx 1.256637e-6\\,henry\\,per\\,metre$."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_0$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_MagneticConstant ; + qudt:ucumCode "[mu_0]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Permeability of Vacuum"@en . + +constant:ElectronChargeToMassQuotient + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronChargeToMassQuotient ; + rdfs:isDefinedBy ; + rdfs:label "electron charge to mass quotient"@en ; + skos:closeMatch . + +constant:ElectronDeuteronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronDeuteronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-deuteron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronDeuteronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronDeuteronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-deuteron mass ratio"@en . + +constant:ElectronGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronGFactor ; + rdfs:isDefinedBy ; + rdfs:label "electron g factor"@en ; + skos:closeMatch . + +constant:ElectronGyromagneticRatio + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Electron Gyromagnetic Ratio}$ is a property that an isolated electron has for its angular momentum and magnetic moment resulting from its spin. + While an electron's spin is sometimes visualized as a literal rotation about an axis, it is in fact a fundamentally different, quantum-mechanical phenomenon with no true analogue in classical physics. + As a consequence there is no reason to expect the above classical relation to hold. + """^^qudt:LatexString ; + qudt:applicableUnit unit:A-M2-PER-J-SEC ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gyromagnetic_ratio#Gyromagnetic_ratio_for_an_isolated_electron"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\gamma_e J$, where $\\mu$ is the magnetic dipole moment, and $J$ is the total angular momentum."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma_e$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronGyromagneticRatio ; + rdfs:isDefinedBy ; + rdfs:label "Electron Gyromagnetic Ratio"@en ; + skos:closeMatch . + +constant:ElectronGyromagneticRatioOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronGyromagneticRatioOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "electron gyromagnetic ratio over 2 pi"@en ; + skos:closeMatch . + +constant:ElectronMagneticMoment + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electron_magnetic_dipole_moment"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "electron magnetic moment"@en . + +constant:ElectronMagneticMomentAnomaly + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMagneticMomentAnomaly ; + rdfs:isDefinedBy ; + rdfs:label "electron magnetic moment anomaly"@en ; + skos:closeMatch . + +constant:ElectronMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch ; + skos:closeMatch . + +constant:ElectronMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch ; + skos:closeMatch . + +constant:ElectronMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:latexSymbol "$m_e$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_ElectronMass ; + qudt:ucumCode "[m_e]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Electron Mass"@en ; + skos:closeMatch . + +constant:ElectronMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "electron mass energy equivalent"@en ; + skos:closeMatch . + +constant:ElectronMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "electron mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:ElectronMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "electron mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:ElectronMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "electron molar mass"@en . + +constant:ElectronMuonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMuonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-muon magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronMuonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronMuonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-muon mass ratio"@en . + +constant:ElectronNeutronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronNeutronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-neutron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronNeutronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronNeutronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-neutron mass ratio"@en . + +constant:ElectronProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-proton mass ratio"@en . + +constant:ElectronTauMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronTauMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron-tau mass ratio"@en . + +constant:ElectronToAlphaParticleMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronToAlphaParticleMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron to alpha particle mass ratio"@en ; + skos:closeMatch . + +constant:ElectronToShieldedHelionMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronToShieldedHelionMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron to shielded helion magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronToShieldedProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronToShieldedProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "electron to shielded proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ElectronVoltAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-hartree relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-hertz relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-inverse meter relationship"@en-US ; + rdfs:label "electron volt-inverse metre relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-joule relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-kelvin relationship"@en ; + skos:closeMatch . + +constant:ElectronVoltKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElectronVoltKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "electron volt-kilogram relationship"@en ; + skos:closeMatch . + +constant:ElementaryCharge + a qudt:AtomicUnit, qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Elementary_charge"^^xsd:anyURI ; + qudt:exactMatch constant:AtomicUnitOfCharge ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Elementary_charge"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Elementary Charge\" is the electric charge carried by a single proton, or equivalently, the negation (opposite) of the electric charge carried by a single electron." ; + qudt:quantityValue constant:Value_ElementaryCharge ; + qudt:siExactMatch si-constant:ElementaryCharge ; + qudt:symbol "e" ; + qudt:ucumCode "[e]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Elementary Charge"@en . + +constant:ElementaryChargeOverH + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerEnergy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ElementaryChargeOverH ; + rdfs:isDefinedBy ; + rdfs:label "elementary charge over h"@en ; + skos:closeMatch . + +constant:FaradayConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Faraday Constant}$ is a constant equal to the product of electrical elementary charge and Avogadro constant; + this is approximately $9.64853321233100184 \\times 10^{4}\\ C/mol$. + """^^qudt:LatexString ; + qudt:abbreviation "c mol^{-1}" ; + qudt:applicableUnit unit:C-PER-MOL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Faraday_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAD052" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Faraday_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD052"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$F = N_A e$, where $N_A$ is the Avogadro constant and $e$ is the elementary charge."^^qudt:LatexString ; + qudt:latexSymbol "$F$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "Physikalische Konstante, gleich dem Produkt aus elektrischer Elementarladung und Avogadro-Konstante; sie beträgt annähernd 96 485,3 C/mol"@de ; + qudt:quantityValue constant:Value_FaradayConstant ; + qudt:symbol "0173-1#Z4-BAJ422#001" ; + rdfs:isDefinedBy ; + rdfs:label "Faraday constant"@en . + +constant:FermiCouplingConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_FermiCouplingConstant ; + rdfs:isDefinedBy ; + rdfs:label "Fermi coupling constant"@en ; + skos:closeMatch . + +constant:FineStructureConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Fine-structure Constant}$ is a fundamental physical constant, namely the coupling constant + characterizing the strength of the electromagnetic interaction. + """^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Fine-structure_constant"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fine-structure_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$a = \\frac{e^2}{4\\pi\\varepsilon_0\\hbar c_0}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, item $\\hbar$ is the reduced Planck constant, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ; + qudt:latexSymbol "$a$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_FineStructureConstant ; + rdfs:isDefinedBy ; + rdfs:label "Fine-Structure Constant"@en . + +constant:FirstRadiationConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{First Radiation Constant}$ is defined in Planck's radiation law about the dependence + of the spectral density of various radiation variables on the wavelength of the electromagnetic radiation + and the absolute temperature of the black emitter. + This is composed of the product of twice $Pi$ times Planck's quantum of action multiplied by the square of + the velocity of light. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:PowerArea ; + qudt:iec61360Code "0112/2///62720#UAD053" ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD053"^^xsd:anyURI ; + qudt:plainTextDescription "Konstante im Planckschen Strahlungsgesetz über die Abhängigkeit der spektralen Dichte verschiedener Strahlungsgrößen von der Wellenlänge der elektromagnetischen Strahlung und der absoluten Temperatur beim schwarzen Strahler, welche sich zusammensetzt aus dem Produkt zwei Pi mal Plancksches Wirkungsquantum mal dem Quadrat der Lichtgeschwindigkeit"@de ; + qudt:quantityValue constant:Value_FirstRadiationConstant ; + qudt:symbol "0173-1#Z4-BAJ455#001" ; + rdfs:isDefinedBy ; + rdfs:label "first radiation constant"@en . + +constant:FirstRadiationConstantForSpectralRadiance + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:PowerAreaPerSolidAngle ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_FirstRadiationConstantForSpectralRadiance ; + rdfs:isDefinedBy ; + rdfs:label "first radiation constant for spectral radiance"@en . + +constant:GravitationalConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Gravitational Constant}$ (also known as the universal gravitational constant, is the Newtonian constant of gravitation, or the Cavendish gravitational constant). + Denoted by the letter $G$, it is an empirical physical constant involved in the calculation of gravitational effects in Sir Isaac Newton's law of universal gravitation + and in Albert Einstein's general theory of relativity. + """^^qudt:LatexString ; + qudt:applicableUnit unit:N-M2-PER-KiloGM2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:GravitationalAttraction ; + qudt:iec61360Code "0112/2///62720#UAD059" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD059"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Gravitational_constant"^^xsd:anyURI ; + qudt:plainTextDescription "Empirisch ermittelte Naturkonstante, die bei bekanntem Mittelpunktsabstand zweier kugelsymmetrischer Körper deren gegenseitige Massenanziehungskraft bestimmt"@de ; + qudt:quantityValue constant:Value_GravitationalConstant ; + qudt:symbol "0173-1#Z4-BAJ474#002" ; + qudt:ucumCode "[G]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gravitational constant"@en . + +constant:HartreeAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:HartreeElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-electron volt relationship"@en ; + skos:closeMatch . + +constant:HartreeEnergy + a qudt:AtomicUnit, qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Hartree Energy}$ (symbol: $E_h$ or $Ha$), also known as the $\\textit{Hartree}$, is the atomic unit of energy. + The hartree energy is equal to the absolute value of the electric potential energy of the hydrogen atom in its ground state. + The energy of the electron in an H-atom in its ground state is $-E_H$, where $E_H= 2 R_\\infty \\cdot hc_0$. + The 2006 CODATA recommended value was $E_H = 4.35974394(22)\\ \\times 10^{-18}\\ J = 27.21138386(68)\\ eV$. + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hartree"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$E_H= \\frac{e^2}{4\\pi \\varepsilon_0 a_0 }$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, and $a_0$ is the Bohr radius."^^qudt:LatexString ; + qudt:latexSymbol "$E_h$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_HartreeEnergy ; + rdfs:isDefinedBy ; + rdfs:label "Hartree Energy"@en . + +constant:HartreeEnergyInEV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeEnergyInEV ; + rdfs:isDefinedBy ; + rdfs:label "Hartree energy in eV"@en ; + skos:closeMatch . + +constant:HartreeHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-hertz relationship"@en . + +constant:HartreeInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-inverse meter relationship"@en-US ; + rdfs:label "hartree-inverse metre relationship"@en . + +constant:HartreeJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-joule relationship"@en . + +constant:HartreeKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-kelvin relationship"@en . + +constant:HartreeKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HartreeKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hartree-kilogram relationship"@en . + +constant:HelionElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "helion-electron mass ratio"@en . + +constant:HelionMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionMass ; + rdfs:isDefinedBy ; + rdfs:label "helion mass"@en . + +constant:HelionMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "helion mass energy equivalent"@en ; + skos:closeMatch . + +constant:HelionMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "helion mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:HelionMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "helion mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:HelionMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "helion molar mass"@en . + +constant:HelionProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HelionProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "helion-proton mass ratio"@en . + +constant:HertzAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:HertzElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-electron volt relationship"@en ; + skos:closeMatch . + +constant:HertzHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-hartree relationship"@en . + +constant:HertzInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-inverse meter relationship"@en-US ; + rdfs:label "hertz-inverse metre relationship"@en . + +constant:HertzJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-joule relationship"@en . + +constant:HertzKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-kelvin relationship"@en . + +constant:HertzKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_HertzKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "hertz-kilogram relationship"@en . + +constant:InverseFineStructureConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseFineStructureConstant ; + rdfs:isDefinedBy ; + rdfs:label "inverse fine-structure constant"@en ; + skos:closeMatch . + +constant:InverseMeterAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-atomic mass unit relationship"@en-US ; + rdfs:label "inverse metre-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:InverseMeterElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-electron volt relationship"@en-US ; + rdfs:label "inverse metre-electron volt relationship"@en ; + skos:closeMatch . + +constant:InverseMeterHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-hartree relationship"@en-US ; + rdfs:label "inverse metre-hartree relationship"@en . + +constant:InverseMeterHertzRelationship + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-hertz relationship"@en-US ; + rdfs:label "inverse metre-hertz relationship"@en . + +constant:InverseMeterJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-joule relationship"@en-US ; + rdfs:label "inverse metre-joule relationship"@en . + +constant:InverseMeterKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-kelvin relationship"@en-US ; + rdfs:label "inverse metre-kelvin relationship"@en . + +constant:InverseMeterKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseMeterKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "inverse meter-kilogram relationship"@en-US ; + rdfs:label "inverse metre-kilogram relationship"@en . + +constant:InverseOfConductanceQuantum + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_InverseOfConductanceQuantum ; + rdfs:isDefinedBy ; + rdfs:label "inverse of conductance quantum"@en ; + skos:closeMatch . + +constant:JosephsonConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Josephson Constant}$ is a proportionality factor between voltage and frequency of an + alternating current corresponding to the product of two elementary charges $e$ and Planck's action quantum $h$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PER-WB ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux_quantum"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + qudt:hasQuantityKind quantitykind:InverseMagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAD069" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_flux_quantum"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD069"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$K_J = \\frac{1}{\\Phi_0}$, where $\\Phi_0$ is the magnetic flux quantum."^^qudt:LatexString ; + qudt:latexSymbol "$K_J$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "Proportionalitätsfaktor zwischen elektrischer Spannung und Frequenz beim Wechselstrom entsprechend dem Produkt aus zwei Elementarladungen e und Planckschen Wirkungsquantum h"@de ; + qudt:quantityValue constant:Value_JosephsonConstant ; + qudt:symbol "0173-1#Z4-BAJ452#001" ; + rdfs:isDefinedBy ; + rdfs:label "Josephson Constant"@en ; + skos:closeMatch quantitykind:MagneticFluxQuantum . + +constant:JouleAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:JouleElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-electron volt relationship"@en ; + skos:closeMatch . + +constant:JouleHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-hartree relationship"@en . + +constant:JouleHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-hertz relationship"@en . + +constant:JouleInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-inverse meter relationship"@en-US ; + rdfs:label "joule-inverse metre relationship"@en . + +constant:JouleKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-kelvin relationship"@en . + +constant:JouleKilogramRelationship + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_JouleKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "joule-kilogram relationship"@en . + +constant:KelvinAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:KelvinElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-electron volt relationship"@en ; + skos:closeMatch . + +constant:KelvinHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-hartree relationship"@en . + +constant:KelvinHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-hertz relationship"@en . + +constant:KelvinInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-inverse meter relationship"@en-US ; + rdfs:label "kelvin-inverse metre relationship"@en . + +constant:KelvinJouleRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-joule relationship"@en . + +constant:KelvinKilogramRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KelvinKilogramRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kelvin-kilogram relationship"@en . + +constant:KilogramAtomicMassUnitRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramAtomicMassUnitRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-atomic mass unit relationship"@en ; + skos:closeMatch . + +constant:KilogramElectronVoltRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramElectronVoltRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-electron volt relationship"@en ; + skos:closeMatch . + +constant:KilogramHartreeRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramHartreeRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-hartree relationship"@en . + +constant:KilogramHertzRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramHertzRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-hertz relationship"@en . + +constant:KilogramInverseMeterRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramInverseMeterRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-inverse meter relationship"@en-US ; + rdfs:label "kilogram-inverse metre relationship"@en . + +constant:KilogramJouleRelationship + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramJouleRelationship ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram-Joule Relationship"@en . + +constant:KilogramKelvinRelationship + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_KilogramKelvinRelationship ; + rdfs:isDefinedBy ; + rdfs:label "kilogram-kelvin relationship"@en . + +constant:LatticeParameterOfSilicon + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_LatticeParameterOfSilicon ; + rdfs:isDefinedBy ; + rdfs:label "lattice parameter of silicon"@en-US ; + rdfs:label "lattice parametre of silicon"@en . + +constant:LatticeSpacingOfSilicon + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_LatticeSpacingOfSilicon ; + rdfs:isDefinedBy ; + rdfs:label "lattice spacing of silicon"@en . + +constant:LoschmidtConstant273dot15K101dot325KPa + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_LoschmidtConstant ; + rdfs:isDefinedBy ; + rdfs:label "Loschmidt constant 273.15 K 101.325 kPa"@en ; + skos:closeMatch . + +constant:MagneticConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Magentic Constant}$, also known as $\\textit{Permeability of Vacuum}$, is a scalar constant + $\\mu_0$ such that, in a vacuum the product with the magnetic field vector, $\\overrightarrow{H}$ + is equal to the magnetic flux density vector, $\\overrightarrow{B}$. + """^^qudt:LatexString ; + qudt:abbreviation "magnetic-constant" ; + qudt:applicableUnit unit:H-PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Vacuum_permeability"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:exactMatch constant:ElectromagneticPermeabilityOfVacuum ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=705-03-14"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_0 = \\frac{\\overrightarrow{B}}{\\overrightarrow{H}}$, where $\\overrightarrow{B}$ is the B-Filed magnetic vector, and $\\overrightarrow{H}$ is the H-Filed magnetic vector. The value of $\\mu_0$ is $\\approx 1.256637e-6\\,H/M$."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_0$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_MagneticConstant ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Constant"@en . + +constant:MagneticFluxQuantum + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Magnetic Flux Quantum}$ is the quantum of magnetic flux passing through a superconductor. + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux_quantum"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_flux_quantum"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$\\Phi_0 = \\frac{h}{2e}$, where $h$ is the Planck constant and $e$ is the elementary charge."^^qudt:LatexString ; + qudt:latexSymbol "$\\Phi_0$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MagneticFluxQuantum ; + rdfs:isDefinedBy ; + rdfs:label "magnetic flux quantum"@en . + +constant:MoXUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MoXUnit ; + rdfs:isDefinedBy ; + rdfs:label "Mo x unit"@en ; + skos:closeMatch . + +constant:MolarGasConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Molar Gas Constant}$, also known as the gas constant, universal, or ideal gas constant, denoted by the symbol $R$, + is a physical constant which is featured in many fundamental equations in the physical sciences, + such as the ideal gas law and the Nernst equation. + It is equivalent to the Boltzmann constant, but expressed in units of energy (i.e. the pressure-volume + product) per temperature increment per mole (rather than energy per temperature increment per particle). + """^^qudt:LatexString ; + qudt:abbreviation "j-mol^{-1}-k^{-1}" ; + qudt:applicableUnit unit:J-PER-MOL-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gas_constant"^^xsd:anyURI ; + qudt:exactMatch constant:UniversalGasConstant ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gas_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$pV_m = RT$, where $p$ is pressure, $V_m$ is molar volume, and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:latexSymbol "$R$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarGasConstant ; + rdfs:isDefinedBy ; + rdfs:label "molar gas constant"@en . + +constant:MolarMassConstant + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Molar_mass_constant"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarMassConstant ; + rdfs:isDefinedBy ; + rdfs:label "molar mass constant"@en . + +constant:MolarMassOfCarbon12 + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarMassOfCarbon12 ; + rdfs:isDefinedBy ; + rdfs:label "molar mass of carbon-12"@en . + +constant:MolarPlanckConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarAngularMomentum ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarPlanckConstant ; + rdfs:isDefinedBy ; + rdfs:label "molar Planck constant"@en ; + skos:closeMatch . + +constant:MolarPlanckConstantTimesC + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LengthMolarEnergy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarPlanckConstantTimesC ; + rdfs:isDefinedBy ; + rdfs:label "molar Planck constant times c"@en ; + skos:closeMatch . + +constant:MolarVolumeOfIdealGas273dot15K100KPa + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarVolumeOfIdealGas ; + rdfs:isDefinedBy ; + rdfs:label "molar volume of ideal gas 273.15 K 100 kPa"@en . + +constant:MolarVolumeOfIdealGas273dot15K101dot325KPa + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarVolumeOfIdealGas ; + rdfs:isDefinedBy ; + rdfs:label "molar volume of ideal gas 273.15 K 101.325 kPa"@en . + +constant:MolarVolumeOfSilicon + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MolarVolumeOfSilicon ; + rdfs:isDefinedBy ; + rdfs:label "molar volume of silicon"@en . + +constant:MuonComptonWavelength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonComptonWavelength ; + rdfs:isDefinedBy ; + rdfs:label "muon Compton wavelength"@en ; + skos:closeMatch . + +constant:MuonComptonWavelengthOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonComptonWavelengthOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "muon Compton wavelength over 2 pi"@en ; + skos:closeMatch . + +constant:MuonElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon-electron mass ratio"@en . + +constant:MuonGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonGFactor ; + rdfs:isDefinedBy ; + rdfs:label "muon g factor"@en ; + skos:closeMatch . + +constant:MuonMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "muon magnetic moment"@en ; + skos:closeMatch . + +constant:MuonMagneticMomentAnomaly + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMagneticMomentAnomaly ; + rdfs:isDefinedBy ; + rdfs:label "muon magnetic moment anomaly"@en ; + skos:closeMatch . + +constant:MuonMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:MuonMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:MuonMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMass ; + rdfs:isDefinedBy ; + rdfs:label "muon mass"@en . + +constant:MuonMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "muon mass energy equivalent"@en ; + skos:closeMatch . + +constant:MuonMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "muon mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:MuonMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "muon mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:MuonMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "muon molar mass"@en . + +constant:MuonNeutronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonNeutronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon-neutron mass ratio"@en . + +constant:MuonProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon-proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:MuonProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon-proton mass ratio"@en . + +constant:MuonTauMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_MuonTauMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "muon-tau mass ratio"@en . + +constant:NaturalUnitOfAction + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfAction ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of action"@en ; + skos:closeMatch . + +constant:NaturalUnitOfActionInEVS + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfActionInEVS ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of action in eV s"@en ; + skos:closeMatch . + +constant:NaturalUnitOfEnergy + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfEnergy ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of energy"@en ; + skos:closeMatch . + +constant:NaturalUnitOfEnergyInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfEnergyInMeV ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of energy in MeV"@en ; + skos:closeMatch . + +constant:NaturalUnitOfLength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfLength ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of length"@en ; + skos:closeMatch . + +constant:NaturalUnitOfMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfMass ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of mass"@en ; + skos:closeMatch . + +constant:NaturalUnitOfMomentum + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfMomentum ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of momentum"@en ; + skos:closeMatch . + +constant:NaturalUnitOfMomentumInMeV-PER-c + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfMomentumInMeVPerC ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of momentum in MeV PER c"@en ; + skos:closeMatch . + +constant:NaturalUnitOfTime + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfTime ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of time"@en ; + skos:closeMatch . + +constant:NaturalUnitOfVelocity + a qudt:PhysicalConstant ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NaturalUnitOfVelocity ; + rdfs:isDefinedBy ; + rdfs:label "natural unit of velocity"@en ; + skos:closeMatch . + +constant:NeutronComptonWavelength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronComptonWavelength ; + rdfs:isDefinedBy ; + rdfs:label "neutron Compton wavelength"@en ; + skos:closeMatch . + +constant:NeutronComptonWavelengthOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronComptonWavelengthOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "neutron Compton wavelength over 2 pi"@en ; + skos:closeMatch . + +constant:NeutronElectronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronElectronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-electron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:NeutronElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-electron mass ratio"@en . + +constant:NeutronGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronGFactor ; + rdfs:isDefinedBy ; + rdfs:label "neutron g factor"@en ; + skos:closeMatch . + +constant:NeutronGyromagneticRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronGyromagneticRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron gyromagnetic ratio"@en ; + skos:closeMatch . + +constant:NeutronGyromagneticRatioOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronGyromagneticRatioOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "neutron gyromagnetic ratio over 2 pi"@en ; + skos:closeMatch . + +constant:NeutronMagneticMoment + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Neutron_magnetic_moment"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "neutron magnetic moment"@en . + +constant:NeutronMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch ; + skos:closeMatch . + +constant:NeutronMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch ; + skos:closeMatch . + +constant:NeutronMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMass ; + rdfs:isDefinedBy ; + rdfs:label "neutron mass"@en ; + skos:closeMatch . + +constant:NeutronMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "neutron mass energy equivalent"@en ; + skos:closeMatch . + +constant:NeutronMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "neutron mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:NeutronMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "neutron mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:NeutronMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "neutron molar mass"@en . + +constant:NeutronMuonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronMuonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-muon mass ratio"@en . + +constant:NeutronProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:NeutronProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-proton mass ratio"@en . + +constant:NeutronTauMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronTauMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron-tau mass ratio"@en . + +constant:NeutronToShieldedProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NeutronToShieldedProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "neutron to shielded proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:NewtonianConstantOfGravitation + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gravitational_constant"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:GravitationalAttraction ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NewtonianConstantOfGravitation ; + rdfs:isDefinedBy ; + rdfs:label "Newtonian constant of gravitation"@en . + +constant:NuclearMagneton + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Nuclear Magneton}$ is the natural unit for expressing magnetic dipole moments of + heavy particles such as nucleons and atomic nuclei. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-T ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nuclear_magneton"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_magneton"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_N = \\frac{e\\hbar}{2m_p}$, where $e$ is the elementary charge, $\\hbar$ is the Planck constant, and $m_p$ is the rest mass of proton."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_N$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NuclearMagneton ; + rdfs:isDefinedBy ; + rdfs:label "Nuclear Magneton"@en ; + skos:related quantitykind:BohrMagneton . + +constant:NuclearMagnetonInEVPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NuclearMagnetonInEVPerT ; + rdfs:isDefinedBy ; + rdfs:label "nuclear magneton in eV per T"@en ; + skos:closeMatch . + +constant:NuclearMagnetonInInverseMetersPerTesla + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticReluctivity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NuclearMagnetonInInverseMetersPerTesla ; + rdfs:isDefinedBy ; + rdfs:label "nuclear magneton in inverse meters per tesla"@en-US ; + rdfs:label "nuclear magneton in inverse metres per tesla"@en ; + skos:closeMatch . + +constant:NuclearMagnetonInKPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NuclearMagnetonInKPerT ; + rdfs:isDefinedBy ; + rdfs:label "nuclear magneton in K per T"@en ; + skos:closeMatch . + +constant:NuclearMagnetonInMHzPerT + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_NuclearMagnetonInMHzPerT ; + rdfs:isDefinedBy ; + rdfs:label "nuclear magneton in MHz per T"@en ; + skos:closeMatch . + +constant:PermittivityOfVacuum + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Permittivity of Vacuum}$, also known as the $\\textit{electric constant}$ is a constant + whose value is $\\approx\\,6.854188e-12\\, farad\\,per\\,metre$. Sometimes also referred to as + the $\\textit{Permittivity of Free Space}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:FARAD-PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\epsilon = \\frac{\\mathbf{D}}{\\mathbf{E}}$, where $\\mathbf{D}$ is electric flux density and $\\mathbf{E}$ is electric field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\epsilon_0$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_PermittivityOfVacuum ; + qudt:ucumCode "[eps_0]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Permittivity of Vacuum"@en ; + rdfs:seeAlso quantitykind:ElectricFieldStrength ; + rdfs:seeAlso quantitykind:ElectricFluxDensity ; + rdfs:seeAlso quantitykind:Permittivity . + +constant:Pi + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\pi$ is the ratio of a circle's circumference to its diameter, commonly approximated as 3.14159. + """^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pi"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pi"^^xsd:anyURI ; + qudt:latexDefinition "$\\pi = \\frac{C}{d}$, where $C$ is the circumference of a circle and $d$ is the diameter of a circle."^^qudt:LatexString ; + qudt:latexSymbol "$\\pi$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_Pi ; + rdfs:isDefinedBy ; + rdfs:label "Pi"@en . + +constant:PlanckConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The constant $\\textit{Planck Constant}$ is a physical constant that is the quantum of action in quantum mechanics. + The Planck constant was first described as the proportionality constant between the energy ($E$) of a photon + and the frequency ($\\nu$) of its associated electromagnetic wave. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$E = h\\nu = \\frac{hc}{\\lambda}$, where $E$ is energy, $\\nu$ is frequency, $\\lambda$ is wavelength, and $c$ is the speed of light."^^qudt:LatexString ; + qudt:latexSymbol "$h$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_PlanckConstant ; + qudt:siExactMatch si-constant:PlanckConstant ; + qudt:ucumCode "[h]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Planck Constant"@en . + +constant:PlanckConstantInEVS + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckConstantInEVS ; + rdfs:isDefinedBy ; + rdfs:label "Planck constant in eV s"@en ; + skos:closeMatch . + +constant:PlanckConstantOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckConstantOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "Planck constant over 2 pi"@en ; + skos:closeMatch . + +constant:PlanckConstantOver2PiInEVS + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckConstantOver2PiInEVS ; + rdfs:isDefinedBy ; + rdfs:label "Planck constant over 2 pi in eV s"@en ; + skos:closeMatch . + +constant:PlanckConstantOver2PiTimesCInMeVFm + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LengthEnergy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckConstantOver2PiTimesCInMeVFm ; + rdfs:isDefinedBy ; + rdfs:label "Planck constant over 2 pi times c in MeV fm"@en ; + skos:closeMatch . + +constant:PlanckLength + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_length"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckLength ; + rdfs:isDefinedBy ; + rdfs:label "Planck length"@en . + +constant:PlanckMass + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckMass ; + rdfs:isDefinedBy ; + rdfs:label "Planck mass"@en . + +constant:PlanckMassEnergyEquivalentInGeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckMassEnergyEquivalentInGeV ; + rdfs:isDefinedBy ; + rdfs:label "Planck mass energy equivalent in GeV"@en ; + skos:closeMatch . + +constant:PlanckTemperature + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_temperature"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckTemperature ; + rdfs:isDefinedBy ; + rdfs:label "Planck temperature"@en . + +constant:PlanckTime + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_time"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_PlanckTime ; + rdfs:isDefinedBy ; + rdfs:label "Planck time"@en . + +constant:ProtonChargeToMassQuotient + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonChargeToMassQuotient ; + rdfs:isDefinedBy ; + rdfs:label "proton charge to mass quotient"@en ; + skos:closeMatch . + +constant:ProtonComptonWavelength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonComptonWavelength ; + rdfs:isDefinedBy ; + rdfs:label "proton Compton wavelength"@en ; + skos:closeMatch . + +constant:ProtonComptonWavelengthOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonComptonWavelengthOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "proton Compton wavelength over 2 pi"@en ; + skos:closeMatch . + +constant:ProtonElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton-electron mass ratio"@en . + +constant:ProtonGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonGFactor ; + rdfs:isDefinedBy ; + rdfs:label "proton g factor"@en ; + skos:closeMatch . + +constant:ProtonGyromagneticRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonGyromagneticRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton gyromagnetic ratio"@en ; + skos:closeMatch . + +constant:ProtonGyromagneticRatioOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonGyromagneticRatioOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "proton gyromagnetic ratio over 2 pi"@en ; + skos:closeMatch . + +constant:ProtonMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "proton magnetic moment"@en ; + skos:closeMatch . + +constant:ProtonMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:ProtonMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:ProtonMagneticShieldingCorrection + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMagneticShieldingCorrection ; + rdfs:isDefinedBy ; + rdfs:label "proton mag. shielding correction"@en . + +constant:ProtonMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMass ; + qudt:ucumCode "[m_p]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "proton mass"@en ; + skos:closeMatch . + +constant:ProtonMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "proton mass energy equivalent"@en ; + skos:closeMatch . + +constant:ProtonMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "proton mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:ProtonMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "proton mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:ProtonMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "proton molar mass"@en . + +constant:ProtonMuonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonMuonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton-muon mass ratio"@en . + +constant:ProtonNeutronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonNeutronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton-neutron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ProtonNeutronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonNeutronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton-neutron mass ratio"@en . + +constant:ProtonRmsChargeRadius + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonRmsChargeRadius ; + rdfs:isDefinedBy ; + rdfs:label "proton rms charge radius"@en ; + skos:closeMatch . + +constant:ProtonTauMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ProtonTauMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "proton-tau mass ratio"@en . + +constant:QuantumOfCirculation + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Circulation ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_QuantumOfCirculation ; + rdfs:isDefinedBy ; + rdfs:label "quantum of circulation"@en ; + skos:closeMatch . + +constant:QuantumOfCirculationTimes2 + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Circulation ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_QuantumOfCirculationTimes2 ; + rdfs:isDefinedBy ; + rdfs:label "quantum of circulation times 2"@en ; + skos:closeMatch . + +constant:ReducedPlanckConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Reduced Planck Constant}$, or $\\textit{Dirac Constant}$, is used in applications where + frequency is expressed in terms of radians per second ($\\textit{angular frequency}$) instead of cycles per second. + In such cases a factor of $\\pi$ is absorbed into the constant. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-SEC ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_constant"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\hbar = \\frac{h}{2\\pi}$, where $h$ is the Planck constant."^^qudt:LatexString ; + qudt:latexSymbol "$\\hbar$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_PlanckConstantOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "Reduced Planck Constant"@en ; + skos:broader constant:PlanckConstant . + +constant:RydbergConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Rydberg constant}$, named after the Swedish physicist Johannes Rydberg, is a physical constant + relating to atomic spectra, in the science of spectroscopy. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Rydberg_constant"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rydberg_constant"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$R_\\infty = \\frac{e^2}{8\\pi \\varepsilon_0 a_0 h c_0 }$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, $a_0$ is the Bohr radius, $h$ is the Planck constant, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ; + qudt:latexSymbol "$R_\\infty$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:quantityValue constant:Value_RydbergConstant ; + rdfs:isDefinedBy ; + rdfs:label "Rydberg Constant"@en . + +constant:RydbergConstantTimesCInHz + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_RydbergConstantTimesCInHz ; + rdfs:isDefinedBy ; + rdfs:label "Rydberg constant times c in Hz"@en ; + skos:closeMatch . + +constant:RydbergConstantTimesHcInEV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_RydbergConstantTimesHcInEV ; + rdfs:isDefinedBy ; + rdfs:label "Rydberg constant times hc in eV"@en ; + skos:closeMatch . + +constant:RydbergConstantTimesHcInJ + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_RydbergConstantTimesHcInJ ; + rdfs:isDefinedBy ; + rdfs:label "Rydberg constant times hc in J"@en ; + skos:closeMatch . + +constant:SackurTetrodeConstant1K100KPa + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_SackurTetrodeConstant1K100KPa ; + rdfs:isDefinedBy ; + rdfs:label "Sackur-Tetrode constant 1 K 100 kPa"@en . + +constant:SackurTetrodeConstant1K101dot325KPa + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_SackurTetrodeConstant1K101dot325KPa ; + rdfs:isDefinedBy ; + rdfs:label "Sackur-Tetrode constant 1 K 101.325 kPa"@en . + +constant:SecondRadiationConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LengthTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_SecondRadiationConstant ; + rdfs:isDefinedBy ; + rdfs:label "second radiation constant"@en . + +constant:ShieldedHelionGyromagneticRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionGyromagneticRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion gyromagnetic ratio"@en ; + skos:closeMatch . + +constant:ShieldedHelionGyromagneticRatioOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionGyromagneticRatioOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion gyromagnetic ratio over 2 pi"@en ; + skos:closeMatch . + +constant:ShieldedHelionMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion magnetic moment"@en ; + skos:closeMatch . + +constant:ShieldedHelionMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:ShieldedHelionMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:ShieldedHelionToProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionToProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion to proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ShieldedHelionToShieldedProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedHelionToShieldedProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded helion to shielded proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:ShieldedProtonGyromagneticRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedProtonGyromagneticRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded proton gyromagnetic ratio"@en ; + skos:closeMatch . + +constant:ShieldedProtonGyromagneticRatioOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:GyromagneticRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedProtonGyromagneticRatioOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "shielded proton gyromagnetic ratio over 2 pi"@en ; + skos:closeMatch . + +constant:ShieldedProtonMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedProtonMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "shielded proton magnetic moment"@en ; + skos:closeMatch . + +constant:ShieldedProtonMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded proton magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:ShieldedProtonMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "shielded proton magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:SpeedOfLight_Vacuum + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Speed of Light in Vacuum}$, is a universal physical constant important in many areas of physics. + Its value is 299,792,458 metres per second, a figure that is exact because the length of the metre is + defined from this constant and the international standard for time. + """^^qudt:LatexString ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:informativeReference "http://dbpedia.org/resource/Speed_of_light"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_light"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=113-01-34"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$c_0 = 1 / \\sqrt{\\epsilon_0 \\mu_0}$, where {\\epsilon_0} is the permittivity of vacuum, and $\\mu_0$ is the magnetic constant."^^qudt:LatexString ; + qudt:latexSymbol "$C_0$"^^qudt:LatexString ; + qudt:quantityValue constant:Value_SpeedOfLight_Vacuum ; + qudt:quantityValue constant:Value_SpeedOfLight_Vacuum_Imperial ; + qudt:siExactMatch si-constant:SpeedOfLight ; + qudt:ucumCode "[c]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Speed of Light (vacuum)"@en ; + rdfs:seeAlso constant:MagneticConstant ; + rdfs:seeAlso constant:PermittivityOfVacuum . + +constant:StandardAccelerationOfGravity + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Standard_gravity"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_StandardAccelerationOfGravity ; + rdfs:isDefinedBy ; + rdfs:label "standard acceleration of gravity"@en . + +constant:StandardAtmosphere + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Standard_atmosphere"^^xsd:anyURI ; + qudt:exactConstant true ; + qudt:hasQuantityKind quantitykind:Pressure ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_StandardAtmosphere ; + rdfs:isDefinedBy ; + rdfs:label "standard atmosphere"@en . + +constant:StefanBoltzmannConstant + a qudt:PhysicalConstant ; + dcterms:description """ + The $\\textit{Stefan Boltzmann Constant}$ is a proportionality factor between the specific radiant heat + of a black body and the 4th power of its absolute temperature. + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Stefan%E2%80%93Boltzmann_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-4T-3D0 ; + qudt:hasQuantityKind quantitykind:PowerPerAreaQuarticTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:plainTextDescription "Proportionalitätsfaktor zwischen der spezifischen Strahlungswärme eines schwarzen Strahlers und seiner absoluten Temperatur in der 4. Potenz"@de ; + qudt:quantityValue constant:Value_StefanBoltzmannConstant ; + qudt:symbol "0173-1#Z4-BAJ444#001" ; + rdfs:isDefinedBy ; + rdfs:label "Stefan-Boltzmann Constant"@en . + +constant:TauComptonWavelength + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauComptonWavelength ; + rdfs:isDefinedBy ; + rdfs:label "tau Compton wavelength"@en ; + skos:closeMatch . + +constant:TauComptonWavelengthOver2Pi + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauComptonWavelengthOver2Pi ; + rdfs:isDefinedBy ; + rdfs:label "tau Compton wavelength over 2 pi"@en ; + skos:closeMatch . + +constant:TauElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "tau-electron mass ratio"@en . + +constant:TauMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMass ; + rdfs:isDefinedBy ; + rdfs:label "tau mass"@en . + +constant:TauMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "tau mass energy equivalent"@en ; + skos:closeMatch . + +constant:TauMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "tau mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:TauMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "tau mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:TauMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "tau molar mass"@en . + +constant:TauMuonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauMuonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "tau-muon mass ratio"@en . + +constant:TauNeutronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauNeutronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "tau-neutron mass ratio"@en . + +constant:TauProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TauProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "tau-proton mass ratio"@en . + +constant:ThomsonCrossSection + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thomson_scattering"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_ThomsonCrossSection ; + rdfs:isDefinedBy ; + rdfs:label "Thomson cross section"@en . + +constant:TritonElectronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonElectronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton-electron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:TritonElectronMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonElectronMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton-electron mass ratio"@en . + +constant:TritonGFactor + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonGFactor ; + rdfs:isDefinedBy ; + rdfs:label "triton g factor"@en ; + skos:closeMatch . + +constant:TritonMagneticMoment + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMagneticMoment ; + rdfs:isDefinedBy ; + rdfs:label "triton magnetic moment"@en ; + skos:closeMatch . + +constant:TritonMagneticMomentToBohrMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMagneticMomentToBohrMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton magnetic moment to Bohr magneton ratio"@en ; + skos:closeMatch . + +constant:TritonMagneticMomentToNuclearMagnetonRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMagneticMomentToNuclearMagnetonRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton magnetic moment to nuclear magneton ratio"@en ; + skos:closeMatch . + +constant:TritonMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMass ; + rdfs:isDefinedBy ; + rdfs:label "triton mass"@en . + +constant:TritonMassEnergyEquivalent + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMassEnergyEquivalent ; + rdfs:isDefinedBy ; + rdfs:label "triton mass energy equivalent"@en ; + skos:closeMatch . + +constant:TritonMassEnergyEquivalentInMeV + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMassEnergyEquivalentInMeV ; + rdfs:isDefinedBy ; + rdfs:label "triton mass energy equivalent in MeV"@en ; + skos:closeMatch . + +constant:TritonMassInAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMassInAtomicMassUnit ; + rdfs:isDefinedBy ; + rdfs:label "triton mass in atomic mass unit"@en ; + skos:closeMatch . + +constant:TritonMolarMass + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonMolarMass ; + rdfs:isDefinedBy ; + rdfs:label "triton molar mass"@en . + +constant:TritonNeutronMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonNeutronMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton-neutron magnetic moment ratio"@en ; + skos:closeMatch . + +constant:TritonProtonMagneticMomentRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonProtonMagneticMomentRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton-proton magnetic moment ratio"@en ; + skos:closeMatch . + +constant:TritonProtonMassRatio + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_TritonProtonMassRatio ; + rdfs:isDefinedBy ; + rdfs:label "triton-proton mass ratio"@en . + +constant:UnifiedAtomicMassUnit + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_unit"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_UnifiedAtomicMassUnit ; + qudt:ucumCode "u"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "unified atomic mass unit"@en . + +constant:UniversalGasConstant + a qudt:PhysicalConstant ; + qudt:exactMatch constant:MolarGasConstant ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:latexSymbol "$R$"^^qudt:LatexString ; + qudt:plainTextDescription """ + The gas constant (also known as the molar, universal, or ideal gas constant) is a physical constant which is featured in many fundamental equations in the physical sciences, such as the ideal gas law and the Nernst equation. + Physically, the gas constant is the constant of proportionality that happens to relate the energy scale in physics to the temperature scale, when a mole of particles at the stated temperature is being considered. + """^^qudt:LatexString ; + qudt:quantityValue constant:Value_MolarGasConstant ; + rdfs:isDefinedBy ; + rdfs:label "Universal Gas Constant"@en . + +constant:Value_AlphaParticleElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000031 ; + qudt:standardUncertaintySN 3.1E-6 ; + qudt:value 7294.299537 ; + qudt:valueSN 7.294299537E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?malsme#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:relativeStandardUncertainty 5.0e-8 ; + qudt:standardUncertainty 0.00000000000000000000000000000000033 ; + qudt:standardUncertaintySN 3.3E-34 ; + qudt:value 0.0000000000000000000000000066446562 ; + qudt:valueSN 6.6446562E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mal#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000003 ; + qudt:standardUncertaintySN 3.0E-17 ; + qudt:value 0.000000000597191917 ; + qudt:valueSN 5.97191917E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?malc2#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000093 ; + qudt:standardUncertaintySN 9.3E-5 ; + qudt:value 3727.379109 ; + qudt:valueSN 3.727379109E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?malc2mev#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000062 ; + qudt:standardUncertaintySN 6.2E-11 ; + qudt:value 4.001506179127 ; + qudt:valueSN 4.001506179127E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle mass in atomic mass unit" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?malu#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000062 ; + qudt:standardUncertaintySN 6.2E-14 ; + qudt:value 0.004001506179127 ; + qudt:valueSN 4.001506179127E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmal#mid"^^xsd:anyURI . + +constant:Value_AlphaParticleProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000041 ; + qudt:standardUncertaintySN 4.1E-10 ; + qudt:value 3.97259968951 ; + qudt:valueSN 3.97259968951E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for alpha particle-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?malsmp#mid"^^xsd:anyURI . + +constant:Value_AngstromStar + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000009 ; + qudt:standardUncertaintySN 9.0E-17 ; + qudt:value 0.000000000100001498 ; + qudt:valueSN 1.00001498E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Angstrom star" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?angstar#mid"^^xsd:anyURI . + +constant:Value_AtomicMassConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000083 ; + qudt:standardUncertaintySN 8.3E-35 ; + qudt:value 0.000000000000000000000000001660538782 ; + qudt:valueSN 1.660538782E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?u#mid"^^xsd:anyURI . + +constant:Value_AtomicMassConstantEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000074 ; + qudt:standardUncertaintySN 7.4E-18 ; + qudt:value 0.000000000149241783 ; + qudt:valueSN 1.49241783E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass constant energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tuj#mid"^^xsd:anyURI . + +constant:Value_AtomicMassConstantEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000023 ; + qudt:standardUncertaintySN 2.3E-5 ; + qudt:value 931.494028 ; + qudt:valueSN 9.31494028E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass constant energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muc2mev#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 23.0 ; + qudt:standardUncertaintySN 2.3E1 ; + qudt:value 931494028.0 ; + qudt:valueSN 9.31494028E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uev#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.049 ; + qudt:standardUncertaintySN 4.9E-2 ; + qudt:value 34231777.149 ; + qudt:valueSN 3.4231777149E7 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uhr#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 320000000000000.0 ; + qudt:standardUncertaintySN 3.2E14 ; + qudt:value 225234273690000000000000.0 ; + qudt:valueSN 2.2523427369E23 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uhz#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 1100000.0 ; + qudt:standardUncertaintySN 1.1E6 ; + qudt:value 751300667100000.0 ; + qudt:valueSN 7.513006671E14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uminv#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000074 ; + qudt:standardUncertaintySN 7.4E-18 ; + qudt:value 0.000000000149241783 ; + qudt:valueSN 1.49241783E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uj#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 19000000.0 ; + qudt:standardUncertaintySN 1.9E7 ; + qudt:value 10809527000000.0 ; + qudt:valueSN 1.0809527E13 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?uk#mid"^^xsd:anyURI . + +constant:Value_AtomicMassUnitKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000083 ; + qudt:standardUncertaintySN 8.3E-35 ; + qudt:value 0.000000000000000000000000001660538782 ; + qudt:valueSN 1.660538782E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic mass unit-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ukg#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOf1stHyperpolarizability + a qudt:ConstantValue ; + qudt:hasUnit unit:C3-M-PER-J2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000000000000000081 ; + qudt:standardUncertaintySN 8.1E-61 ; + qudt:value 0.00000000000000000000000000000000000000000000000000003206361533 ; + qudt:valueSN 3.206361533E-53 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of 1st hyperpolarizability" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auhypol#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOf2ndHyperpolarizability + a qudt:ConstantValue ; + qudt:hasUnit unit:C4-M4-PER-J3 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000000000000000000000000000000000031 ; + qudt:standardUncertaintySN 3.1E-72 ; + qudt:value 0.0000000000000000000000000000000000000000000000000000000000000000623538095 ; + qudt:valueSN 6.23538095E-65 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of 2nd hyperpolarizability" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?au2hypol#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfAction + a qudt:ConstantValue ; + qudt:hasUnit unit:J-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-42 ; + qudt:value 0.0000000000000000000000000000000001054571628 ; + qudt:valueSN 1.054571628E-34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of action" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tthbar#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfCharge + a qudt:ConstantValue ; + qudt:hasUnit unit:C ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000004 ; + qudt:standardUncertaintySN 4.0E-27 ; + qudt:value 0.0000000000000000001602176487 ; + qudt:valueSN 1.602176487E-19 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of charge" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?te#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfChargeDensity + a qudt:ConstantValue ; + qudt:hasUnit unit:C-PER-M3 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 27000.0 ; + qudt:standardUncertaintySN 2.7E4 ; + qudt:value 1081202300000.0 ; + qudt:valueSN 1.0812023E12 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of charge density" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aucd#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfCurrent + a qudt:ConstantValue ; + qudt:hasUnit unit:A ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000017 ; + qudt:standardUncertaintySN 1.7E-10 ; + qudt:value 0.00662361763 ; + qudt:valueSN 6.62361763E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of current" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aucur#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricDipoleMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:C-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000021 ; + qudt:standardUncertaintySN 2.1E-37 ; + qudt:value 0.00000000000000000000000000000847835281 ; + qudt:valueSN 8.47835281E-30 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric dipole mom." ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auedm#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricField + a qudt:ConstantValue ; + qudt:hasUnit unit:V-PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 13000.0 ; + qudt:standardUncertaintySN 1.3E4 ; + qudt:value 514220632000.0 ; + qudt:valueSN 5.14220632E11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric field" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auefld#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricFieldGradient + a qudt:ConstantValue ; + qudt:hasUnit unit:V-PER-M2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 240000000000000.0 ; + qudt:standardUncertaintySN 2.4E14 ; + qudt:value 9717361660000000000000.0 ; + qudt:valueSN 9.71736166E21 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric field gradient" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auefg#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricPolarizability + a qudt:ConstantValue ; + qudt:hasUnit unit:C2-M2-PER-J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000000000000000034 ; + qudt:standardUncertaintySN 3.4E-50 ; + qudt:value 0.000000000000000000000000000000000000000016487772536 ; + qudt:valueSN 1.6487772536E-41 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric polarizability" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auepol#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricPotential + a qudt:ConstantValue ; + qudt:hasUnit unit:V ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000068 ; + qudt:standardUncertaintySN 6.8E-7 ; + qudt:value 27.21138386 ; + qudt:valueSN 2.721138386E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric potential" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auep#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfElectricQuadrupoleMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:C-M2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000000000000011 ; + qudt:standardUncertaintySN 1.1E-47 ; + qudt:value 0.000000000000000000000000000000000000000448655107 ; + qudt:valueSN 4.48655107E-40 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of electric quadrupole moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aueqm#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfEnergy + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000022 ; + qudt:standardUncertaintySN 2.2E-25 ; + qudt:value 0.00000000000000000435974394 ; + qudt:valueSN 4.35974394E-18 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of energy" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?thr#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfForce + a qudt:ConstantValue ; + qudt:hasUnit unit:N ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000041 ; + qudt:standardUncertaintySN 4.1E-15 ; + qudt:value 0.0000000823872206 ; + qudt:valueSN 8.23872206E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of force" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auforce#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfLength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000036 ; + qudt:standardUncertaintySN 3.6E-20 ; + qudt:value 0.000000000052917720859 ; + qudt:valueSN 5.2917720859E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of length" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tbohrrada0#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfMagneticDipoleMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000046 ; + qudt:standardUncertaintySN 4.6E-31 ; + qudt:value 0.0000000000000000000000185480183 ; + qudt:valueSN 1.85480183E-23 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of magnetic dipole moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumdm#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfMagneticFluxDensity + a qudt:ConstantValue ; + qudt:hasUnit unit:T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0059 ; + qudt:standardUncertaintySN 5.9E-3 ; + qudt:value 235051.7382 ; + qudt:valueSN 2.350517382E5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of magnetic flux density" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumfd#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfMagnetizability + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000027 ; + qudt:standardUncertaintySN 2.7E-37 ; + qudt:value 0.00000000000000000000000000007891036433 ; + qudt:valueSN 7.891036433E-29 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of magnetizability" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumag#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000045 ; + qudt:standardUncertaintySN 4.5E-38 ; + qudt:value 0.000000000000000000000000000000910938215 ; + qudt:valueSN 9.10938215E-31 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ttme#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfMomentum + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000099 ; + qudt:standardUncertaintySN 9.9E-32 ; + qudt:value 0.000000000000000000000001992851565 ; + qudt:valueSN 1.992851565E-24 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of momentum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumom#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfPermittivity + a qudt:ConstantValue ; + qudt:hasUnit unit:FARAD-PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.0000000001112650056 ; + qudt:valueSN 1.112650056E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of permittivity" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auperm#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfTime + a qudt:ConstantValue ; + qudt:hasUnit unit:SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000016 ; + qudt:standardUncertaintySN 1.6E-12 ; + qudt:value 0.00000000000000002418884326505 ; + qudt:valueSN 2.418884326505E-17 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of time" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?aut#mid"^^xsd:anyURI . + +constant:Value_AtomicUnitOfVelocity + a qudt:ConstantValue ; + qudt:hasUnit unit:M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0015 ; + qudt:standardUncertaintySN 1.5E-3 ; + qudt:value 2187691.2541 ; + qudt:valueSN 2.1876912541E6 ; + rdfs:isDefinedBy ; + rdfs:label "Value for atomic unit of velocity" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?auvel#mid"^^xsd:anyURI . + +constant:Value_AvogadroConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 30000000000000000.0 ; + qudt:standardUncertaintySN 3.0E16 ; + qudt:value 602214179000000000000000.0 ; + qudt:valueSN 6.02214179E23 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Avogadro constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?na#mid"^^xsd:anyURI . + +constant:Value_BohrMagneton + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000023 ; + qudt:standardUncertaintySN 2.3E-31 ; + qudt:value 0.00000000000000000000000927400915 ; + qudt:valueSN 9.27400915E-24 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr magneton" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mub#mid"^^xsd:anyURI . + +constant:Value_BohrMagnetonInEVPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000079 ; + qudt:standardUncertaintySN 7.9E-14 ; + qudt:value 0.000057883817555 ; + qudt:valueSN 5.7883817555E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr magneton in eV per T" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubev#mid"^^xsd:anyURI . + +constant:Value_BohrMagnetonInHzPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 350.0 ; + qudt:standardUncertaintySN 3.5E2 ; + qudt:value 13996246040.0 ; + qudt:valueSN 1.399624604E10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr magneton in Hz perT" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubshhz#mid"^^xsd:anyURI . + +constant:Value_BohrMagnetonInInverseMetersPerTesla + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000012 ; + qudt:standardUncertaintySN 1.2E-6 ; + qudt:value 46.6864515 ; + qudt:valueSN 4.66864515E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr magneton in inverse meters per tesla" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubshcminv#mid"^^xsd:anyURI . + +constant:Value_BohrMagnetonInKPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:K-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000012 ; + qudt:standardUncertaintySN 1.2E-6 ; + qudt:value 0.6717131 ; + qudt:valueSN 6.717131E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr magneton in K per T" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubskk#mid"^^xsd:anyURI . + +constant:Value_BohrRadius + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000036 ; + qudt:standardUncertaintySN 3.6E-20 ; + qudt:value 0.000000000052917720859 ; + qudt:valueSN 5.2917720859E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Bohr radius" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?bohrrada0#mid"^^xsd:anyURI . + +constant:Value_BoltzmannConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000024 ; + qudt:standardUncertaintySN 2.4E-29 ; + qudt:value 0.000000000000000000000013806504 ; + qudt:valueSN 1.3806504E-23 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Boltzmann constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?k#mid"^^xsd:anyURI . + +constant:Value_BoltzmannConstantInEVPerK + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-PER-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000015 ; + qudt:standardUncertaintySN 1.5E-10 ; + qudt:value 0.00008617343 ; + qudt:valueSN 8.617343E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Boltzmann constant in eV per K" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tkev#mid"^^xsd:anyURI . + +constant:Value_BoltzmannConstantInHzPerK + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ-PER-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 36000.0 ; + qudt:standardUncertaintySN 3.6E4 ; + qudt:value 20836644000.0 ; + qudt:valueSN 2.0836644E10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Boltzmann constant in Hz per K" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kshhz#mid"^^xsd:anyURI . + +constant:Value_BoltzmannConstantInInverseMetersPerKelvin + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00012 ; + qudt:standardUncertaintySN 1.2E-4 ; + qudt:value 69.50356 ; + qudt:valueSN 6.950356E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Boltzmann constant in inverse meters per kelvin" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kshcminv#mid"^^xsd:anyURI . + +constant:Value_CharacteristicImpedanceOfVacuum + a qudt:ConstantValue ; + qudt:hasUnit unit:OHM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 376.730313461 ; + qudt:valueSN 3.76730313461E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for characteristic impedance of vacuum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?z0#mid"^^xsd:anyURI . + +constant:Value_ClassicalElectronRadius + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000058 ; + qudt:standardUncertaintySN 5.8E-24 ; + qudt:value 0.0000000000000028179402894 ; + qudt:valueSN 2.8179402894E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for classical electron radius" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?re#mid"^^xsd:anyURI . + +constant:Value_ComptonWavelength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000033 ; + qudt:standardUncertaintySN 3.3E-21 ; + qudt:value 0.0000000000024263102175 ; + qudt:valueSN 2.4263102175E-12 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Compton wavelength" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ecomwl#mid"^^xsd:anyURI . + +constant:Value_ComptonWavelengthOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-22 ; + qudt:value 0.00000000000038615926459 ; + qudt:valueSN 3.8615926459E-13 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Compton wavelength over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ecomwlbar#mid"^^xsd:anyURI . + +constant:Value_ConductanceQuantum + a qudt:ConstantValue ; + qudt:hasUnit unit:S ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000053 ; + qudt:standardUncertaintySN 5.3E-14 ; + qudt:value 0.000077480917004 ; + qudt:valueSN 7.7480917004E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for conductance quantum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?conqu2e2sh#mid"^^xsd:anyURI . + +constant:Value_ConventionalValueOfJosephsonConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ-PER-V ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 483597900000000.0 ; + qudt:valueSN 4.835979E14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for conventional value of Josephson constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kj90#mid"^^xsd:anyURI . + +constant:Value_ConventionalValueOfVonKlitzingConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:OHM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 25812.807 ; + qudt:valueSN 2.5812807E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for conventional value of von Klitzing constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rk90#mid"^^xsd:anyURI . + +constant:Value_CuXUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000028 ; + qudt:standardUncertaintySN 2.8E-20 ; + qudt:value 0.000000000000100207699 ; + qudt:valueSN 1.00207699E-13 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Cu x unit" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?xucukalph1#mid"^^xsd:anyURI . + +constant:Value_DeuteronElectronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000039 ; + qudt:standardUncertaintySN 3.9E-12 ; + qudt:value -0.0004664345537 ; + qudt:valueSN -4.664345537E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron-electron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmuem#mid"^^xsd:anyURI . + +constant:Value_DeuteronElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000016 ; + qudt:standardUncertaintySN 1.6E-6 ; + qudt:value 3670.4829654 ; + qudt:valueSN 3.6704829654E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdsme#mid"^^xsd:anyURI . + +constant:Value_DeuteronGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000072 ; + qudt:standardUncertaintySN 7.2E-9 ; + qudt:value 0.8574382308 ; + qudt:valueSN 8.574382308E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gdn#mid"^^xsd:anyURI . + +constant:Value_DeuteronMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000011 ; + qudt:standardUncertaintySN 1.1E-34 ; + qudt:value 0.00000000000000000000000000433073465 ; + qudt:valueSN 4.33073465E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mud#mid"^^xsd:anyURI . + +constant:Value_DeuteronMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000039 ; + qudt:standardUncertaintySN 3.9E-12 ; + qudt:value 0.0004669754556 ; + qudt:valueSN 4.669754556E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmub#mid"^^xsd:anyURI . + +constant:Value_DeuteronMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000072 ; + qudt:standardUncertaintySN 7.2E-9 ; + qudt:value 0.8574382308 ; + qudt:valueSN 8.574382308E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmun#mid"^^xsd:anyURI . + +constant:Value_DeuteronMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000017 ; + qudt:standardUncertaintySN 1.7E-34 ; + qudt:value 0.0000000000000000000000000033435832 ; + qudt:valueSN 3.3435832E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?md#mid"^^xsd:anyURI . + +constant:Value_DeuteronMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000015 ; + qudt:standardUncertaintySN 1.5E-17 ; + qudt:value 0.000000000300506272 ; + qudt:valueSN 3.00506272E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdc2#mid"^^xsd:anyURI . + +constant:Value_DeuteronMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000047 ; + qudt:standardUncertaintySN 4.7E-5 ; + qudt:value 1875.612793 ; + qudt:valueSN 1.875612793E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdc2mev#mid"^^xsd:anyURI . + +constant:Value_DeuteronMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000078 ; + qudt:standardUncertaintySN 7.8E-11 ; + qudt:value 2.013553212724 ; + qudt:valueSN 2.013553212724E0 ; + rdfs:isDefinedBy ; + rdfs:label "Deuteron Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdu#mid"^^xsd:anyURI . + +constant:Value_DeuteronMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000078 ; + qudt:standardUncertaintySN 7.8E-14 ; + qudt:value 0.002013553212724 ; + qudt:valueSN 2.013553212724E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmd#mid"^^xsd:anyURI . + +constant:Value_DeuteronNeutronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000011 ; + qudt:standardUncertaintySN 1.1E-7 ; + qudt:value -0.44820652 ; + qudt:valueSN -4.4820652E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron-neutron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmunn#mid"^^xsd:anyURI . + +constant:Value_DeuteronProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000024 ; + qudt:standardUncertaintySN 2.4E-9 ; + qudt:value 0.307012207 ; + qudt:valueSN 3.07012207E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron-proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmup#mid"^^xsd:anyURI . + +constant:Value_DeuteronProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000022 ; + qudt:standardUncertaintySN 2.2E-10 ; + qudt:value 1.99900750108 ; + qudt:valueSN 1.99900750108E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdsmp#mid"^^xsd:anyURI . + +constant:Value_DeuteronRmsChargeRadius + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000028 ; + qudt:standardUncertaintySN 2.8E-18 ; + qudt:value 0.0000000000000021402 ; + qudt:valueSN 2.1402E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for deuteron rms charge radius" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rd#mid"^^xsd:anyURI . + +constant:Value_ElectricConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:FARAD-PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.000000000008854187817 ; + qudt:valueSN 8.854187817E-12 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electric constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ep0#mid"^^xsd:anyURI . + +constant:Value_ElectronChargeToMassQuotient + a qudt:ConstantValue ; + qudt:hasUnit unit:C-PER-KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 4400.0 ; + qudt:standardUncertaintySN 4.4E3 ; + qudt:value -175882015000.0 ; + qudt:valueSN -1.75882015E11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron charge to mass quotient" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?esme#mid"^^xsd:anyURI . + +constant:Value_ElectronDeuteronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000018 ; + qudt:standardUncertaintySN 1.8E-5 ; + qudt:value -2143.923498 ; + qudt:valueSN -2.143923498E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-deuteron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmud#mid"^^xsd:anyURI . + +constant:Value_ElectronDeuteronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000012 ; + qudt:standardUncertaintySN 1.2E-13 ; + qudt:value 0.00027244371093 ; + qudt:valueSN 2.7244371093E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-deuteron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmd#mid"^^xsd:anyURI . + +constant:Value_ElectronGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000035 ; + qudt:standardUncertaintySN 3.5E-13 ; + qudt:value -2.00231930436256 ; + qudt:valueSN -2.00231930436256E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gem#mid"^^xsd:anyURI . + +constant:Value_ElectronGyromagneticRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 4400.0 ; + qudt:standardUncertaintySN 4.4E3 ; + qudt:value 176085977000.0 ; + qudt:valueSN 1.76085977E11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron gyromagnetic ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammae#mid"^^xsd:anyURI . + +constant:Value_ElectronGyromagneticRatioOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0007 ; + qudt:standardUncertaintySN 7.0E-4 ; + qudt:value 28024.95364 ; + qudt:valueSN 2.802495364E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron gyromagnetic ratio over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammaebar#mid"^^xsd:anyURI . + +constant:Value_ElectronMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000023 ; + qudt:standardUncertaintySN 2.3E-31 ; + qudt:value -0.00000000000000000000000928476377 ; + qudt:valueSN -9.28476377E-24 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muem#mid"^^xsd:anyURI . + +constant:Value_ElectronMagneticMomentAnomaly + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000074 ; + qudt:standardUncertaintySN 7.4E-13 ; + qudt:value 0.00115965218111 ; + qudt:valueSN 1.15965218111E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron magnetic moment anomaly" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ae#mid"^^xsd:anyURI . + +constant:Value_ElectronMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000074 ; + qudt:standardUncertaintySN 7.4E-13 ; + qudt:value -1.00115965218111 ; + qudt:valueSN -1.00115965218111E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmub#mid"^^xsd:anyURI . + +constant:Value_ElectronMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000008 ; + qudt:standardUncertaintySN 8.0E-7 ; + qudt:value -1838.28197092 ; + qudt:valueSN -1.83828197092E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmun#mid"^^xsd:anyURI . + +constant:Value_ElectronMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000045 ; + qudt:standardUncertaintySN 4.5E-38 ; + qudt:value 0.000000000000000000000000000000910938215 ; + qudt:valueSN 9.10938215E-31 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?me#mid"^^xsd:anyURI . + +constant:Value_ElectronMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000041 ; + qudt:standardUncertaintySN 4.1E-21 ; + qudt:value 0.0000000000000818710438 ; + qudt:valueSN 8.18710438E-14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec2#mid"^^xsd:anyURI . + +constant:Value_ElectronMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000013 ; + qudt:standardUncertaintySN 1.3E-8 ; + qudt:value 0.51099891 ; + qudt:valueSN 5.1099891E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec2mev#mid"^^xsd:anyURI . + +constant:Value_ElectronMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000023 ; + qudt:standardUncertaintySN 2.3E-13 ; + qudt:value 0.00054857990943 ; + qudt:valueSN 5.4857990943E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Electron Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?meu#mid"^^xsd:anyURI . + +constant:Value_ElectronMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000023 ; + qudt:standardUncertaintySN 2.3E-16 ; + qudt:value 0.00000054857990943 ; + qudt:valueSN 5.4857990943E-7 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mme#mid"^^xsd:anyURI . + +constant:Value_ElectronMuonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000052 ; + qudt:standardUncertaintySN 5.2E-6 ; + qudt:value 206.7669877 ; + qudt:valueSN 2.067669877E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-muon magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmumum#mid"^^xsd:anyURI . + +constant:Value_ElectronMuonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000012 ; + qudt:standardUncertaintySN 1.2E-10 ; + qudt:value 0.00483633171 ; + qudt:valueSN 4.83633171E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-muon mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmmu#mid"^^xsd:anyURI . + +constant:Value_ElectronNeutronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00023 ; + qudt:standardUncertaintySN 2.3E-4 ; + qudt:value 960.9205 ; + qudt:valueSN 9.609205E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-neutron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmunn#mid"^^xsd:anyURI . + +constant:Value_ElectronNeutronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000033 ; + qudt:standardUncertaintySN 3.3E-13 ; + qudt:value 0.00054386734459 ; + qudt:valueSN 5.4386734459E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-neutron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmn#mid"^^xsd:anyURI . + +constant:Value_ElectronProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000054 ; + qudt:standardUncertaintySN 5.4E-6 ; + qudt:value -658.2106848 ; + qudt:valueSN -6.582106848E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmup#mid"^^xsd:anyURI . + +constant:Value_ElectronProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000024 ; + qudt:standardUncertaintySN 2.4E-13 ; + qudt:value 0.00054461702177 ; + qudt:valueSN 5.4461702177E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmp#mid"^^xsd:anyURI . + +constant:Value_ElectronTauMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000047 ; + qudt:standardUncertaintySN 4.7E-8 ; + qudt:value 0.000287564 ; + qudt:valueSN 2.87564E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron-tau mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmtau#mid"^^xsd:anyURI . + +constant:Value_ElectronToAlphaParticleMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000058 ; + qudt:standardUncertaintySN 5.8E-14 ; + qudt:value 0.00013709335557 ; + qudt:valueSN 1.3709335557E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron to alpha particle mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmalpha#mid"^^xsd:anyURI . + +constant:Value_ElectronToShieldedHelionMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00001 ; + qudt:standardUncertaintySN 1.0E-5 ; + qudt:value 864.058257 ; + qudt:valueSN 8.64058257E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron to shielded helion magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmuhp#mid"^^xsd:anyURI . + +constant:Value_ElectronToShieldedProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000072 ; + qudt:standardUncertaintySN 7.2E-6 ; + qudt:value -658.2275971 ; + qudt:valueSN -6.582275971E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron to shielded proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmupp#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000027 ; + qudt:standardUncertaintySN 2.7E-17 ; + qudt:value 0.000000001073544188 ; + qudt:valueSN 1.073544188E-9 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evu#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000092 ; + qudt:standardUncertaintySN 9.2E-10 ; + qudt:value 0.0367493254 ; + qudt:valueSN 3.67493254E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evhr#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 6000000.0 ; + qudt:standardUncertaintySN 6.0E6 ; + qudt:value 241798945400000.0 ; + qudt:valueSN 2.417989454E14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evhz#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.02 ; + qudt:standardUncertaintySN 2.0E-2 ; + qudt:value 806554.465 ; + qudt:valueSN 8.06554465E5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evminv#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000004 ; + qudt:standardUncertaintySN 4.0E-27 ; + qudt:value 0.0000000000000000001602176487 ; + qudt:valueSN 1.602176487E-19 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evj#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.02 ; + qudt:standardUncertaintySN 2.0E-2 ; + qudt:value 11604.505 ; + qudt:valueSN 1.1604505E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evk#mid"^^xsd:anyURI . + +constant:Value_ElectronVoltKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000000000044 ; + qudt:standardUncertaintySN 4.4E-44 ; + qudt:value 0.000000000000000000000000000000000001782661758 ; + qudt:valueSN 1.782661758E-36 ; + rdfs:isDefinedBy ; + rdfs:label "Value for electron volt-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?evkg#mid"^^xsd:anyURI . + +constant:Value_ElementaryCharge + a qudt:ConstantValue ; + qudt:hasUnit unit:C ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000004 ; + qudt:standardUncertaintySN 4.0E-27 ; + qudt:value 0.0000000000000000001602176487 ; + qudt:valueSN 1.602176487E-19 ; + rdfs:isDefinedBy ; + rdfs:label "Value for elementary charge" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?e#mid"^^xsd:anyURI . + +constant:Value_ElementaryChargeOverH + a qudt:ConstantValue ; + qudt:hasUnit unit:A-PER-J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 6000000.0 ; + qudt:standardUncertaintySN 6.0E6 ; + qudt:value 241798945400000.0 ; + qudt:valueSN 2.417989454E14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for elementary charge over h" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?esh#mid"^^xsd:anyURI . + +constant:Value_FaradayConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:C-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0024 ; + qudt:standardUncertaintySN 2.4E-3 ; + qudt:value 96485.3399 ; + qudt:valueSN 9.64853399E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Faraday constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?f#mid"^^xsd:anyURI . + +constant:Value_FaradayConstantForConventionalElectricCurrent + a qudt:ConstantValue ; + qudt:hasUnit unit:C-PER-MOL ; + qudt:value 96485.33212 ; + qudt:valueSN 9.648533212E4 ; + rdfs:isDefinedBy ; + rdfs:label "Faraday constant for conventional electric current" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?f90#mid"^^xsd:anyURI . + +constant:Value_FermiCouplingConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-GigaEV2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000001 ; + qudt:standardUncertaintySN 1.0E-10 ; + qudt:value 0.0000116637 ; + qudt:valueSN 1.16637E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Fermi coupling constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gf#mid"^^xsd:anyURI . + +constant:Value_FineStructureConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000005 ; + qudt:standardUncertaintySN 5.0E-12 ; + qudt:value 0.0072973525376 ; + qudt:valueSN 7.2973525376E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for fine-structure constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?alph#mid"^^xsd:anyURI . + +constant:Value_FirstRadiationConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:W-M2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000019 ; + qudt:standardUncertaintySN 1.9E-23 ; + qudt:value 0.000000000000000374177118 ; + qudt:valueSN 3.74177118E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for first radiation constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?c11strc#mid"^^xsd:anyURI . + +constant:Value_FirstRadiationConstantForSpectralRadiance + a qudt:ConstantValue ; + qudt:hasUnit unit:W-M2-PER-SR ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000059 ; + qudt:standardUncertaintySN 5.9E-24 ; + qudt:value 0.0000000000000001191042759 ; + qudt:valueSN 1.191042759E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for first radiation constant for spectral radiance" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?c1l#mid"^^xsd:anyURI . + +constant:Value_GravitationalConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:N-M2-PER-KiloGM2 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Gravitational_constant"^^xsd:anyURI ; + qudt:value 0.00000000006674 ; + qudt:valueSN 6.674E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for gravitational constant" . + +constant:Value_HartreeAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000042 ; + qudt:standardUncertaintySN 4.2E-17 ; + qudt:value 0.000000029212622986 ; + qudt:valueSN 2.9212622986E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hru#mid"^^xsd:anyURI . + +constant:Value_HartreeElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000068 ; + qudt:standardUncertaintySN 6.8E-7 ; + qudt:value 27.21138386 ; + qudt:valueSN 2.721138386E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrev#mid"^^xsd:anyURI . + +constant:Value_HartreeEnergy + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000022 ; + qudt:standardUncertaintySN 2.2E-25 ; + qudt:value 0.00000000000000000435974394 ; + qudt:valueSN 4.35974394E-18 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Hartree energy" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hr#mid"^^xsd:anyURI . + +constant:Value_HartreeEnergyInEV + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000068 ; + qudt:standardUncertaintySN 6.8E-7 ; + qudt:value 27.21138386 ; + qudt:valueSN 2.721138386E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Hartree energy in eV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?threv#mid"^^xsd:anyURI . + +constant:Value_HartreeHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 44000.0 ; + qudt:standardUncertaintySN 4.4E4 ; + qudt:value 6579683920722000.0 ; + qudt:valueSN 6.579683920722E15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrhz#mid"^^xsd:anyURI . + +constant:Value_HartreeInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00015 ; + qudt:standardUncertaintySN 1.5E-4 ; + qudt:value 21947463.13705 ; + qudt:valueSN 2.194746313705E7 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrminv#mid"^^xsd:anyURI . + +constant:Value_HartreeJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000022 ; + qudt:standardUncertaintySN 2.2E-25 ; + qudt:value 0.00000000000000000435974394 ; + qudt:valueSN 4.35974394E-18 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrj#mid"^^xsd:anyURI . + +constant:Value_HartreeKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.55 ; + qudt:standardUncertaintySN 5.5E-1 ; + qudt:value 315774.65 ; + qudt:valueSN 3.1577465E5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrk#mid"^^xsd:anyURI . + +constant:Value_HartreeKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000024 ; + qudt:standardUncertaintySN 2.4E-42 ; + qudt:value 0.0000000000000000000000000000000000485086934 ; + qudt:valueSN 4.85086934E-35 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hartree-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrkg#mid"^^xsd:anyURI . + +constant:Value_HelionElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000052 ; + qudt:standardUncertaintySN 5.2E-6 ; + qudt:value 5495.8852765 ; + qudt:valueSN 5.4958852765E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhsme#mid"^^xsd:anyURI . + +constant:Value_HelionMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000025 ; + qudt:standardUncertaintySN 2.5E-34 ; + qudt:value 0.00000000000000000000000000500641192 ; + qudt:valueSN 5.00641192E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mh#mid"^^xsd:anyURI . + +constant:Value_HelionMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000022 ; + qudt:standardUncertaintySN 2.2E-17 ; + qudt:value 0.000000000449953864 ; + qudt:valueSN 4.49953864E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhc2#mid"^^xsd:anyURI . + +constant:Value_HelionMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00007 ; + qudt:standardUncertaintySN 7.0E-5 ; + qudt:value 2808.391383 ; + qudt:valueSN 2.808391383E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhc2mev#mid"^^xsd:anyURI . + +constant:Value_HelionMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000026 ; + qudt:standardUncertaintySN 2.6E-9 ; + qudt:value 3.0149322473 ; + qudt:valueSN 3.0149322473E0 ; + rdfs:isDefinedBy ; + rdfs:label "Helion Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhu#mid"^^xsd:anyURI . + +constant:Value_HelionMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000026 ; + qudt:standardUncertaintySN 2.6E-12 ; + qudt:value 0.0030149322473 ; + qudt:valueSN 3.0149322473E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmh#mid"^^xsd:anyURI . + +constant:Value_HelionProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000026 ; + qudt:standardUncertaintySN 2.6E-9 ; + qudt:value 2.9931526713 ; + qudt:valueSN 2.9931526713E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for helion-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhsmp#mid"^^xsd:anyURI . + +constant:Value_HertzAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000064 ; + qudt:standardUncertaintySN 6.4E-33 ; + qudt:value 0.0000000000000000000000044398216294 ; + qudt:valueSN 4.4398216294E-24 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzu#mid"^^xsd:anyURI . + +constant:Value_HertzElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000001 ; + qudt:standardUncertaintySN 1.0E-22 ; + qudt:value 0.00000000000000413566733 ; + qudt:valueSN 4.13566733E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzev#mid"^^xsd:anyURI . + +constant:Value_HertzHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000001 ; + qudt:standardUncertaintySN 1.0E-12 ; + qudt:value 0.0000000000000001519829846006 ; + qudt:valueSN 1.519829846006E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzhr#mid"^^xsd:anyURI . + +constant:Value_HertzInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.000000003335640951 ; + qudt:valueSN 3.335640951E-9 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzminv#mid"^^xsd:anyURI . + +constant:Value_HertzJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000000033 ; + qudt:standardUncertaintySN 3.3E-41 ; + qudt:value 0.000000000000000000000000000000000662606896 ; + qudt:valueSN 6.62606896E-34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzj#mid"^^xsd:anyURI . + +constant:Value_HertzKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000084 ; + qudt:standardUncertaintySN 8.4E-17 ; + qudt:value 0.000000000047992374 ; + qudt:valueSN 4.7992374E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzk#mid"^^xsd:anyURI . + +constant:Value_HertzKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000000000000037 ; + qudt:standardUncertaintySN 3.7E-58 ; + qudt:value 0.000000000000000000000000000000000000000000000000007372496 ; + qudt:valueSN 7.372496E-51 ; + rdfs:isDefinedBy ; + rdfs:label "Value for hertz-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzkg#mid"^^xsd:anyURI . + +constant:Value_InverseFineStructureConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000094 ; + qudt:standardUncertaintySN 9.4E-8 ; + qudt:value 137.035999679 ; + qudt:valueSN 1.37035999679E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse fine-structure constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?alphinv#mid"^^xsd:anyURI . + +constant:Value_InverseMeterAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000019 ; + qudt:standardUncertaintySN 1.9E-24 ; + qudt:value 0.0000000000000013310250394 ; + qudt:valueSN 1.3310250394E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvu#mid"^^xsd:anyURI . + +constant:Value_InverseMeterElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000031 ; + qudt:standardUncertaintySN 3.1E-14 ; + qudt:value 0.000001239841875 ; + qudt:valueSN 1.239841875E-6 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvev#mid"^^xsd:anyURI . + +constant:Value_InverseMeterHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000003 ; + qudt:standardUncertaintySN 3.0E-19 ; + qudt:value 0.0000000455633525276 ; + qudt:valueSN 4.55633525276E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvhr#mid"^^xsd:anyURI . + +constant:Value_InverseMeterHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 299792458.0 ; + qudt:valueSN 2.99792458E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvhz#mid"^^xsd:anyURI . + +constant:Value_InverseMeterJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000099 ; + qudt:standardUncertaintySN 9.9E-33 ; + qudt:value 0.0000000000000000000000001986445501 ; + qudt:valueSN 1.986445501E-25 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvj#mid"^^xsd:anyURI . + +constant:Value_InverseMeterKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000025 ; + qudt:standardUncertaintySN 2.5E-8 ; + qudt:value 0.014387752 ; + qudt:valueSN 1.4387752E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvk#mid"^^xsd:anyURI . + +constant:Value_InverseMeterKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000011 ; + qudt:standardUncertaintySN 1.1E-49 ; + qudt:value 0.0000000000000000000000000000000000000000022102187 ; + qudt:valueSN 2.2102187E-42 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse meter-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvkg#mid"^^xsd:anyURI . + +constant:Value_InverseOfConductanceQuantum + a qudt:ConstantValue ; + qudt:hasUnit unit:OHM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000088 ; + qudt:standardUncertaintySN 8.8E-6 ; + qudt:value 12906.4037787 ; + qudt:valueSN 1.29064037787E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for inverse of conductance quantum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?invconqu#mid"^^xsd:anyURI . + +constant:Value_JosephsonConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ-PER-V ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 12000000.0 ; + qudt:standardUncertaintySN 1.2E7 ; + qudt:value 483597891000000.0 ; + qudt:valueSN 4.83597891E14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Josephson constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kjos#mid"^^xsd:anyURI . + +constant:Value_JouleAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 330.0 ; + qudt:standardUncertaintySN 3.3E2 ; + qudt:value 6700536410.0 ; + qudt:valueSN 6.70053641E9 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ju#mid"^^xsd:anyURI . + +constant:Value_JouleElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 160000000000.0 ; + qudt:standardUncertaintySN 1.6E11 ; + qudt:value 6241509650000000000.0 ; + qudt:valueSN 6.24150965E18 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jev#mid"^^xsd:anyURI . + +constant:Value_JouleHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 11000000000.0 ; + qudt:standardUncertaintySN 1.1E10 ; + qudt:value 229371269000000000.0 ; + qudt:valueSN 2.29371269E17 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jhr#mid"^^xsd:anyURI . + +constant:Value_JouleHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 75000000000000000000000000.0 ; + qudt:standardUncertaintySN 7.5E25 ; + qudt:value 1509190450000000000000000000000000.0 ; + qudt:valueSN 1.50919045E33 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jhz#mid"^^xsd:anyURI . + +constant:Value_JouleInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 250000000000000000.0 ; + qudt:standardUncertaintySN 2.5E17 ; + qudt:value 5034117470000000000000000.0 ; + qudt:valueSN 5.03411747E24 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jminv#mid"^^xsd:anyURI . + +constant:Value_JouleKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 130000000000000000.0 ; + qudt:standardUncertaintySN 1.3E17 ; + qudt:value 72429630000000000000000.0 ; + qudt:valueSN 7.242963E22 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jk#mid"^^xsd:anyURI . + +constant:Value_JouleKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.00000000000000001112650056 ; + qudt:valueSN 1.112650056E-17 ; + rdfs:isDefinedBy ; + rdfs:label "Value for joule-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?jkg#mid"^^xsd:anyURI . + +constant:Value_KelvinAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000016 ; + qudt:standardUncertaintySN 1.6E-19 ; + qudt:value 0.00000000000009251098 ; + qudt:valueSN 9.251098E-14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ku#mid"^^xsd:anyURI . + +constant:Value_KelvinElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000015 ; + qudt:standardUncertaintySN 1.5E-10 ; + qudt:value 0.00008617343 ; + qudt:valueSN 8.617343E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kev#mid"^^xsd:anyURI . + +constant:Value_KelvinHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000055 ; + qudt:standardUncertaintySN 5.5E-12 ; + qudt:value 0.0000031668153 ; + qudt:valueSN 3.1668153E-6 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?khr#mid"^^xsd:anyURI . + +constant:Value_KelvinHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 36000.0 ; + qudt:standardUncertaintySN 3.6E4 ; + qudt:value 20836644000.0 ; + qudt:valueSN 2.0836644E10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?khz#mid"^^xsd:anyURI . + +constant:Value_KelvinInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00012 ; + qudt:standardUncertaintySN 1.2E-4 ; + qudt:value 69.50356 ; + qudt:valueSN 6.950356E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kminv#mid"^^xsd:anyURI . + +constant:Value_KelvinJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000024 ; + qudt:standardUncertaintySN 2.4E-29 ; + qudt:value 0.000000000000000000000013806504 ; + qudt:valueSN 1.3806504E-23 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kj#mid"^^xsd:anyURI . + +constant:Value_KelvinKilogramRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000000000027 ; + qudt:standardUncertaintySN 2.7E-46 ; + qudt:value 0.00000000000000000000000000000000000000015361807 ; + qudt:valueSN 1.5361807E-40 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kelvin-kilogram relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kkg#mid"^^xsd:anyURI . + +constant:Value_KilogramAtomicMassUnitRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 30000000000000000000.0 ; + qudt:standardUncertaintySN 3.0E19 ; + qudt:value 602214179000000000000000000.0 ; + qudt:valueSN 6.02214179E26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-atomic mass unit relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgu#mid"^^xsd:anyURI . + +constant:Value_KilogramElectronVoltRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 14000000000000000000000000000.0 ; + qudt:standardUncertaintySN 1.4E28 ; + qudt:value 560958912000000000000000000000000000.0 ; + qudt:valueSN 5.60958912E35 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-electron volt relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgev#mid"^^xsd:anyURI . + +constant:Value_KilogramHartreeRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:E_h ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 1000000000000000000000000000.0 ; + qudt:standardUncertaintySN 1.0E27 ; + qudt:value 20614861600000000000000000000000000.0 ; + qudt:valueSN 2.06148616E34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-hartree relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kghr#mid"^^xsd:anyURI . + +constant:Value_KilogramHertzRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 6800000000000000000000000000000000000000000.0 ; + qudt:standardUncertaintySN 6.8E42 ; + qudt:value 135639273300000000000000000000000000000000000000000.0 ; + qudt:valueSN 1.356392733E50 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-hertz relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kghz#mid"^^xsd:anyURI . + +constant:Value_KilogramInverseMeterRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 23000000000000000000000000000000000.0 ; + qudt:standardUncertaintySN 2.3E34 ; + qudt:value 452443915000000000000000000000000000000000.0 ; + qudt:valueSN 4.52443915E41 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-inverse meter relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgminv#mid"^^xsd:anyURI . + +constant:Value_KilogramJouleRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 89875517870000000.0 ; + qudt:valueSN 8.987551787E16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-joule relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgj#mid"^^xsd:anyURI . + +constant:Value_KilogramKelvinRelationship + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 11000000000000000000000000000000000.0 ; + qudt:standardUncertaintySN 1.1E34 ; + qudt:value 6509651000000000000000000000000000000000.0 ; + qudt:valueSN 6.509651E39 ; + rdfs:isDefinedBy ; + rdfs:label "Value for kilogram-kelvin relationship" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgk#mid"^^xsd:anyURI . + +constant:Value_LatticeParameterOfSilicon + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000014 ; + qudt:standardUncertaintySN 1.4E-17 ; + qudt:value 0.000000000543102064 ; + qudt:valueSN 5.43102064E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for lattice parameter of silicon" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?asil#mid"^^xsd:anyURI . + +constant:Value_LatticeSpacingOfSilicon + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000005 ; + qudt:standardUncertaintySN 5.0E-18 ; + qudt:value 0.0000000001920155762 ; + qudt:valueSN 1.920155762E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for lattice spacing of silicon" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?d220sil#mid"^^xsd:anyURI . + +constant:Value_LoschmidtConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M3 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 47000000000000000000.0 ; + qudt:standardUncertaintySN 4.7E19 ; + qudt:value 26867774000000000000000000.0 ; + qudt:valueSN 2.6867774E25 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Loschmidt constant 273.15 K 101.325 kPa" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?n0#mid"^^xsd:anyURI . + +constant:Value_MagneticConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:FARAD-PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.0000012566370614 ; + qudt:valueSN 1.2566370614E-6 ; + rdfs:isDefinedBy ; + rdfs:label "Value for magnetic constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mu0#mid"^^xsd:anyURI . + +constant:Value_MagneticFluxQuantum + a qudt:ConstantValue ; + qudt:hasUnit unit:WB ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000052 ; + qudt:standardUncertaintySN 5.2E-23 ; + qudt:value 0.000000000000002067833667 ; + qudt:valueSN 2.067833667E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for magnetic flux quantum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?flxquhs2e#mid"^^xsd:anyURI . + +constant:Value_MoXUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-20 ; + qudt:value 0.000000000000100209955 ; + qudt:valueSN 1.00209955E-13 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Mo x unit" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?xumokalph1#mid"^^xsd:anyURI . + +constant:Value_MolarGasConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-MOL-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000015 ; + qudt:standardUncertaintySN 1.5E-5 ; + qudt:value 8.31446261815324 ; + qudt:valueSN 8.31446261815324E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar gas constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?r#mid"^^xsd:anyURI . + +constant:Value_MolarMassConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.001 ; + qudt:valueSN 1.0E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar mass constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mu#mid"^^xsd:anyURI . + +constant:Value_MolarMassOfCarbon12 + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 0.012 ; + qudt:valueSN 1.2E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar mass of carbon-12" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mm12c#mid"^^xsd:anyURI . + +constant:Value_MolarPlanckConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:J-SEC-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000057 ; + qudt:standardUncertaintySN 5.7E-19 ; + qudt:value 0.00000000039903126821 ; + qudt:valueSN 3.9903126821E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar Planck constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?nah#mid"^^xsd:anyURI . + +constant:Value_MolarPlanckConstantTimesC + a qudt:ConstantValue ; + qudt:hasUnit unit:J-M-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000017 ; + qudt:standardUncertaintySN 1.7E-10 ; + qudt:value 0.11962656472 ; + qudt:valueSN 1.1962656472E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar Planck constant times c" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?nahc#mid"^^xsd:anyURI . + +constant:Value_MolarVolumeOfIdealGas + a qudt:ConstantValue ; + qudt:hasUnit unit:M3-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000039 ; + qudt:standardUncertaintySN 3.9E-8 ; + qudt:value 0.022710981 ; + qudt:valueSN 2.2710981E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar volume of ideal gas 273.15 K 101.325 kPa" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mvol#mid"^^xsd:anyURI ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mvolstd#mid"^^xsd:anyURI . + +constant:Value_MolarVolumeOfSilicon + a qudt:ConstantValue ; + qudt:hasUnit unit:M3-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000011 ; + qudt:standardUncertaintySN 1.1E-12 ; + qudt:value 0.0000120588349 ; + qudt:valueSN 1.20588349E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for molar volume of silicon" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mvolsil#mid"^^xsd:anyURI . + +constant:Value_MuonComptonWavelength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000003 ; + qudt:standardUncertaintySN 3.0E-22 ; + qudt:value 0.00000000000001173444104 ; + qudt:valueSN 1.173444104E-14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon Compton wavelength" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mcomwl#mid"^^xsd:anyURI . + +constant:Value_MuonComptonWavelengthOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000047 ; + qudt:standardUncertaintySN 4.7E-23 ; + qudt:value 0.000000000000001867594295 ; + qudt:valueSN 1.867594295E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon Compton wavelength over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mcomwlbar#mid"^^xsd:anyURI . + +constant:Value_MuonElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000052 ; + qudt:standardUncertaintySN 5.2E-6 ; + qudt:value 206.7682823 ; + qudt:valueSN 2.067682823E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusme#mid"^^xsd:anyURI . + +constant:Value_MuonGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000012 ; + qudt:standardUncertaintySN 1.2E-9 ; + qudt:value -2.0023318414 ; + qudt:valueSN -2.0023318414E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gmum#mid"^^xsd:anyURI . + +constant:Value_MuonMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000016 ; + qudt:standardUncertaintySN 1.6E-33 ; + qudt:value -0.0000000000000000000000000449044786 ; + qudt:valueSN -4.49044786E-26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumum#mid"^^xsd:anyURI . + +constant:Value_MuonMagneticMomentAnomaly + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000006 ; + qudt:standardUncertaintySN 6.0E-10 ; + qudt:value 0.00116592069 ; + qudt:valueSN 1.16592069E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon magnetic moment anomaly" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?amu#mid"^^xsd:anyURI . + +constant:Value_MuonMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000012 ; + qudt:standardUncertaintySN 1.2E-10 ; + qudt:value -0.00484197049 ; + qudt:valueSN -4.84197049E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmub#mid"^^xsd:anyURI . + +constant:Value_MuonMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000023 ; + qudt:standardUncertaintySN 2.3E-7 ; + qudt:value -8.89059705 ; + qudt:valueSN -8.89059705E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmun#mid"^^xsd:anyURI . + +constant:Value_MuonMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000011 ; + qudt:standardUncertaintySN 1.1E-35 ; + qudt:value 0.00000000000000000000000000018835313 ; + qudt:valueSN 1.8835313E-28 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmu#mid"^^xsd:anyURI . + +constant:Value_MuonMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000095 ; + qudt:standardUncertaintySN 9.5E-19 ; + qudt:value 0.0000000000169283351 ; + qudt:valueSN 1.69283351E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuc2#mid"^^xsd:anyURI . + +constant:Value_MuonMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000038 ; + qudt:standardUncertaintySN 3.8E-6 ; + qudt:value 105.6583668 ; + qudt:valueSN 1.056583668E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuc2mev#mid"^^xsd:anyURI . + +constant:Value_MuonMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000029 ; + qudt:standardUncertaintySN 2.9E-9 ; + qudt:value 0.1134289256 ; + qudt:valueSN 1.134289256E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Muon Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuu#mid"^^xsd:anyURI . + +constant:Value_MuonMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000029 ; + qudt:standardUncertaintySN 2.9E-12 ; + qudt:value 0.0001134289256 ; + qudt:valueSN 1.134289256E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmmu#mid"^^xsd:anyURI . + +constant:Value_MuonNeutronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000029 ; + qudt:standardUncertaintySN 2.9E-9 ; + qudt:value 0.1124545167 ; + qudt:valueSN 1.124545167E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon-neutron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmn#mid"^^xsd:anyURI . + +constant:Value_MuonProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000085 ; + qudt:standardUncertaintySN 8.5E-8 ; + qudt:value -3.183345137 ; + qudt:valueSN -3.183345137E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon-proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmup#mid"^^xsd:anyURI . + +constant:Value_MuonProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000029 ; + qudt:standardUncertaintySN 2.9E-9 ; + qudt:value 0.1126095261 ; + qudt:valueSN 1.126095261E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmp#mid"^^xsd:anyURI . + +constant:Value_MuonTauMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000097 ; + qudt:standardUncertaintySN 9.7E-6 ; + qudt:value 0.0594592 ; + qudt:valueSN 5.94592E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for muon-tau mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmtau#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfAction + a qudt:ConstantValue ; + qudt:hasUnit unit:J-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-42 ; + qudt:value 0.0000000000000000000000000000000001054571628 ; + qudt:valueSN 1.054571628E-34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of action" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?thbar#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfActionInEVS + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000016 ; + qudt:standardUncertaintySN 1.6E-23 ; + qudt:value 0.000000000000000658211899 ; + qudt:valueSN 6.58211899E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of action in eV s" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?thbarev#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfEnergy + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000041 ; + qudt:standardUncertaintySN 4.1E-21 ; + qudt:value 0.0000000000000818710438 ; + qudt:valueSN 8.18710438E-14 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of energy" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tmec2#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfEnergyInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000013 ; + qudt:standardUncertaintySN 1.3E-8 ; + qudt:value 0.51099891 ; + qudt:valueSN 5.1099891E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of energy in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tmec2mev#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfLength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-22 ; + qudt:value 0.00000000000038615926459 ; + qudt:valueSN 3.8615926459E-13 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of length" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tecomwlbar#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000045 ; + qudt:standardUncertaintySN 4.5E-38 ; + qudt:value 0.000000000000000000000000000000910938215 ; + qudt:valueSN 9.10938215E-31 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tme#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfMomentum + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000014 ; + qudt:standardUncertaintySN 1.4E-29 ; + qudt:value 0.000000000000000000000273092406 ; + qudt:valueSN 2.73092406E-22 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of momentum" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfMomentumInMeVPerC + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV-PER-SpeedOfLight ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000013 ; + qudt:standardUncertaintySN 1.3E-8 ; + qudt:value 0.51099891 ; + qudt:valueSN 5.1099891E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of momentum in MeV c^-1" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mecmevsc#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfTime + a qudt:ConstantValue ; + qudt:hasUnit unit:SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000018 ; + qudt:standardUncertaintySN 1.8E-30 ; + qudt:value 0.000000000000000000001288088657 ; + qudt:valueSN 1.288088657E-21 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of time" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?nut#mid"^^xsd:anyURI . + +constant:Value_NaturalUnitOfVelocity + a qudt:ConstantValue ; + qudt:hasUnit unit:M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 299792458.0 ; + qudt:valueSN 2.99792458E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for natural unit of velocity" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tc#mid"^^xsd:anyURI . + +constant:Value_NeutronComptonWavelength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000002 ; + qudt:standardUncertaintySN 2.0E-24 ; + qudt:value 0.0000000000000013195908951 ; + qudt:valueSN 1.3195908951E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron Compton wavelength" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ncomwl#mid"^^xsd:anyURI . + +constant:Value_NeutronComptonWavelengthOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000031 ; + qudt:standardUncertaintySN 3.1E-25 ; + qudt:value 0.00000000000000021001941382 ; + qudt:valueSN 2.1001941382E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron Compton wavelength over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ncomwlbar#mid"^^xsd:anyURI . + +constant:Value_NeutronElectronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000025 ; + qudt:standardUncertaintySN 2.5E-10 ; + qudt:value 0.00104066882 ; + qudt:valueSN 1.04066882E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-electron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmue#mid"^^xsd:anyURI . + +constant:Value_NeutronElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000011 ; + qudt:standardUncertaintySN 1.1E-6 ; + qudt:value 1838.6836605 ; + qudt:valueSN 1.8386836605E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsme#mid"^^xsd:anyURI . + +constant:Value_NeutronGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000009 ; + qudt:standardUncertaintySN 9.0E-7 ; + qudt:value -3.82608545 ; + qudt:valueSN -3.82608545E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gnn#mid"^^xsd:anyURI . + +constant:Value_NeutronGyromagneticRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 43.0 ; + qudt:standardUncertaintySN 4.3E1 ; + qudt:value 183247185.0 ; + qudt:valueSN 1.83247185E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron gyromagnetic ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gamman#mid"^^xsd:anyURI . + +constant:Value_NeutronGyromagneticRatioOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000069 ; + qudt:standardUncertaintySN 6.9E-6 ; + qudt:value 29.1646954 ; + qudt:valueSN 2.91646954E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron gyromagnetic ratio over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammanbar#mid"^^xsd:anyURI . + +constant:Value_NeutronMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000023 ; + qudt:standardUncertaintySN 2.3E-33 ; + qudt:value -0.0000000000000000000000000096623641 ; + qudt:valueSN -9.6623641E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munn#mid"^^xsd:anyURI . + +constant:Value_NeutronMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000025 ; + qudt:standardUncertaintySN 2.5E-10 ; + qudt:value -0.00104187563 ; + qudt:valueSN -1.04187563E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmub#mid"^^xsd:anyURI . + +constant:Value_NeutronMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000045 ; + qudt:standardUncertaintySN 4.5E-7 ; + qudt:value -1.91304273 ; + qudt:valueSN -1.91304273E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmun#mid"^^xsd:anyURI . + +constant:Value_NeutronMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000084 ; + qudt:standardUncertaintySN 8.4E-35 ; + qudt:value 0.000000000000000000000000001674927211 ; + qudt:valueSN 1.674927211E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mn#mid"^^xsd:anyURI . + +constant:Value_NeutronMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000075 ; + qudt:standardUncertaintySN 7.5E-18 ; + qudt:value 0.0000000001505349505 ; + qudt:valueSN 1.505349505E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnc2#mid"^^xsd:anyURI . + +constant:Value_NeutronMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000023 ; + qudt:standardUncertaintySN 2.3E-5 ; + qudt:value 939.565346 ; + qudt:valueSN 9.39565346E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnc2mev#mid"^^xsd:anyURI . + +constant:Value_NeutronMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000043 ; + qudt:standardUncertaintySN 4.3E-10 ; + qudt:value 1.00866491597 ; + qudt:valueSN 1.00866491597E0 ; + rdfs:isDefinedBy ; + rdfs:label "Neutron Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnu#mid"^^xsd:anyURI . + +constant:Value_NeutronMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000043 ; + qudt:standardUncertaintySN 4.3E-13 ; + qudt:value 0.00100866491597 ; + qudt:valueSN 1.00866491597E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmn#mid"^^xsd:anyURI . + +constant:Value_NeutronMuonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000023 ; + qudt:standardUncertaintySN 2.3E-7 ; + qudt:value 8.89248409 ; + qudt:valueSN 8.89248409E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-muon mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmmu#mid"^^xsd:anyURI . + +constant:Value_NeutronProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000016 ; + qudt:standardUncertaintySN 1.6E-7 ; + qudt:value -0.68497934 ; + qudt:valueSN -6.8497934E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmup#mid"^^xsd:anyURI . + +constant:Value_NeutronProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000046 ; + qudt:standardUncertaintySN 4.6E-10 ; + qudt:value 1.00137841918 ; + qudt:valueSN 1.00137841918E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmp#mid"^^xsd:anyURI . + +constant:Value_NeutronTauMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000086 ; + qudt:standardUncertaintySN 8.6E-5 ; + qudt:value 0.52874 ; + qudt:valueSN 5.2874E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron-tau mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmtau#mid"^^xsd:anyURI . + +constant:Value_NeutronToShieldedProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000016 ; + qudt:standardUncertaintySN 1.6E-7 ; + qudt:value -0.68499694 ; + qudt:valueSN -6.8499694E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for neutron to shielded proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmupp#mid"^^xsd:anyURI . + +constant:Value_NewtonianConstantOfGravitation + a qudt:ConstantValue ; + qudt:hasUnit unit:M3-PER-KiloGM-SEC2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:relativeStandardUncertainty 2.2e-5 ; + qudt:standardUncertainty 0.0000000000000015 ; + qudt:standardUncertaintySN 1.5E-15 ; + qudt:value 0.000000000066743 ; + qudt:valueSN 6.6743E-11 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Newtonian constant of gravitation" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?bg#mid"^^xsd:anyURI . + +constant:Value_NewtonianConstantOfGravitationOverHbarC + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-PlanckMass2 ; + qudt:relativeStandardUncertainty 2.2e-5 ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000000015 ; + qudt:standardUncertaintySN 1.5E-43 ; + qudt:value 0.00000000000000000000000000000000000000670883 ; + qudt:valueSN 6.70883E-39 ; + rdfs:isDefinedBy ; + rdfs:label "Newtonian constant of gravitation over hbar c" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?bgspu#mid"^^xsd:anyURI . + +constant:Value_NuclearMagneton + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000013 ; + qudt:standardUncertaintySN 1.3E-34 ; + qudt:value 0.00000000000000000000000000505078324 ; + qudt:valueSN 5.05078324E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for nuclear magneton" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mun#mid"^^xsd:anyURI . + +constant:Value_NuclearMagnetonInEVPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000045 ; + qudt:standardUncertaintySN 4.5E-17 ; + qudt:value 0.000000031524512326 ; + qudt:valueSN 3.1524512326E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for nuclear magneton in eV per T" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munev#mid"^^xsd:anyURI . + +constant:Value_NuclearMagnetonInInverseMetersPerTesla + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000064 ; + qudt:standardUncertaintySN 6.4E-10 ; + qudt:value 0.02542623616 ; + qudt:valueSN 2.542623616E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for nuclear magneton in inverse meters per tesla" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munshcminv#mid"^^xsd:anyURI . + +constant:Value_NuclearMagnetonInKPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:K-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000064 ; + qudt:standardUncertaintySN 6.4E-10 ; + qudt:value 0.00036582637 ; + qudt:valueSN 3.6582637E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for nuclear magneton in K per T" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munskk#mid"^^xsd:anyURI . + +constant:Value_NuclearMagnetonInMHzPerT + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000019 ; + qudt:standardUncertaintySN 1.9E-7 ; + qudt:value 7.62259384 ; + qudt:valueSN 7.62259384E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for nuclear magneton in MHz per T" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?munshhz#mid"^^xsd:anyURI . + +constant:Value_PermittivityOfVacuum + a qudt:ConstantValue ; + qudt:hasUnit unit:FARAD-PER-M ; + qudt:relativeStandardUncertainty 1.5e-10 ; + qudt:value 0.0000000000068541878128 ; + qudt:valueSN 6.8541878128E-12 ; + rdfs:isDefinedBy ; + rdfs:label "Value for permittivity of vacuum" . + +constant:Value_Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Pi"^^xsd:anyURI ; + qudt:standardUncertainty 0.0 ; + qudt:standardUncertaintySN 0.0E0 ; + qudt:value 3.141592653589793238462643383279502884197 ; + qudt:valueSN 3.141592653589793238462643383279502884197E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Pi" . + +constant:Value_PlanckConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:J-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000000000033 ; + qudt:standardUncertaintySN 3.3E-41 ; + qudt:value 0.000000000000000000000000000000000662606896 ; + qudt:valueSN 6.62606896E-34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?h#mid"^^xsd:anyURI . + +constant:Value_PlanckConstantInEVS + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000001 ; + qudt:standardUncertaintySN 1.0E-22 ; + qudt:value 0.00000000000000413566733 ; + qudt:valueSN 4.13566733E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck constant in eV s" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hev#mid"^^xsd:anyURI . + +constant:Value_PlanckConstantOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:J-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000053 ; + qudt:standardUncertaintySN 5.3E-42 ; + qudt:value 0.0000000000000000000000000000000001054571628 ; + qudt:valueSN 1.054571628E-34 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck constant over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbar#mid"^^xsd:anyURI . + +constant:Value_PlanckConstantOver2PiInEVS + a qudt:ConstantValue ; + qudt:hasUnit unit:EV-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000016 ; + qudt:standardUncertaintySN 1.6E-23 ; + qudt:value 0.000000000000000658211899 ; + qudt:valueSN 6.58211899E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck constant over 2 pi in eV s" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbarev#mid"^^xsd:anyURI . + +constant:Value_PlanckConstantOver2PiTimesCInMeVFm + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV-FemtoM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000049 ; + qudt:standardUncertaintySN 4.9E-6 ; + qudt:value 197.3269631 ; + qudt:valueSN 1.973269631E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck constant over 2 pi times c in MeV fm" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbcmevf#mid"^^xsd:anyURI . + +constant:Value_PlanckLength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000000081 ; + qudt:standardUncertaintySN 8.1E-40 ; + qudt:value 0.00000000000000000000000000000000001616252 ; + qudt:valueSN 1.616252E-35 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck length" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkl#mid"^^xsd:anyURI . + +constant:Value_PlanckMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000011 ; + qudt:standardUncertaintySN 1.1E-12 ; + qudt:value 0.0000000217644 ; + qudt:valueSN 2.17644E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkm#mid"^^xsd:anyURI . + +constant:Value_PlanckMassEnergyEquivalentInGeV + a qudt:ConstantValue ; + qudt:hasUnit unit:GigaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 610000000000000.0 ; + qudt:standardUncertaintySN 6.1E14 ; + qudt:value 12208920000000000000.0 ; + qudt:valueSN 1.220892E19 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck mass energy equivalent in GeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkmc2gev#mid"^^xsd:anyURI . + +constant:Value_PlanckTemperature + a qudt:ConstantValue ; + qudt:hasUnit unit:K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 7100000000000000000000000000.0 ; + qudt:standardUncertaintySN 7.1E27 ; + qudt:value 141678500000000000000000000000000.0 ; + qudt:valueSN 1.416785E32 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck temperature" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?plktmp#mid"^^xsd:anyURI . + +constant:Value_PlanckTime + a qudt:ConstantValue ; + qudt:hasUnit unit:SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000000000000000000027 ; + qudt:standardUncertaintySN 2.7E-48 ; + qudt:value 0.0000000000000000000000000000000000000000000539124 ; + qudt:valueSN 5.39124E-44 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Planck time" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkt#mid"^^xsd:anyURI . + +constant:Value_ProtonChargeToMassQuotient + a qudt:ConstantValue ; + qudt:hasUnit unit:C-PER-KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 2.4 ; + qudt:standardUncertaintySN 2.4E0 ; + qudt:value 95788339.2 ; + qudt:valueSN 9.57883392E7 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton charge to mass quotient" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?esmp#mid"^^xsd:anyURI . + +constant:Value_ProtonComptonWavelength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000019 ; + qudt:standardUncertaintySN 1.9E-24 ; + qudt:value 0.0000000000000013214098446 ; + qudt:valueSN 1.3214098446E-15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton Compton wavelength" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?pcomwl#mid"^^xsd:anyURI . + +constant:Value_ProtonComptonWavelengthOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000003 ; + qudt:standardUncertaintySN 3.0E-25 ; + qudt:value 0.00000000000000021030890861 ; + qudt:valueSN 2.1030890861E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton Compton wavelength over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?pcomwlbar#mid"^^xsd:anyURI . + +constant:Value_ProtonElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000008 ; + qudt:standardUncertaintySN 8.0E-7 ; + qudt:value 1836.15267247 ; + qudt:valueSN 1.83615267247E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsme#mid"^^xsd:anyURI . + +constant:Value_ProtonGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000046 ; + qudt:standardUncertaintySN 4.6E-8 ; + qudt:value 5.585694713 ; + qudt:valueSN 5.585694713E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gp#mid"^^xsd:anyURI . + +constant:Value_ProtonGyromagneticRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 7.0 ; + qudt:standardUncertaintySN 7.0E0 ; + qudt:value 267522209.9 ; + qudt:valueSN 2.675222099E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton gyromagnetic ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammap#mid"^^xsd:anyURI . + +constant:Value_ProtonGyromagneticRatioOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000011 ; + qudt:standardUncertaintySN 1.1E-6 ; + qudt:value 42.5774821 ; + qudt:valueSN 4.25774821E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton gyromagnetic ratio over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammapbar#mid"^^xsd:anyURI . + +constant:Value_ProtonMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000037 ; + qudt:standardUncertaintySN 3.7E-34 ; + qudt:value 0.00000000000000000000000001410606662 ; + qudt:valueSN 1.410606662E-26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mup#mid"^^xsd:anyURI . + +constant:Value_ProtonMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000012 ; + qudt:standardUncertaintySN 1.2E-11 ; + qudt:value 0.001521032209 ; + qudt:valueSN 1.521032209E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmub#mid"^^xsd:anyURI . + +constant:Value_ProtonMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000023 ; + qudt:standardUncertaintySN 2.3E-8 ; + qudt:value 2.792847356 ; + qudt:valueSN 2.792847356E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmun#mid"^^xsd:anyURI . + +constant:Value_ProtonMagneticShieldingCorrection + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000014 ; + qudt:standardUncertaintySN 1.4E-8 ; + qudt:value 0.000025694 ; + qudt:valueSN 2.5694E-5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton magnetic shielding correction" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigmapp#mid"^^xsd:anyURI . + +constant:Value_ProtonMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000083 ; + qudt:standardUncertaintySN 8.3E-35 ; + qudt:value 0.000000000000000000000000001672621637 ; + qudt:valueSN 1.672621637E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mp#mid"^^xsd:anyURI . + +constant:Value_ProtonMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000075 ; + qudt:standardUncertaintySN 7.5E-18 ; + qudt:value 0.0000000001503277359 ; + qudt:valueSN 1.503277359E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpc2#mid"^^xsd:anyURI . + +constant:Value_ProtonMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000023 ; + qudt:standardUncertaintySN 2.3E-5 ; + qudt:value 938.272013 ; + qudt:valueSN 9.38272013E2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpc2mev#mid"^^xsd:anyURI . + +constant:Value_ProtonMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000001 ; + qudt:standardUncertaintySN 1.0E-10 ; + qudt:value 1.00727646677 ; + qudt:valueSN 1.00727646677E0 ; + rdfs:isDefinedBy ; + rdfs:label "Proton Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpu#mid"^^xsd:anyURI . + +constant:Value_ProtonMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000001 ; + qudt:standardUncertaintySN 1.0E-13 ; + qudt:value 0.00100727646677 ; + qudt:valueSN 1.00727646677E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmp#mid"^^xsd:anyURI . + +constant:Value_ProtonMuonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000023 ; + qudt:standardUncertaintySN 2.3E-7 ; + qudt:value 8.88024339 ; + qudt:valueSN 8.88024339E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton-muon mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmmu#mid"^^xsd:anyURI . + +constant:Value_ProtonNeutronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000034 ; + qudt:standardUncertaintySN 3.4E-7 ; + qudt:value -1.45989806 ; + qudt:valueSN -1.45989806E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton-neutron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmunn#mid"^^xsd:anyURI . + +constant:Value_ProtonNeutronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000046 ; + qudt:standardUncertaintySN 4.6E-10 ; + qudt:value 0.99862347824 ; + qudt:valueSN 9.9862347824E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton-neutron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmn#mid"^^xsd:anyURI . + +constant:Value_ProtonRmsChargeRadius + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000069 ; + qudt:standardUncertaintySN 6.9E-18 ; + qudt:value 0.0000000000000008768 ; + qudt:valueSN 8.768E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton rms charge radius" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rp#mid"^^xsd:anyURI . + +constant:Value_ProtonTauMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000086 ; + qudt:standardUncertaintySN 8.6E-5 ; + qudt:value 0.528012 ; + qudt:valueSN 5.28012E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for proton-tau mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmtau#mid"^^xsd:anyURI . + +constant:Value_QuantumOfCirculation + a qudt:ConstantValue ; + qudt:hasUnit unit:M2-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000005 ; + qudt:standardUncertaintySN 5.0E-13 ; + qudt:value 0.00036369475199 ; + qudt:valueSN 3.6369475199E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for quantum of circulation" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?qucirchs2me#mid"^^xsd:anyURI . + +constant:Value_QuantumOfCirculationTimes2 + a qudt:ConstantValue ; + qudt:hasUnit unit:M2-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000001 ; + qudt:standardUncertaintySN 1.0E-12 ; + qudt:value 0.000727389504 ; + qudt:valueSN 7.27389504E-4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for quantum of circulation times 2" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?hsme#mid"^^xsd:anyURI . + +constant:Value_RydbergConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000073 ; + qudt:standardUncertaintySN 7.3E-5 ; + qudt:value 10973731.568527 ; + qudt:valueSN 1.0973731568527E7 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Rydberg constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?ryd#mid"^^xsd:anyURI . + +constant:Value_RydbergConstantTimesCInHz + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 22000.0 ; + qudt:standardUncertaintySN 2.2E4 ; + qudt:value 3289841960361000.0 ; + qudt:valueSN 3.289841960361E15 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Rydberg constant times c in Hz" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydchz#mid"^^xsd:anyURI . + +constant:Value_RydbergConstantTimesHcInEV + a qudt:ConstantValue ; + qudt:hasUnit unit:EV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000034 ; + qudt:standardUncertaintySN 3.4E-7 ; + qudt:value 13.60569193 ; + qudt:valueSN 1.360569193E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Rydberg constant times hc in eV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydhcev#mid"^^xsd:anyURI . + +constant:Value_RydbergConstantTimesHcInJ + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000011 ; + qudt:standardUncertaintySN 1.1E-25 ; + qudt:value 0.00000000000000000217987197 ; + qudt:valueSN 2.17987197E-18 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Rydberg constant times hc in J" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydhcj#mid"^^xsd:anyURI . + +constant:Value_SackurTetrodeConstant1K100KPa + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000044 ; + qudt:standardUncertaintySN 4.4E-6 ; + qudt:value -1.1517047 ; + qudt:valueSN -1.1517047E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Sackur-Tetrode constant 1 K 100 kPa" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?s0sr#mid"^^xsd:anyURI . + +constant:Value_SackurTetrodeConstant1K101dot325KPa + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000044 ; + qudt:standardUncertaintySN 4.4E-6 ; + qudt:value -1.1648677 ; + qudt:valueSN -1.1648677E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Sackur-Tetrode constant 1 K 101.325 kPa" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?s0srstd#mid"^^xsd:anyURI . + +constant:Value_SecondRadiationConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:M-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000025 ; + qudt:standardUncertaintySN 2.5E-8 ; + qudt:value 0.014387752 ; + qudt:valueSN 1.4387752E-2 ; + rdfs:isDefinedBy ; + rdfs:label "Value for second radiation constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?c22ndrc#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionGyromagneticRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 5.6 ; + qudt:standardUncertaintySN 5.6E0 ; + qudt:value 203789473.0 ; + qudt:valueSN 2.03789473E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion gyromagnetic ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammahp#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionGyromagneticRatioOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000009 ; + qudt:standardUncertaintySN 9.0E-7 ; + qudt:value 32.43410198 ; + qudt:valueSN 3.243410198E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion gyromagnetic ratio over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammahpbar#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000000000000000000000000003 ; + qudt:standardUncertaintySN 3.0E-34 ; + qudt:value -0.00000000000000000000000001074552982 ; + qudt:valueSN -1.074552982E-26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhp#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000014 ; + qudt:standardUncertaintySN 1.4E-11 ; + qudt:value -0.001158671471 ; + qudt:valueSN -1.158671471E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmub#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000025 ; + qudt:standardUncertaintySN 2.5E-8 ; + qudt:value -2.127497718 ; + qudt:valueSN -2.127497718E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmun#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionToProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000011 ; + qudt:standardUncertaintySN 1.1E-8 ; + qudt:value -0.761766558 ; + qudt:valueSN -7.61766558E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion to proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmup#mid"^^xsd:anyURI . + +constant:Value_ShieldedHelionToShieldedProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000033 ; + qudt:standardUncertaintySN 3.3E-9 ; + qudt:value -0.7617861313 ; + qudt:valueSN -7.617861313E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded helion to shielded proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmupp#mid"^^xsd:anyURI . + +constant:Value_ShieldedProtonGyromagneticRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:PER-T-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 7.3 ; + qudt:standardUncertaintySN 7.3E0 ; + qudt:value 267515336.2 ; + qudt:valueSN 2.675153362E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded proton gyromagnetic ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammapp#mid"^^xsd:anyURI . + +constant:Value_ShieldedProtonGyromagneticRatioOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaHZ-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000012 ; + qudt:standardUncertaintySN 1.2E-6 ; + qudt:value 42.5763881 ; + qudt:valueSN 4.25763881E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded proton gyromagnetic ratio over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammappbar#mid"^^xsd:anyURI . + +constant:Value_ShieldedProtonMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000038 ; + qudt:standardUncertaintySN 3.8E-34 ; + qudt:value 0.00000000000000000000000001410570419 ; + qudt:valueSN 1.410570419E-26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded proton magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupp#mid"^^xsd:anyURI . + +constant:Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000017 ; + qudt:standardUncertaintySN 1.7E-11 ; + qudt:value 0.001520993128 ; + qudt:valueSN 1.520993128E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded proton magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muppsmub#mid"^^xsd:anyURI . + +constant:Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000003 ; + qudt:standardUncertaintySN 3.0E-8 ; + qudt:value 2.792775598 ; + qudt:valueSN 2.792775598E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for shielded proton magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?muppsmun#mid"^^xsd:anyURI . + +constant:Value_SpeedOfLight + a qudt:ConstantValue ; + qudt:hasUnit unit:M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 299792458.0 ; + qudt:valueSN 2.99792458E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for velocity of light" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI . + +constant:Value_SpeedOfLight_Vacuum + a qudt:ConstantValue ; + qudt:hasUnit unit:M-PER-SEC ; + qudt:informativeReference "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0 ; + qudt:standardUncertaintySN 0.0E0 ; + qudt:value 299792458.0 ; + qudt:valueSN 2.99792458E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for speed of light in a vacuum" . + +constant:Value_SpeedOfLight_Vacuum_Imperial + a qudt:ConstantValue ; + qudt:hasUnit unit:MI-PER-HR ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 670616629.0 ; + qudt:valueSN 6.70616629E8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for speed of light in vacuum (Imperial units)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI . + +constant:Value_StandardAccelerationOfGravity + a qudt:ConstantValue ; + qudt:hasUnit unit:M-PER-SEC2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 9.80665 ; + qudt:valueSN 9.80665E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for standard acceleration of gravity" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gn#mid"^^xsd:anyURI . + +constant:Value_StandardAtmosphere + a qudt:ConstantValue ; + qudt:hasUnit unit:PA ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:value 101325.0 ; + qudt:valueSN 1.01325E5 ; + rdfs:isDefinedBy ; + rdfs:label "Value for standard atmosphere" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?stdatm#mid"^^xsd:anyURI . + +constant:Value_StefanBoltzmannConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:W-PER-M2-K4 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000004 ; + qudt:standardUncertaintySN 4.0E-13 ; + qudt:value 0.000000056704 ; + qudt:valueSN 5.6704E-8 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Stefan-Boltzmann Constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigma#mid"^^xsd:anyURI . + +constant:Value_TauComptonWavelength + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000011 ; + qudt:standardUncertaintySN 1.1E-19 ; + qudt:value 0.00000000000000069772 ; + qudt:valueSN 6.9772E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau Compton wavelength" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tcomwl#mid"^^xsd:anyURI . + +constant:Value_TauComptonWavelengthOver2Pi + a qudt:ConstantValue ; + qudt:hasUnit unit:M ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000018 ; + qudt:standardUncertaintySN 1.8E-20 ; + qudt:value 0.000000000000000111046 ; + qudt:valueSN 1.11046E-16 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau Compton wavelength over 2 pi" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tcomwlbar#mid"^^xsd:anyURI . + +constant:Value_TauElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.57 ; + qudt:standardUncertaintySN 5.7E-1 ; + qudt:value 3477.48 ; + qudt:valueSN 3.47748E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausme#mid"^^xsd:anyURI . + +constant:Value_TauMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000052 ; + qudt:standardUncertaintySN 5.2E-31 ; + qudt:value 0.00000000000000000000000000316777 ; + qudt:valueSN 3.16777E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtau#mid"^^xsd:anyURI . + +constant:Value_TauMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000046 ; + qudt:standardUncertaintySN 4.6E-14 ; + qudt:value 0.000000000284705 ; + qudt:valueSN 2.84705E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauc2#mid"^^xsd:anyURI . + +constant:Value_TauMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.29 ; + qudt:standardUncertaintySN 2.9E-1 ; + qudt:value 1776.99 ; + qudt:valueSN 1.77699E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauc2mev#mid"^^xsd:anyURI . + +constant:Value_TauMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00031 ; + qudt:standardUncertaintySN 3.1E-4 ; + qudt:value 1.90768 ; + qudt:valueSN 1.90768E0 ; + rdfs:isDefinedBy ; + rdfs:label "Tau Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauu#mid"^^xsd:anyURI . + +constant:Value_TauMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000031 ; + qudt:standardUncertaintySN 3.1E-7 ; + qudt:value 0.00190768 ; + qudt:valueSN 1.90768E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmtau#mid"^^xsd:anyURI . + +constant:Value_TauMuonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0027 ; + qudt:standardUncertaintySN 2.7E-3 ; + qudt:value 16.8183 ; + qudt:valueSN 1.68183E1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau-muon mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmmu#mid"^^xsd:anyURI . + +constant:Value_TauNeutronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00031 ; + qudt:standardUncertaintySN 3.1E-4 ; + qudt:value 1.89129 ; + qudt:valueSN 1.89129E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau-neutron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmn#mid"^^xsd:anyURI . + +constant:Value_TauProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00031 ; + qudt:standardUncertaintySN 3.1E-4 ; + qudt:value 1.8939 ; + qudt:valueSN 1.8939E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for tau-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmp#mid"^^xsd:anyURI . + +constant:Value_ThomsonCrossSection + a qudt:ConstantValue ; + qudt:hasUnit unit:M2 ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000000027 ; + qudt:standardUncertaintySN 2.7E-37 ; + qudt:value 0.00000000000000000000000000006652458558 ; + qudt:valueSN 6.652458558E-29 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Thomson cross section" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigmae#mid"^^xsd:anyURI . + +constant:Value_TritonElectronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000021 ; + qudt:standardUncertaintySN 2.1E-11 ; + qudt:value -0.001620514423 ; + qudt:valueSN -1.620514423E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton-electron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmuem#mid"^^xsd:anyURI . + +constant:Value_TritonElectronMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000051 ; + qudt:standardUncertaintySN 5.1E-6 ; + qudt:value 5496.9215269 ; + qudt:valueSN 5.4969215269E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton-electron mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtsme#mid"^^xsd:anyURI . + +constant:Value_TritonGFactor + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000076 ; + qudt:standardUncertaintySN 7.6E-8 ; + qudt:value 5.957924896 ; + qudt:valueSN 5.957924896E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton g factor" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?gtn#mid"^^xsd:anyURI . + +constant:Value_TritonMagneticMoment + a qudt:ConstantValue ; + qudt:hasUnit unit:J-PER-T ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000042 ; + qudt:standardUncertaintySN 4.2E-34 ; + qudt:value 0.00000000000000000000000001504609361 ; + qudt:valueSN 1.504609361E-26 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton magnetic moment" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mut#mid"^^xsd:anyURI . + +constant:Value_TritonMagneticMomentToBohrMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000021 ; + qudt:standardUncertaintySN 2.1E-11 ; + qudt:value 0.001622393657 ; + qudt:valueSN 1.622393657E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton magnetic moment to Bohr magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmub#mid"^^xsd:anyURI . + +constant:Value_TritonMagneticMomentToNuclearMagnetonRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000038 ; + qudt:standardUncertaintySN 3.8E-8 ; + qudt:value 2.978962448 ; + qudt:valueSN 2.978962448E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton magnetic moment to nuclear magneton ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmun#mid"^^xsd:anyURI . + +constant:Value_TritonMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000000000000000000000000000000025 ; + qudt:standardUncertaintySN 2.5E-34 ; + qudt:value 0.00000000000000000000000000500735588 ; + qudt:valueSN 5.00735588E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mt#mid"^^xsd:anyURI . + +constant:Value_TritonMassEnergyEquivalent + a qudt:ConstantValue ; + qudt:hasUnit unit:J ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000022 ; + qudt:standardUncertaintySN 2.2E-17 ; + qudt:value 0.000000000450038703 ; + qudt:valueSN 4.50038703E-10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton mass energy equivalent" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtc2#mid"^^xsd:anyURI . + +constant:Value_TritonMassEnergyEquivalentInMeV + a qudt:ConstantValue ; + qudt:hasUnit unit:MegaEV ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00007 ; + qudt:standardUncertaintySN 7.0E-5 ; + qudt:value 2808.920906 ; + qudt:valueSN 2.808920906E3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton mass energy equivalent in MeV" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtc2mev#mid"^^xsd:anyURI . + +constant:Value_TritonMassInAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:U ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000025 ; + qudt:standardUncertaintySN 2.5E-9 ; + qudt:value 3.0155007134 ; + qudt:valueSN 3.0155007134E0 ; + rdfs:isDefinedBy ; + rdfs:label "Triton Mass (amu)" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtu#mid"^^xsd:anyURI . + +constant:Value_TritonMolarMass + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM-PER-MOL ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000000025 ; + qudt:standardUncertaintySN 2.5E-12 ; + qudt:value 0.0030155007134 ; + qudt:valueSN 3.0155007134E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton molar mass" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmt#mid"^^xsd:anyURI . + +constant:Value_TritonNeutronMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000037 ; + qudt:standardUncertaintySN 3.7E-7 ; + qudt:value -1.55718553 ; + qudt:valueSN -1.55718553E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton-neutron magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmunn#mid"^^xsd:anyURI . + +constant:Value_TritonProtonMagneticMomentRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00000001 ; + qudt:standardUncertaintySN 1.0E-8 ; + qudt:value 1.066639908 ; + qudt:valueSN 1.066639908E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton-proton magnetic moment ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmup#mid"^^xsd:anyURI . + +constant:Value_TritonProtonMassRatio + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000025 ; + qudt:standardUncertaintySN 2.5E-9 ; + qudt:value 2.9937170309 ; + qudt:valueSN 2.9937170309E0 ; + rdfs:isDefinedBy ; + rdfs:label "Value for triton-proton mass ratio" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtsmp#mid"^^xsd:anyURI . + +constant:Value_UnifiedAtomicMassUnit + a qudt:ConstantValue ; + qudt:hasUnit unit:KiloGM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000000000000000000000000000000000083 ; + qudt:standardUncertaintySN 8.3E-35 ; + qudt:value 0.000000000000000000000000001660538782 ; + qudt:valueSN 1.660538782E-27 ; + rdfs:isDefinedBy ; + rdfs:label "Value for unified atomic mass unit" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?tukg#mid"^^xsd:anyURI . + +constant:Value_VonKlitzingConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:OHM ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.000018 ; + qudt:standardUncertaintySN 1.8E-5 ; + qudt:value 25812.807557 ; + qudt:valueSN 2.5812807557E4 ; + rdfs:isDefinedBy ; + rdfs:label "Value for von Klitzing constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?rk#mid"^^xsd:anyURI . + +constant:Value_WeakMixingAngle + a qudt:ConstantValue ; + qudt:hasUnit unit:UNITLESS ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.00056 ; + qudt:standardUncertaintySN 5.6E-4 ; + qudt:value 0.22255 ; + qudt:valueSN 2.2255E-1 ; + rdfs:isDefinedBy ; + rdfs:label "Value for weak mixing angle" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?sin2th#mid"^^xsd:anyURI . + +constant:Value_WienFrequencyDisplacementLawConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:HZ-PER-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 100000.0 ; + qudt:standardUncertaintySN 1.0E5 ; + qudt:value 58789330000.0 ; + qudt:valueSN 5.878933E10 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Wien frequency displacement law constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?bpwien#mid"^^xsd:anyURI . + +constant:Value_WienWavelengthDisplacementLawConstant + a qudt:ConstantValue ; + qudt:hasUnit unit:M-K ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:standardUncertainty 0.0000000051 ; + qudt:standardUncertaintySN 5.1E-9 ; + qudt:value 0.0028977685 ; + qudt:valueSN 2.8977685E-3 ; + rdfs:isDefinedBy ; + rdfs:label "Value for Wien wavelength displacement law constant" ; + vaem:website "http://physics.nist.gov/cgi-bin/cuu/Value?bwien#mid"^^xsd:anyURI . + +constant:VonKlitzingConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_VonKlitzingConstant ; + rdfs:isDefinedBy ; + rdfs:label "Von Klitzing constant"@en ; + skos:closeMatch . + +constant:WeakMixingAngle + a qudt:PhysicalConstant ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Weinberg_angle"^^xsd:anyURI ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_WeakMixingAngle ; + rdfs:isDefinedBy ; + rdfs:label "Weak mixing angle"@en . + +constant:WienFrequencyDisplacementLawConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:InverseTimeTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_WienFrequencyDisplacementLawConstant ; + rdfs:isDefinedBy ; + rdfs:label "Wien frequency displacement law constant"@en ; + skos:closeMatch . + +constant:WienWavelengthDisplacementLawConstant + a qudt:PhysicalConstant ; + qudt:hasQuantityKind quantitykind:LengthTemperature ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:quantityValue constant:Value_WienWavelengthDisplacementLawConstant ; + rdfs:isDefinedBy ; + rdfs:label "Wien wavelength displacement law constant"@en ; + skos:closeMatch . + +vaem:GMD_QUDT-CONSTANTS + a vaem:GraphMetaData ; + dcterms:contributor "Irene Polikoff" ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Ralph Hodgson" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2010-02-05"^^xsd:date ; + dcterms:creator "James E. Masters" ; + dcterms:creator "Steve Ray" ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Constants" ; + dcterms:title "QUDT Constants Version 3.1Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "Physical Constant Vocabulary Version 3.1.0 Metadata" ; + vaem:description "The Constants vocabulary defines terms for and contains the values and standard uncertainties of physical constants, initially populated from the NIST website: The NIST Reference on Constants, Units, and Uncertainty, at http://physics.nist.gov/cuu/index.html" ; + vaem:graphName "qudt" ; + vaem:graphTitle "QUDT Constants Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT.org ; + vaem:hasSteward vaem:QUDT.org ; + vaem:intent "Provides a vocabulary of Constants for both human and machine use" ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-CONSTANTS.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/vocab/constant/"^^xsd:anyURI ; + vaem:namespacePrefix "constant" ; + vaem:owner "QUDT.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-CONSTANTS.html"^^xsd:anyURI ; + vaem:specificity 1 ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/constant"^^xsd:anyURI ; + vaem:urlForHTML "http://qudt.org/3.1.0/vocab/constant.html"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:title ; + vaem:website "http://qudt.org/3.1.0/vocab/constant.ttl"^^xsd:anyURI . + + diff --git a/libraries/qudt/VOCAB_QUDT-DATATYPES.ttl b/libraries/qudt/VOCAB_QUDT-DATATYPES.ttl new file mode 100644 index 000000000..d39ea9a17 --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-DATATYPES.ttl @@ -0,0 +1,1910 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix dtype: . +@prefix prov: . +@prefix qudt: . +@prefix sh: . +@prefix skos: . +@prefix vaem: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + rdfs:label "QUDT Vocabulary of Datatypes v3.1.0" ; + vaem:hasGraphMetadata ; + vaem:hasGraphRole vaem:VocabularyGraph . + +dcterms:contributor + a owl:AnnotationProperty ; + rdfs:label "contributor" ; + rdfs:range xsd:string . + +dcterms:creator + a owl:AnnotationProperty ; + rdfs:label "creator" ; + rdfs:range xsd:string . + +dcterms:description + a owl:AnnotationProperty ; + rdfs:label "description" ; + rdfs:range xsd:string . + +dcterms:rights + a owl:AnnotationProperty ; + rdfs:label "rights" ; + rdfs:range xsd:string . + +dcterms:subject + a owl:AnnotationProperty ; + rdfs:label "subject" ; + rdfs:range xsd:string . + +dcterms:title + a owl:AnnotationProperty ; + rdfs:label "title" ; + rdfs:range xsd:string . + + + a vaem:GraphMetaData ; + dcterms:description "The QUDT 'Datatype' vocabulary is a specification of scalar and structured data types. Scalar data types are defined for all the commonly encountered forms of numbers, characters and booleans, with their representations in a number of vendor and industry specific technologies. Structured data types cover arrays, lists, trees and many other forms of composite data elements. Specification of coordinate systems is also covered."^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:subject "Datatypes" ; + rdfs:label "QUDT Vocabulary for Datatypes - Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:isMetadataFor ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:name "QUDT" ; + vaem:namespace "http://qudt.org/schema/qudt/" ; + vaem:namespacePrefix "qudt" ; + vaem:owner "QUDT.ORG" ; + vaem:title "QUDT Vocabulary for Datatypes - Version 3.1.0" ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource ; + vaem:withAttributionTo . + +qudt:ALPHANUMERIC + a qudt:CharacterType ; + dtype:code 106 ; + dtype:literal "alphanumeric" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:id "T001-00" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "ALPHANUMERIC" . + +qudt:BOOLEAN + a qudt:BooleanType ; + dcterms:description """ +

In computer science, the Boolean or logical data type is a data type, + having two values (usually denoted true and false), intended to represent the truth values of logic and Boolean algebra. + The Boolean data type is the primary result of conditional statements, + which allow different actions and change control flow depending on whether a programmer-specified boolean condition evaluates to true or false. +

+ """^^rdf:HTML ; + dtype:code 1 ; + dtype:literal "boolean" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://en.wikipedia.org/wiki/Boolean%5Fdata%5Ftype"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx"^^xsd:anyURI ; + qudt:ansiSQLName "BOOLEAN" ; + qudt:encoding qudt:BooleanEncoding ; + qudt:id "T000-01" ; + qudt:javaName "boolean" ; + qudt:jsName "Boolean()" ; + qudt:microsoftSQLServerName "bit" ; + qudt:mySQLName "BOOL" ; + qudt:mySQLName "BOOLEAN" ; + qudt:mySQLName "TINYINT(1)" ; + qudt:odbcName "SQL_BIT" ; + qudt:oleDBName "DBTYPE_BOOL" ; + qudt:oracleSQLName "RAW(1)" ; + qudt:protocolBuffersName "bool" ; + qudt:pythonName "bool" ; + qudt:rdfsDatatype xsd:boolean ; + rdfs:isDefinedBy ; + rdfs:label "BOOLEAN" . + +qudt:BYTE + a qudt:SignedShortIntegerType ; + dcterms:description """ +

The byte data type is an 8-bit signed two's complement integer. + It has a minimum value of -128 and a maximum value of 127 (inclusive). + The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters. + They can also be used in place of int where their limits help to clarify your code; the fact that a variable's range is limited can serve as a form of documentation. +

+ """^^rdf:HTML ; + dtype:code "800" ; + dtype:literal "byte" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI ; + qudt:abbreviation "SI8" ; + qudt:bytes 1 ; + qudt:cName "Byte" ; + qudt:encoding qudt:OctetEncoding ; + qudt:id "T002-01" ; + qudt:maxInclusive 127 ; + qudt:minInclusive -128 ; + qudt:rdfsDatatype xsd:byte ; + qudt:signedness qudt:SIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Byte" . + +qudt:BigEndian + a qudt:EndianType ; + dcterms:description "A big-endian machine stores the most significant byte first."^^rdf:HTML ; + dtype:code 1 ; + dtype:literal "big" ; + rdfs:isDefinedBy ; + rdfs:label "Big Endian" . + +qudt:BitAligned + a qudt:AlignmentType ; + dcterms:description "Alignment at a bit level."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Bit aligned" . + +qudt:BitEncoding + a qudt:BitEncodingType ; + qudt:bits 1 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Encoding" . + +qudt:BitField01 + a rdfs:Datatype ; + dtype:literal "B1" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf1" ; + qudt:bits 1 ; + qudt:id "T010-01" ; + qudt:mySQLName "BIT(1)" ; + qudt:rdfsDatatype qudt:BitField01 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 1 bit" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField02 + a rdfs:Datatype ; + dtype:code 182 ; + dtype:literal "B2" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf2" ; + qudt:bits 2 ; + qudt:id "T010-02" ; + qudt:mySQLName "BIT(2)" ; + qudt:rdfsDatatype qudt:BitField02 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 2 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField03 + a rdfs:Datatype ; + dtype:code 183 ; + dtype:literal "B3" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf3" ; + qudt:bits 3 ; + qudt:id "T010-03" ; + qudt:mySQLName "BIT(3)" ; + qudt:rdfsDatatype qudt:BitField03 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 3 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField04 + a rdfs:Datatype ; + dtype:code 184 ; + dtype:literal "B4" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf4" ; + qudt:bits 4 ; + qudt:id "T010-04" ; + qudt:mySQLName "BIT(4)" ; + qudt:rdfsDatatype qudt:BitField04 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 4 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField05 + a rdfs:Datatype ; + dtype:code 185 ; + dtype:literal "B5" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf5" ; + qudt:bits 5 ; + qudt:id "T010-05" ; + qudt:mySQLName "BIT(5)" ; + qudt:rdfsDatatype qudt:BitField05 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 5 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField06 + a rdfs:Datatype ; + dtype:code 186 ; + dtype:literal "B6" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf6" ; + qudt:bits 6 ; + qudt:id "T010-06" ; + qudt:mySQLName "BIT(6)" ; + qudt:rdfsDatatype qudt:BitField06 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 6 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField07 + a rdfs:Datatype ; + dtype:code 187 ; + dtype:literal "B7" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf7" ; + qudt:bits 7 ; + qudt:id "T010-07" ; + qudt:mySQLName "BIT(7)" ; + qudt:rdfsDatatype qudt:BitField07 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 7 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField08 + a rdfs:Datatype ; + dtype:code 188 ; + dtype:literal "B8" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf8" ; + qudt:bits 8 ; + qudt:id "T010-08" ; + qudt:mySQLName "BIT(8)" ; + qudt:rdfsDatatype qudt:BitField08 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 8 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField09 + a rdfs:Datatype ; + dtype:code 189 ; + dtype:literal "B9" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf9" ; + qudt:bits 9 ; + qudt:id "T010-09" ; + qudt:mySQLName "BIT(9)" ; + qudt:rdfsDatatype qudt:BitField09 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 9 bits" ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField10 + a rdfs:Datatype ; + dtype:code 190 ; + dtype:literal "B10" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf10" ; + qudt:bitOrder qudt:BigEndian ; + qudt:bits 10 ; + qudt:byteOrder qudt:BigEndian ; + qudt:id "T010-02" ; + qudt:mySQLName "BIT(10)" ; + qudt:rdfsDatatype qudt:BitField10 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field Of 10 Bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField11 + a rdfs:Datatype ; + dtype:code 191 ; + dtype:literal "B11" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI ; + qudt:abbreviation "bf11" ; + qudt:bits 11 ; + qudt:id "T010-11" ; + qudt:mySQLName "BIT(11)" ; + qudt:rdfsDatatype qudt:BitField11 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field Of 11 Bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BitField12 + a rdfs:Datatype ; + dtype:literal "B12" ; + qudt:abbreviation "bf12" ; + qudt:bits 12 ; + qudt:mySQLName "BIT(12)" ; + qudt:rdfsDatatype qudt:BitField12 ; + rdfs:isDefinedBy ; + rdfs:label "Bit Field of 12 bits" ; + rdfs:subClassOf qudt:BitField ; + rdfs:subClassOf rdfs:Literal . + +qudt:BooleanEncoding + a qudt:BooleanEncodingType ; + rdfs:isDefinedBy ; + rdfs:label "Boolean Encoding" . + +qudt:ByteAligned + a qudt:AlignmentType ; + dcterms:description "Alignment of a field at a byte boundary."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Byte aligned" . + +qudt:CCT_EarthCentered + a qudt:CoordinateCenterType ; + dtype:literal "earthCentered" ; + rdfs:isDefinedBy ; + rdfs:label "Earth-centered Coordinate System Type" . + +qudt:CCT_MarsCentered + a qudt:CoordinateCenterType ; + dtype:literal "marsCentered" ; + rdfs:isDefinedBy ; + rdfs:label "Mars-centered Coordinate System Type" . + +qudt:CCT_MoonCentered + a qudt:CoordinateCenterType ; + dtype:literal "moonCentered" ; + rdfs:isDefinedBy ; + rdfs:label "Moon-centered Coordinate System Type" . + +qudt:CCT_SunCentered + a qudt:CoordinateCenterType ; + dtype:literal "sunCentered" ; + rdfs:isDefinedBy ; + rdfs:label "Sun-centered Coordinate System Type" . + +qudt:CCT_VehicleCentered + a qudt:CoordinateCenterType ; + dtype:literal "vehicleCentered" ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle-centered Coordinate System Type" . + +qudt:CDF + a qudt:MultiDimensionalDataFormat ; + dcterms:description "CDF (Common Data format), a data format for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner, making interoperability between applications and tools easier. CDF provides device independent view of the CDF data model by software programming interface insulting developers from actual physical file format. CDF was developed by NASA, and is described at http://cdf.gsfc.nasa.gov/."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Common Data Format (CDF)" . + +qudt:CFN_ConcatenateMatrixRows + a qudt:CompositionFunction ; + rdfs:isDefinedBy ; + rdfs:label "Concatenate Matrix Rows" . + +qudt:CHAR + a qudt:CharacterType ; + dtype:literal "char" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:encoding qudt:CharEncoding ; + qudt:id "T001-01" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "CHAR" . + +qudt:COLOR_AMBER + a qudt:ColorCue ; + dtype:literal "amber" ; + qudt:rgbCode "#FFBF00" ; + rdfs:isDefinedBy ; + rdfs:label "Amber Color" . + +qudt:COLOR_GREEN + a qudt:ColorCue ; + dtype:literal "green" ; + qudt:rgbCode "#008000" ; + rdfs:isDefinedBy ; + rdfs:label "Green color" . + +qudt:COLOR_ORANGE + a qudt:ColorCue ; + dtype:literal "orange" ; + qudt:rgbCode "#FFA500" ; + rdfs:isDefinedBy ; + rdfs:label "Orange color" . + +qudt:COLOR_RED + a qudt:ColorCue ; + dtype:literal "red" ; + qudt:rgbCode "#FF0000" ; + rdfs:isDefinedBy ; + rdfs:label "Red color" . + +qudt:COLOR_YELLOW + a qudt:ColorCue ; + dtype:literal "yellow" ; + qudt:rgbCode "#FFFF00" ; + rdfs:isDefinedBy ; + rdfs:label "Yellow color" . + +qudt:CharEncoding + a qudt:BooleanEncodingType, qudt:CharEncodingType ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "Char Encoding" . + +qudt:DATE + a qudt:DateStringType ; + dcterms:description """ +

Provides the date expressed in year, month and day. + Expressed as "YYYY:MM:DD", where YYYY is a 4 digit year, MM is a 2 digit month and DD is a 2 digit day. +

+ """^^rdf:HTML ; + dtype:code 255 ; + dtype:literal "date" ; + qudt:dimensionality 1 ; + qudt:id "T004-01" ; + qudt:rdfsDatatype xsd:date ; + rdfs:isDefinedBy ; + rdfs:label "Date" . + +qudt:DATETIME + a qudt:DateStringType ; + dcterms:description "A time stamp encoded as a string 'YYYY-MM-DDThh:mm:ss[.dd]' or 'YYYY-DDDThh:mm:ss[.dd]', where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant, 'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. As many 'd' characters to the right of the period as required may be used to obtain the required precision. All fields require leading zeros."^^rdf:HTML ; + dtype:literal "datetime" ; + qudt:dimensionality 1 ; + qudt:exactMatch qudt:UTC-DATETIME ; + qudt:rdfsDatatype xsd:dateTime ; + rdfs:isDefinedBy ; + rdfs:label "Date Time" . + +qudt:DECIMAL + a qudt:NumericType ; + dtype:code 101 ; + dtype:literal "numeric" ; + qudt:ansiSQLName "DECIMAL(p,s)" ; + qudt:odbcName "SQL_DECIMAL(p,s)" ; + qudt:oracleSQLName "NUMBER(p,s)" ; + qudt:rdfsDatatype xsd:decimal ; + rdfs:isDefinedBy ; + rdfs:label "Decimal" . + +qudt:DIGIT + a qudt:CharacterType ; + dtype:literal "digit" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:id "T001-02" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "DIGIT" . + +qudt:DoublePrecisionEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 64 ; + rdfs:isDefinedBy ; + rdfs:label "Double Precision Encoding" . + +qudt:ECS_EC-EMEPM + a qudt:EarthCoordinateSystem ; + dtype:code 10 ; + dtype:literal "EC-EMEP" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-03" ; + qudt:referenceFrame qudt:RRF_EMEPM ; + rdfs:isDefinedBy ; + rdfs:label "Earth centered earth mean equator and prime meridian coordinate system" ; + skos:definition "Earth Centered Earth Mean Equator And Prime Meridian Coordinate System" ; + vaem:acronym "EC-EMEP" . + +qudt:ECS_EC-ETEPME + a qudt:EarthCoordinateSystem ; + dtype:code 12 ; + dtype:literal "EC-ETEP" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-04" ; + qudt:referenceFrame qudt:NRIF_ETEPME ; + rdfs:isDefinedBy ; + rdfs:label "Earth centered earth true equator and prime meridian of epoch coordinate system" ; + skos:definition "Earth Centered Earth True Equator And Prime Meridian Of Epoch Coordinate System" . + +qudt:ECS_EC-ICRF + a qudt:EarthCoordinateSystem ; + dtype:code 14 ; + dtype:literal "EC-IC" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-01" ; + qudt:referenceFrame qudt:NRIF_ICRF ; + rdfs:isDefinedBy ; + rdfs:label "Earth centered international celestial reference system" ; + skos:definition "Earth Centered International Celestial Reference System" . + +qudt:ECS_EC-ITRF + a qudt:EarthCoordinateSystem ; + dtype:code 16 ; + dtype:literal "EC-IT" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-02" ; + qudt:referenceFrame qudt:RRF_ITRF ; + rdfs:isDefinedBy ; + rdfs:label "Earth centered international terrestrial reference system" ; + skos:definition "Earth Centered International Terrestrial Reference System" . + +qudt:ECS_SC-ICRF + a qudt:EarthCoordinateSystem ; + dtype:code 90 ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-05" ; + qudt:referenceFrame qudt:NRIF_ICRF ; + rdfs:isDefinedBy ; + rdfs:label "Sun-Centered international celestial reference system" ; + skos:definition "Sun Centered International Celestial Reference System" . + +qudt:ECS_VC-ICRF + a qudt:EarthCoordinateSystem ; + dtype:code 100 ; + dtype:literal "VC-IC" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TECS-06" ; + qudt:referenceFrame qudt:NRIF_ICRF ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle centered international celestial reference system" ; + skos:definition "Vehicle Centered International Celestial Reference System" . + +qudt:FALSE + a qudt:BooleanTypeEnumeratedValue ; + dtype:literal "false" ; + rdfs:isDefinedBy ; + rdfs:label "False" . + +qudt:FLAG + a qudt:BooleanType ; + dtype:code 2 ; + dtype:literal "flag" ; + qudt:id "T000-02" ; + qudt:rdfsDatatype xsd:boolean ; + rdfs:isDefinedBy ; + rdfs:label "FLAG" . + +qudt:FLOAT-DP + a qudt:RealDoublePrecisionType ; + dcterms:description """ +

A double precision floating point datatype. + Numbers of this type are stored using 64 bits, they require more memory than numbers of type single, which use 32 bits. + However, because they are stored with more bits, numbers of type double are represented to more precision than numbers of type single. + The double-precision (or double) data type is represented according to IEEE Standard 754 for double precision. + A value is formatted with bit-fields for sign, mantissa and exponent. +

+ """^^rdf:HTML ; + dtype:code 405 ; + dtype:literal "double" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + qudt:abbreviation "F64" ; + qudt:ansiSQLName "DOUPLE PRECISION" ; + qudt:base 2 ; + qudt:bits 64 ; + qudt:bytes 8 ; + qudt:encoding qudt:DoublePrecisionEncoding ; + qudt:exactMatch qudt:FLOAT_IEEE754-BINARY64 ; + qudt:id "T006-03" ; + qudt:javaName "double" ; + qudt:jsName "double" ; + qudt:matlabName "double" ; + qudt:maxExclusive "(1-2^{-53}) \\times 2^{1024}" ; + qudt:maxExponent 1023 ; + qudt:maxMantissa 9007199254740991 ; + qudt:microsoftSQLServerName "float" ; + qudt:minExclusive "-(1-2^{-53}) \\times 2^{1024}" ; + qudt:minMantissa -9007199254740991 ; + qudt:mySQLName "DOUBLE" ; + qudt:odbcName "SQL_DOUBLE" ; + qudt:oleDBName "DBTYPE_R8" ; + qudt:oracleSQLName "FLOAT(49)" ; + qudt:rdfsDatatype xsd:double ; + rdfs:isDefinedBy ; + rdfs:label "Double Precision Real" . + +qudt:FLOAT-SP + a qudt:RealSinglePrecisionType ; + dcterms:description """ +

+ A single precision real is a 32 bit signed floating point representation. + Numbers of type single are stored using 32 bits, they require less memory than numbers of type double, which use 64 bits. + However, because they are stored with fewer bits, numbers of type single are represented to less precision than numbers of type double. +

+ """^^rdf:HTML ; + dtype:literal "single" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + qudt:ansiSQLName "FLOAT" ; + qudt:bits 32 ; + qudt:bytes 4 ; + qudt:cName "float" ; + qudt:encoding qudt:SinglePrecisionRealEncoding ; + qudt:id "T006-01" ; + qudt:javaName "float" ; + qudt:jsName "float" ; + qudt:matlabName "single" ; + qudt:maxExclusive "$(2-2^{-23}) \\times 2^127$" ; + qudt:maxExponent 23 ; + qudt:microsoftSQLServerName "real" ; + qudt:minExclusive "-(2-2^{-23}) \\times 2^{127}" ; + qudt:mySQLName "FLOAT" ; + qudt:odbcName "SQL_FLOAT" ; + qudt:oleDBName "DBTYPE_R4" ; + qudt:oracleSQLName "FLOAT(23)" ; + qudt:rdfsDatatype xsd:float ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Real" . + +qudt:FLOAT_IEEE754-BINARY64 + a qudt:RealDoublePrecisionType ; + dcterms:description """ +

The IEEE-754 floating point datatype is a technical standard established in 1985 by the Institute of Electrical and Electronics Engineers (IEEE). + Many hardware floating point units use the IEEE 754 standard. +

"""^^rdf:HTML ; + prov:wasInfluencedBy ; + qudt:base 2 ; + qudt:bits 64 ; + qudt:exactMatch qudt:FLOAT-DP ; + qudt:id "T006-05" ; + qudt:maxExponent 970 ; + qudt:maxMantissa 9007199254740991 ; + qudt:minMantissa -9007199254740991 ; + qudt:rdfsDatatype xsd:double ; + rdfs:isDefinedBy ; + rdfs:label "IEEE754 BINARY64" . + +qudt:FT_INERTIAL + a qudt:FrameType ; + dtype:literal "inertial" ; + rdfs:isDefinedBy ; + rdfs:label "Inertial Frame Type" . + +qudt:FT_NON-ROTATING + a qudt:FrameType ; + dtype:literal "nonrotating" ; + rdfs:isDefinedBy ; + rdfs:label "Non-rotating Frame Type" . + +qudt:FT_ROTATING + a qudt:FrameType ; + dtype:literal "rotating" ; + rdfs:isDefinedBy ; + rdfs:label "Rotating Frame Type" . + +qudt:GlobalPositionVector-DP + a qudt:StateSpaceVector ; + dtype:code 360 ; + qudt:datatype qudt:FLOAT-DP ; + qudt:dimensionality 1 ; + qudt:dimensions ( 3 ) ; + rdfs:isDefinedBy ; + rdfs:label "Global Position Vector - double precision" . + +qudt:HDF5 + a qudt:MultiDimensionalDataFormat ; + dcterms:description """ +

The Hierarchical Data Format (HDF) is a common data format and a collection of application programming libraries developed at the NSCA primarily for the scientific community and for the exchange of scientific datasets. + A commonly-used version of HDF is HDF5 which offers a simple data model and application interfaces for encoding and exchanging data without the added burden of defining mappings to the underlying machine representations. +

+ """^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "HDF5" . + +qudt:HDF6 + a qudt:MultiDimensionalDataFormat ; + dcterms:description "A \"Hierarchical Data Format\"." ; + rdfs:isDefinedBy ; + rdfs:label "HDF6" . + +qudt:HEXBINARY + a qudt:HexBinaryType ; + dtype:code 803 ; + dtype:literal "hexbinary" ; + qudt:dimensionality 1 ; + qudt:rdfsDatatype qudt:hexbinary ; + rdfs:isDefinedBy ; + rdfs:label "HEXBINARY" . + +qudt:HighToLow + a qudt:MemoryOrderType ; + dtype:literal "high_to_low" ; + rdfs:isDefinedBy ; + rdfs:label "High to Low" . + +qudt:IEEE754_1985RealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "IEEE 754 1985 Real Encoding" . + +qudt:IERS-TN-32-2004 + a qudt:Citation ; + dcterms:description """ +

IERS Conventions (2003), D. D. McCarthy and Gérard Petit (eds.), IERS Technical Note No. 32, 2004; + http://www.iers.org/iers/publications/tn/tn32. +

"""^^rdf:HTML ; + qudt:url "http://www.iers.org/iers/publications/tn/tn32."^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "IERS-TN-32-2004" . + +qudt:INTEGER + a qudt:SignedIntegerType ; + dcterms:description """ +

An Integer is an XML Schema Definition (XSD) datatype that represents arbitrary-precision whole numbers + (positive, negative, or zero) without fractional or decimal components. + It is derived from xsd:decimal by restricting values to integers only.. +

"""^^rdf:HTML ; + dtype:code 104 ; + dtype:literal "SI" ; + qudt:abbreviation "SI" ; + qudt:ansiSQLName "INT" ; + qudt:bits 16 ; + qudt:bytes 2 ; + qudt:encoding qudt:ShortSignedIntegerEncoding ; + qudt:id "T002-03" ; + qudt:javaName "integer" ; + qudt:jsName "integer" ; + qudt:matlabName "int" ; + qudt:microsoftSQLServerName "int" ; + qudt:mySQLName "INT" ; + qudt:rdfsDatatype xsd:integer ; + rdfs:isDefinedBy ; + rdfs:label "Integer" . + +qudt:ISO8601-UTCDateTime-BasicFormat + a qudt:DateTimeStringEncodingType ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}.[0-9]+Z" ; + qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}Z" ; + rdfs:isDefinedBy ; + rdfs:label "ISO 8601 UTC Date Time - Basic Format" . + +qudt:InterpolatedTABLE + a qudt:InterpolatedTable ; + rdfs:isDefinedBy ; + rdfs:label "Interpolated table" . + +qudt:Konopliv2001 + a qudt:Citation ; + dcterms:description """ +

"Recent Gravity Models as a Result of the Lunar Prospector Mission", A. S. Konopliv, S. W. Asmar, E. Carranza, W. L. Sjogren, + and D. N. Yuan, Academic Press, Icarus 150, 1-18 (2001). +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Konopliv2001" . + +qudt:LCS_LC-LMEBF + a qudt:LunarCoordinateSystem ; + dtype:code 40 ; + dtype:literal "LMEBF" ; + qudt:coordinateCenter qudt:CCT_MoonCentered ; + qudt:id "TLCS-01" ; + qudt:referenceFrame qudt:RRF_LMEBF ; + rdfs:isDefinedBy ; + rdfs:label "Lunar mean earth body fixed Coordinate System" ; + skos:definition "Lunar Mean Earth Body Fixed Coordinate System" . + +qudt:LCS_LC-LPABF + a qudt:LunarCoordinateSystem ; + dcterms:description "Lunar body-fixed coordinate frame aligned with the principal axes of the Moon."^^rdf:HTML ; + dtype:code 42 ; + dtype:literal "LPABF" ; + qudt:coordinateCenter qudt:CCT_MoonCentered ; + qudt:id "TLCS-02" ; + qudt:realization "This is a fixed rotation from LMEBF" ; + qudt:referenceFrame qudt:RRF_LPABF ; + rdfs:isDefinedBy ; + rdfs:label "Lunar principal axis body fixed Coordinate System" ; + skos:definition "Lunar Principal Axis Body Fixed Coordinate System" . + +qudt:LCS_LC-LPAE + a qudt:LunarCoordinateSystem ; + dtype:code 42 ; + dtype:literal "LPABF" ; + qudt:coordinateCenter qudt:CCT_MoonCentered ; + qudt:id "TLCS-03" ; + qudt:referenceFrame qudt:NRIF_LPAE ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Principal Axis of Epoch Coordinate System" . + +qudt:LETTER + a qudt:CharacterType ; + dtype:literal "letter" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:id "T001-03" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "LETTER" . + +qudt:LittleEndian + a qudt:EndianType ; + dcterms:description "A little-endian machine stores the least significant byte first."^^rdf:HTML ; + dtype:code 2 ; + dtype:literal "little" ; + rdfs:isDefinedBy ; + rdfs:label "Little Endian" . + +qudt:LongUnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 8 ; + rdfs:isDefinedBy ; + rdfs:label "Long Unsigned Integer Encoding" . + +qudt:LowToHigh + a qudt:MemoryOrderType ; + dtype:literal "low_to_high" ; + rdfs:isDefinedBy ; + rdfs:label "Low to High" . + +qudt:MCS_MC-MMEIAUE + a qudt:MarsCoordinateSystem ; + dtype:code 50 ; + dtype:literal "MMEIAUE" ; + qudt:coordinateCenter qudt:CCT_MarsCentered ; + qudt:id "TMCS-01" ; + qudt:referenceFrame qudt:NRIF_MMEIAUE ; + rdfs:isDefinedBy ; + rdfs:label "Mars mean equator and IAU-Node of epoch Coordinate System" ; + skos:definition "Mars Mean Equator And IAU-Node Of Epoch Coordinate System" . + +qudt:MCS_MC-MMEPMBF + a qudt:MarsCoordinateSystem ; + dtype:code 52 ; + dtype:literal "MMEPMBF" ; + qudt:coordinateCenter qudt:CCT_MarsCentered ; + qudt:id "TMCS-02" ; + qudt:referenceFrame qudt:RRF_MMEPMBF ; + rdfs:isDefinedBy ; + rdfs:label "Mars mean equator and prime meridian body-fixed Coordinate System" ; + skos:definition "Mars Mean Equator And Prime Meridian Body-Fixed Coordinate System" . + +qudt:NRIF_ETEPMBF + a qudt:NonRotatingInertialFrame ; + dtype:literal "ETEPMBF" ; + qudt:exactMatch qudt:RRF_ITRF ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-01" ; + qudt:realization "The International Terrestrial Reference Frame (ITRF) is realized by the locations of a set of points or stations on a tide-free Earth. As measurements and models have improved or changed, these locations have been changed also and the ITRF has moved slightly with respect to the physical Earth every few years." ; + qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "The rotation pole of the Earth." ; + rdfs:isDefinedBy ; + rdfs:label "Earth True Equator and Prime Meridian Body Fixed" . + +qudt:NRIF_ETEPME + a qudt:NonRotatingInertialFrame ; + dcterms:description """ + The "Earth's True Equator and Prime Meridian of Epoch" refers to a coordinate system defined by Earth’s equator and prime meridian at a specific moment in time, called the “epoch.” + This system is used as a reference in astronomy, geodesy, and celestial mechanics. + The NASA Deep Space Network uses the Lieske precession model (1976). + """ ; + dtype:literal "ETEPME" ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-02" ; + qudt:informativeReference qudt:IERS-TN-32-2004 ; + qudt:realization "The International Terrestrial Reference Frame as defined for 1993 (ITRF93), as located in the ICRF at the epoch given using a consistent set of precession, nutation, and timing and polar motion models." ; + qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth, in the ICRF and at the epoch given." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "The rotation pole of the Earth, in the ICRF and at the epoch given." ; + rdfs:isDefinedBy ; + rdfs:label "Earth True Equator and Prime Meridian of Epoch" ; + skos:prefLabel "Earth True Equator and Prime Meridian of Epoch" . + +qudt:NRIF_ICRF + a qudt:NonRotatingInertialFrame ; + dcterms:description "The International celestial reference frame (ICRF) is the best-determined and most stable reference frame and is the root frame. Other reference frames are often given with respect to the ICRF."^^rdf:HTML ; + dtype:literal "ICRF" ; + qudt:exactMatch qudt:RRF_ICRF ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-03" ; + qudt:realization "The International Celestial Reference Frame (ICRF) was defined in 1995 with locations given for 22 quasars and other bright radio objects. This definition was extended by the addition of more sources in 2000." ; + qudt:xAxisDefinition "Defined as the cross product of the Z-axis (as defined above) and the Earth mean orbit pole of J2000 (i.e. the ecliptic pole of J2000). The X-axis of this coordinate frame is the Earth vernal equinox of J2000." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Defined as the pole vector of the Earth Mean Equator of J2000 (where J2000 = Julian date 2451545.0 TDB (Barycentric Dynamical Time))." ; + rdfs:isDefinedBy ; + rdfs:label "International celestial reference frame" . + +qudt:NRIF_LPAE + a qudt:NonRotatingInertialFrame ; + dtype:code 44 ; + dtype:literal "LPAE" ; + qudt:abbreviation "LPAE" ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-04" ; + qudt:xAxisDefinition "Points in the direction of the Moon’s prime meridian principal axis of Epoch (minimum moment of inertia)." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Points in the direction of the Moon’s North pole principal axis of Epoch (maximum moment of inertia)." ; + rdfs:comment "Finding the principal axes depends on solving for the dynamics of the Moon’s orientation, which must be done in conjunction with solving for its motion in space, though the Moon’s motion in space can also be solved for independently. The terms “north pole” and “prime meridian” are loosely used for the Z and X axes respectively of both this and the Lunar Mean Earth frames." ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Principal Axis of Epoch" ; + skos:definition "Lunar Principal Axis Of Epoch Coordinate System" ; + skos:prefLabel "Lunar Principal Axis of Epoch" . + +qudt:NRIF_MMEIAUE + a qudt:NonRotatingInertialFrame ; + dtype:code 50 ; + dtype:literal "MMEIAUE" ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-05" ; + qudt:realization "This frame is realized from the ICRF, precessed and rotated Relationships: according to the formulae in IAU2000, [Seidelmann2000]" ; + qudt:xAxisDefinition "Defined as the cross product of the ICRF Z-axis with the Z-axis (as defined above)." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Defined as the pole vector of the Mars Mean Equator of Epoch." ; + rdfs:isDefinedBy ; + rdfs:label "Mars Mean Equator and IAU-Node of Epoch" ; + skos:definition "Mars Mean Equator And IAU-Node Of Epoch Coordinate System" ; + skos:prefLabel "Mars Mean Equator and IAU-Node of Epoch" . + +qudt:NUMERIC + a qudt:NumericType ; + dtype:code 101 ; + dtype:literal "numeric" ; + qudt:ansiSQLName "DECIMAL(p,s)" ; + qudt:odbcName "SQL_DECIMAL(p,s)" ; + qudt:oracleSQLName "NUMBER(p,s)" ; + rdfs:isDefinedBy ; + rdfs:label "Numeric" . + +qudt:NegativeX + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the negative X direction."^^rdf:HTML ; + dtype:code 1 ; + dtype:literal "negativeX" ; + rdfs:isDefinedBy ; + rdfs:label "Negative X" . + +qudt:NegativeY + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the negative Y direction."^^rdf:HTML ; + dtype:code 2 ; + dtype:literal "negativeY" ; + rdfs:isDefinedBy ; + rdfs:label "Negative Y" . + +qudt:NegativeZ + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the negative Z direction."^^rdf:HTML ; + dtype:code 3 ; + dtype:literal "negativeZ" ; + rdfs:isDefinedBy ; + rdfs:label "Negative Z" . + +qudt:NetCDF + a qudt:MultiDimensionalDataFormat ; + dcterms:description """ +

NetCDF (network Common Data Form) is a set of interfaces for array-oriented data access and a freely-distributed collection of data access libraries for C, Fortran, C++, Java, and other languages. + The netCDF libraries support a machine-independent format for representing scientific data. + Together, the interfaces, libraries, and format support the creation, access, and sharing of scientific data. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "NetCDF" . + +qudt:OCTET + a qudt:OctetType ; + dtype:code "800" ; + dtype:literal "octet" ; + qudt:abbreviation "octet" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:cName "Byte" ; + qudt:encoding qudt:OctetEncoding ; + qudt:id "T002-01" ; + qudt:maxInclusive 255 ; + qudt:minInclusive 0 ; + qudt:rdfsDatatype xsd:byte ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Octet" . + +qudt:OOST_OFF + a qudt:OnOffStateType ; + dtype:code "0" ; + dtype:literal "off" ; + rdfs:isDefinedBy ; + rdfs:label "Off" . + +qudt:OOST_ON + a qudt:OnOffStateType ; + dtype:code "0" ; + dtype:literal "on" ; + rdfs:isDefinedBy ; + rdfs:label "On" . + +qudt:OOST_ZERO-MEANS-OFF + a qudt:OnOffStateType ; + dtype:literal "zero-means-off" ; + qudt:inverted true ; + rdfs:isDefinedBy ; + rdfs:label "Zero means off" . + +qudt:OOST_ZERO-MEANS-ON + a qudt:OnOffStateType ; + dtype:literal "zero-means-on" ; + qudt:inverted true ; + rdfs:isDefinedBy ; + rdfs:label "Zero means on" . + +qudt:OctetEncoding + a qudt:BooleanEncodingType, qudt:ByteEncodingType ; + qudt:bytes 1 ; + rdfs:isDefinedBy ; + rdfs:label "OCTET Encoding" . + +qudt:POSITIVE-BIG-INTEGER + a qudt:PositiveBigIntegerType ; + dtype:literal "PI64" ; + qudt:abbreviation "PI64" ; + qudt:bits 64 ; + qudt:bytes 8 ; + qudt:maxInclusive "2^{64}-1" ; + qudt:minInclusive "1" ; + qudt:mySQLName "BIGINT" ; + qudt:rdfsDatatype xsd:unsignedLong ; + qudt:signedness qudt:UNSIGNED ; + rdfs:label "Positive Big Integer" . + +qudt:POSITIVE-LONG-INTEGER + a qudt:PositiveIntegerType ; + dtype:literal "PI32" ; + qudt:abbreviation "UI32" ; + qudt:bits 32 ; + qudt:bytes 4 ; + qudt:encoding qudt:UnsignedIntegerEncoding ; + qudt:maxInclusive "2^{32}-1" ; + qudt:minInclusive "1" ; + qudt:mySQLName "INT" ; + qudt:rdfsDatatype xsd:unsignedInt ; + qudt:signedness qudt:UNSIGNED ; + rdfs:label "Unsigned Long Integer" . + +qudt:PadWithAny + a qudt:PaddingType ; + dcterms:description """ +

Pad with either a one or a zero. + In other words, this is the "don't care" option. +

+ """^^rdf:HTML ; + dtype:literal "none" ; + rdfs:isDefinedBy ; + rdfs:label "Pad with any" . + +qudt:PadWithOnes + a qudt:PaddingType ; + dcterms:description "Pad unused bits of a field with a one."^^rdf:HTML ; + dtype:literal "ones" ; + rdfs:isDefinedBy ; + rdfs:label "Pad with ones" . + +qudt:PadWithZeros + a qudt:PaddingType ; + dcterms:description "Pad unused bits of a field with a zero."^^rdf:HTML ; + dtype:literal "zeros" ; + rdfs:isDefinedBy ; + rdfs:label "Pad with zeros" . + +qudt:Pointer + a qudt:ReferenceDatatype ; + dcterms:description """ + A pointer is a programming language data type whose value refers directly to (or "points to") another value stored elsewhere in the computer memory using its address. + It references a value stored elsewhere in memory, and obtaining or requesting the value to which a pointer refers is called dereferencing the pointer. + A pointer is a simple implementation of the general reference data type. + Pointers to data improve performance for repetitive operations such as traversing string and tree structures. + While "pointer" has been used to refer to references in general, it more properly applies to data structures whose interface explicitly allows the pointer to be manipulated as a memory address. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Pointer" . + +qudt:PositiveX + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the positive X direction."^^rdf:HTML ; + dtype:code 4 ; + dtype:literal "positiveX" ; + rdfs:isDefinedBy ; + rdfs:label "Positive X" . + +qudt:PositiveY + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the positive Y direction."^^rdf:HTML ; + dtype:code 5 ; + dtype:literal "positiveY" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Y" . + +qudt:PositiveZ + a qudt:AxialOrientationType ; + dcterms:description "The axis that is in the positive Z direction."^^rdf:HTML ; + dtype:code 6 ; + dtype:literal "positiveZ" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Z" . + +qudt:QuaternionVector-DP + a qudt:Vector ; + dcterms:description """ +

This vector type is intended to hold the (real-valued) coefficients to a quaternion number. + That is, if $V=[a,b,c,d]$ is a vector of type QUATERNION-VECTOR, + then the proper interpretation of this vector is with respect to the basis elements $1,i,j,k$ of the quaternion algebra. + Specifically, the V corresponds to the quaternion $v = a*1 + b*i + c*j + d*k$. + Note that for most computations, the quaternion basis elements will be replaced with their 4 X 4 dimensional matrix representations, + which are elements of type QuaternionBasisMatrix. + In this case, the resulting quaternion will be a 4 X 4 dimensional matrix of the form: +

+
+ a   b  c  d
+-b   a -d  c
+-c   d  a -b
+-d  -c  b  a
+
+"""^^rdf:HTML ; + dtype:code 340 ; + qudt:datatype qudt:FLOAT-DP ; + qudt:dimensionality 4 ; + qudt:dimensions ( 4 4 4 4 ) ; + rdfs:isDefinedBy ; + rdfs:label "Quaternion Vector - double precision" . + +qudt:RELATIVE-DATETIME + a qudt:DateStringType ; + dcterms:description "Days and time relative to some Epoch"^^rdf:HTML ; + dtype:code 76 ; + dtype:literal "reldate" ; + qudt:dimensionality 1 ; + qudt:id "T004-08" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Date And Time" . + +qudt:RN_BINARY-BASE + a qudt:RealNumberType ; + dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 2, and then the values of m and e are determined given this choice of base." ; + rdfs:isDefinedBy ; + rdfs:label "Real number binary base" . + +qudt:RN_DECIMAL-BASE + a qudt:RealNumberType ; + dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 10, and then the values of m and e are determined given this choice of base." ; + rdfs:isDefinedBy ; + rdfs:label "Real number decminal base" . + +qudt:RRF_EMEPM + a qudt:RotatingReferenceFrame ; + dcterms:description """ + A rotating reference frame is a coordinate system that rotates relative to an inertial (non-accelerating) reference frame. + It is often used in physics, engineering, and mechanics to analyze motion from the perspective of an observer within the rotating frame. + A rotating reference frame is non-inertial because it experiences angular acceleration or constant angular velocity relative to an inertial frame. + This requires the inclusion of fictitious forces (e.g., centrifugal and Coriolis forces) when applying Newton's laws of motion. +\tEarth can be treated as a rotating reference frame to account for the Coriolis effect, which affects weather patterns and ocean currents. +\tAnalysis of systems like rotating machinery, merry-go-rounds, or gyroscopes often involves rotating reference frames. +\tIn astronomy it is used to simplify calculations in celestial mechanics by considering rotating planetary orbits. +\tTo relate observations in the rotating frame to an inertial frame, one must account for the angular velocity vector and apply transformations like: + + $$\\vec{F}{\\text{inertial}} = \\vec{F}{\\text{rotating}} - 2m (\\vec{\\omega} \\times \\vec{v}) - m \\vec{\\omega} \\times (\\vec{\\omega} \\times \\vec{r})$$ + + + where $\\vec{\\omega}$ is the angular velocity, $\\vec{v}$ is velocity in the rotating frame, and $\\vec{r}$ is the position vector. + """^^qudt:LatexString ; + dtype:literal "EMEPM" ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-07" ; + qudt:realization "This frame is realized from the ICRF, precessed and rotated according to the formulae in IAU2000." ; + qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth, in the ICRF and as a function of time." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "The mean rotation pole of the Earth, in the ICRF and as a function of time." ; + rdfs:isDefinedBy ; + rdfs:label "Earth Mean Equator and Prime Meridian" ; + skos:prefLabel "Earth Mean Equator and Prime Meridian" . + +qudt:RRF_EMR + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

In this coordinate frame, the two collinear Lagrange points LL_1 and LL_2 (sometimes called Libration points) both lie along the positive X-axis approximately 60000 kilometers from the Moon. + The LL_1 point lies on the X-axis between the Moon and the Earth and the LL_2 point lies on the X-axis on the other side of the Moon away from the Earth. + See [Roncoli2005] for more information about Lagrange points. +

"""^^rdf:HTML ; + dtype:code 20 ; + dtype:literal "EM-ROT" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-08" ; + qudt:xAxisDefinition "Points in the direction of the vector from the Earth to the Moon." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Points in the direction of the instantaneous orbit normal of the Moon about the Earth." ; + rdfs:isDefinedBy ; + rdfs:label "Earth-Moon Rotating" ; + skos:definition "Earth-Moon Rotating Coordinate System" ; + skos:prefLabel "Earth-Moon Rotating" . + +qudt:RRF_ICRF + a qudt:ReferenceFrame ; + dcterms:description """ + The ICRF is the best-determined and most stable reference frame and is the “root” frame—other reference frames are often given with respect to the ICRF. + The vehicle-centered, EME2000 coordinate system is useful for vehicle attitude determination since the positions of stars in star catalogs used with star trackers, + and other celestial sensors are generally expressed using the EME2000 coordinate frame. + However, caution must be exercised here since the EME2000 frames realized in the past by various star catalogs (such as FK5) and ephemerides (such as DE205) were actually slightly different frames, + because estimates of the actual location EME2000 changed with improvements in models and new data. + For this reason the ICRF is the recommended standard. + """^^rdf:HTML ; + dtype:literal "ICRF" ; + qudt:exactMatch qudt:NRIF_ICRF ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-06" ; + qudt:realization "The International Celestial Reference Frame (ICRF) was defined in 1995 with locations given for 22 quasars and other bright radio objects. This definition was extended by the addition of more sources in 2000. See Reference 8 for further information." ; + qudt:xAxisDefinition "Defined as the cross product of the Z-axis (as defined above) and the Earth mean orbit pole of J2000 (i.e. the ecliptic pole of J2000). The X-axis of this coordinate frame is the Earth vernal equinox of J2000." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Defined as the pole vector of the Earth Mean Equator of J2000 (where J2000 = Julian date 2451545.0 TDB (Barycentric Dynamical Time))." ; + rdfs:isDefinedBy ; + rdfs:label "International Celestial Reference Frame" ; + skos:altLabel "Earth Mean Equator and Equinox of J2000" ; + skos:prefLabel "International Celestial Reference Frame" . + +qudt:RRF_ITRF + a qudt:RotatingReferenceFrame ; + dcterms:description "At current levels of accuracy and precision the location of the ITRF at any point in time with respect to the ICRF cannot be predicted because the Earth (and its weather!) are not modeled that accurately. The location of the true pole depends on modeling precession and nutation and then measuring the actual rotation pole relative to the modeled pole with respect to both the ITRF and the ICRF. One can use either the NASA Deep Space Network’s models and file of pole locations, which also includes timing information to tell where the prime meridian was OR one can use the IERS models and file of pole locations and timing called the Earth Orientation Parameters (EOP) file BUT NOT BOTH, e.g., do not use the IERS EOP with the DSN models for precession and nutation. The IERS information is more publicly available and is recommended. See Reference 8 for more information, including the relationships between the various ITRF frames."^^rdf:HTML ; + dtype:literal "ITRF" ; + qudt:exactMatch qudt:NRIF_ETEPMBF ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-09" ; + qudt:realization "The International Terrestrial Reference Frame (ITRF) is realized by the locations of a set of points or stations on a tide-free Earth. As measurements and models have improved or changed, these locations have been changed also and the ITRF has moved slightly with respect to the physical Earth every few years; ITRF93 is recommended." ; + qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "The rotation pole of the Earth." ; + rdfs:isDefinedBy ; + rdfs:label "International Terrestrial Reference Frame" ; + rdfs:seeAlso qudt:RRF_ICRF ; + skos:prefLabel "International Terrestrial Reference Frame" . + +qudt:RRF_LMEBF + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

Lunar body-fixed coordinate frame aligned with the rotation axis of the Moon. + The location of the LMEBF is a fixed rotation from the LPABF given in [Williams96] as: + “The three rotations (in arcseconds) from Principal (P) to Mean (M) axes are: + M = R_1(-0.15') R_2(-79.12') R_3(-66.48') P." + Historical data and surface maps are given in this frame. +

+ """^^rdf:HTML ; + dtype:code 40 ; + dtype:literal "LMEBF" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-10" ; + qudt:realization "This is realized by the locations of the three Apollo and one Lunar laser ranging retroreflectors" ; + qudt:xAxisDefinition "Points in the direction of the Moon’s historical prime meridian (mean direction toward Earth)." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Points in the direction of the Moon’s North rotation pole (mean rotation axis)." ; + rdfs:comment """ + Reference: “Lunar moments, tides, orientation, and coordinate frames,” J. G. Williams, X. X. Newhall, and J. O. Dickey, Planet. Space Sci. 44:1077-1080, 1996. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Mean Earth Body-Fixed" ; + skos:definition "Lunar Mean Earth Body Fixed Coordinate System" ; + skos:prefLabel "Lunar Mean Earth Body-Fixed" . + +qudt:RRF_LPABF + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

+ Lunar body-fixed coordinate frame aligned with the principal axes of the Moon. + The location of the LPABF in the ICRF should be solved for in conjunction with solving for the Moon’s motion in space. +

+

+ Lunar gravity fields are defined in this frame. + Finding the principal axes depends on solving for the dynamics of the Moon's orientation, + which must be done in conjunction with solving for its motion in space, though the Moon's motion in space can also be solved for independently. + The terms “north pole” and “prime meridian” are loosely used for the Z and X axes respectively of both this and the Lunar Mean Earth frames. +

"""^^rdf:HTML ; + dtype:code 42 ; + dtype:literal "LPABF" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-11" ; + qudt:realization "This is a fixed rotation from LMEBF" ; + qudt:xAxisDefinition "Points in the direction of the Moon's prime meridian principal axis (minimum moment of inertia)." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Points in the direction of the Moon's North pole principal axis (maximum moment of inertia)." ; + rdfs:isDefinedBy ; + rdfs:label "Lunar Principal Axis Body-Fixed" ; + skos:prefLabel "Lunar Principal Axis Body-Fixed" . + +qudt:RRF_LVC + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

+ Since this coordinate system is non-Euclidean, the axes are not defined by vectors but are lines and circles in space through an origin at a vehicle in orbit around a central body. +

"""^^rdf:HTML ; + dtype:literal "LVC" ; + qudt:frameType qudt:FT_NON-ROTATING ; + qudt:id "T110-12" ; + qudt:realization "Defined by the position and velocity vectors associated with a vehicle and thus directly related to the coordinate system in which those vectors are expressed." ; + qudt:xAxisDefinition "Defined as the circle that intersects the vehicle center-of-mass, is centered on the central body center, and lies in the vehicle orbit plane, positive in the direction of motion." ; + qudt:xCoordinateDefinition "Defined as the distance on C between the radial projection of P onto C and the Y-axis; this is taken to be positive if P is on the same side from the Y-Z plane as the vehicle velocity vector points and negative otherwise. Equivalently, if we let θ be the centralbody-centered angle from the vehicle to the projection of P onto the orbit plane (measured positively in a right-handed sense with respect to the vehicle orbit angular momentum), then the xcoordinate of the point is θ (in radians) times the radius of the vehicle. Note that the LVC x-coordinate is arbitrary for P located on N." ; + qudt:yAxisDefinition "Defined as the line that intersects the vehicle center-of-mass and is normal to the vehicle orbit plane, positive opposite the direction of the orbit angular momentum vector (thus completing a right-handed coordinate system)." ; + qudt:yCoordinateDefinition "Defined as the distance from the orbit plane, positive on the side opposite the angular momentum direction." ; + qudt:zAxisDefinition "Defined as the line through the vehicle center-of-mass and the central body center, positive toward the central body center." ; + qudt:zCoordinateDefinition "Defined as the distance from the central body center to the vehicle center-of-mass minus the distance between P and N; equivalently, the radius of C minus the radius of the projection of P onto the vehicle orbit plane." ; + rdfs:isDefinedBy ; + rdfs:label "Local Vertical Curvilinear" ; + skos:prefLabel "Local Vertical Curvilinear" . + +qudt:RRF_LVLH + a qudt:RotatingReferenceFrame ; + dtype:literal "LVLH" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-13" ; + qudt:realization "Defined by the position and velocity vectors associated with a Relationships: vehicle and thus directly related to the coordinate system in which those vectors are expressed." ; + qudt:xAxisDefinition "Defined as the circle that intersects the vehicle center-of-mass, is centered on the central body center, and lies in the vehicle orbit plane, positive in the direction of motion." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame and is positive in the direction of vehicle motion." ; + qudt:zAxisDefinition "Defined as a line that lies along the radius vector from the central body center to the vehicle center-of-mass and is positive toward the central body center." ; + rdfs:isDefinedBy ; + rdfs:label "Local Vertical Local Horizontal" . + +qudt:RRF_MMEPMBF + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

Mars body-fixed coordinate frame with the Mars North pole and prime meridian directions defined by the IAU/IAG [@Seidelmann:2000]. + """^^rdf:HTML ; + dtype:code 52 ; + dtype:literal "MMEPMBF" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-14" ; + rdfs:isDefinedBy ; + rdfs:label "Mars Mean Equator and Prime Meridian Body-Fixed" ; + skos:definition "Mars Mean Equator And Prime Meridian Body-Fixed Coordinate System" ; + skos:prefLabel "Mars Mean Equator and Prime Meridian Body-Fixed" . + +qudt:RRF_SER + a qudt:RotatingReferenceFrame ; + dcterms:description """ +

In this coordinate frame, the two collinear Lagrange points EL_1 and EL_2 (sometimes called Libration points) both lie along the positive X-axis approximately 1.5 million kilometers from the Earth. + The EL_1 point lies on the X-axis between the Earth and the Sun and the EL_2 point lies on the X-axis on the other side of the Earth away from the Sun. + See [Roncoli2005] for more information about Lagrange points. +

"""^^rdf:HTML ; + dtype:code 92 ; + dtype:literal "SE-ROT" ; + qudt:frameType qudt:FT_ROTATING ; + qudt:id "T110-15" ; + qudt:informativeReference qudt:Roncoli2005 ; + qudt:xAxisDefinition "Points in the direction of the vector from the Sun to the Earth." ; + qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame." ; + qudt:zAxisDefinition "Points in the direction of the instantaneous orbit normal of the Earth about the Sun." ; + rdfs:isDefinedBy ; + rdfs:label "Sun-Earth Rotating" . + +qudt:Roncoli2005 + a qudt:Citation ; + dcterms:description "\"Lunar Constants and Models Document”, R. Roncoli, JPL D-32296, September 23, 2005, http://ssd.jpl.nasa.gov/?lunar_doc."^^rdf:HTML ; + qudt:url "http://ssd.jpl.nasa.gov/?lunar_doc"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Roncoli2005" ; + skos:prefLabel "Roncoli2005" . + +qudt:SIGNED-BIG-INTEGER + a qudt:SignedBigIntegerType ; + dcterms:description """ +

The Signed Big Integer, (long in Java) data type is a 64-bit signed two's complement integer. + It has a minimum value of -9,223,372,036,854,775,808 and a maximum value of 9,223,372,036,854,775,807 (inclusive). + Use this data type when you need a range of values wider than those provided by int. +

"""^^rdf:HTML ; + dtype:code 109 ; + dtype:literal "SI64" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://docs.python.org/2/library/stdtypes.html"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://www.mathworks.com/help/matlab/ref/int16.html"^^xsd:anyURI ; + qudt:abbreviation "SI64" ; + qudt:bits 64 ; + qudt:bytes 8 ; + qudt:encoding qudt:LongUnsignedIntegerEncoding ; + qudt:id "T002-02" ; + qudt:javaName "long" ; + qudt:matlabName "int64" ; + qudt:maxInclusive "2^{63}-1" ; + qudt:minInclusive "-2^{63}" ; + qudt:mySQLName "BIGINT" ; + qudt:protocolBuffersName "int64" ; + qudt:rdfsDatatype xsd:long ; + qudt:signedness qudt:SIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Signed Big Integer" . + +qudt:SIGNED-INTEGER + a qudt:SignedIntegerType ; + dcterms:description """ +

A Signed Integer or 'short' data type is a 16-bit signed two's complement integer. + It has a minimum value of -32,768 and a maximum (inclusive) value of 32,767. + As with byte, the same guidelines apply: you can use a short to save memory in large arrays, + in situations where the memory savings actually matters. +

"""^^rdf:HTML ; + dtype:code 105 ; + dtype:literal "SI16" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy ; + qudt:abbreviation "SI16" ; + qudt:ansiSQLName "SMALLINT" ; + qudt:bits 16 ; + qudt:bytes 2 ; + qudt:encoding qudt:ShortSignedIntegerEncoding ; + qudt:id "T002-03" ; + qudt:javaName "short" ; + qudt:jsName "short" ; + qudt:matlabName "int16" ; + qudt:maxInclusive "32767" ; + qudt:microsoftSQLServerName "smallint" ; + qudt:minInclusive "-32767" ; + qudt:mySQLName "SMALLINT" ; + qudt:rdfsDatatype xsd:short ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer" . + +qudt:SIGNED-LONG-INTEGER + a qudt:SignedLongIntegerType ; + dcterms:description """ +

A Signed Long Integer is a 32 bit signed integer in 2's complement form. + It has a minimum value of -2,147,483,648 and a maximum value of 2,147,483,647 (inclusive). + For integral values, this data type is generally the default choice unless there is a reason (like the above) to choose something else. + This data type will most likely be large enough for the numbers a program will use. + If a wider range of values is needed use long instead. +

"""^^rdf:HTML ; + dtype:literal "SI32" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://docs.python.org/2/library/stdtypes.html"^^xsd:anyURI ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx"^^xsd:anyURI ; + qudt:abbreviation "SI32" ; + qudt:ansiSQLName "INTEGER" ; + qudt:bits 32 ; + qudt:bytes 4 ; + qudt:cName "int" ; + qudt:id "T002-04" ; + qudt:javaName "int" ; + qudt:jsName "int" ; + qudt:matlabName "int32" ; + qudt:maxInclusive "2^{31}-1" ; + qudt:microsoftSQLServerName "integer" ; + qudt:minInclusive "-2^{31}" ; + qudt:mySQLName "INT" ; + qudt:odbcName "SQL_INTEGER" ; + qudt:oleDBName "DBTYPE_I4" ; + qudt:oracleSQLName "NUMBER(10)" ; + qudt:protocolBuffersName "int32" ; + qudt:rdfsDatatype xsd:int ; + qudt:signedness qudt:SIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Signed Long Integer" . + +qudt:SIGNED-MEDIUM-INTEGER + a qudt:SignedMediumIntegerType ; + prov:wasInfluencedBy ; + qudt:abbreviation "SI24" ; + qudt:bits 24 ; + qudt:bytes 3 ; + qudt:maxInclusive 8388607 ; + qudt:minInclusive -8388608 ; + qudt:mySQLName "MEDIUMINT" ; + rdfs:isDefinedBy ; + rdfs:label "Signed Medium Integer" . + +qudt:SIGNED-SHORT-INTEGER + a qudt:SignedShortIntegerType ; + dcterms:description "Unsigned 8 bit integer."^^rdf:HTML ; + dtype:code 103 ; + dtype:literal "SI8" ; + qudt:abbreviation "SI8" ; + qudt:ansiSQLName "NUMERIC(3,0)" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:encoding qudt:OctetEncoding ; + qudt:id "T002-06" ; + qudt:maxInclusive "127" ; + qudt:microsoftSQLServerName "tinyint" ; + qudt:minInclusive "-127" ; + qudt:mySQLName "TINYINT" ; + qudt:odbcName "SQL_TINYINT" ; + qudt:oleDBName "DBTYPE_I1" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "Signed Short Integer" . + +qudt:STRING + a qudt:StringType ; + dcterms:description """ +

A String is an ordered list of characters. + Typically the characters are UTF-8 characters. + """^^rdf:HTML ; + dtype:literal "string" ; + qudt:dimensionality 1 ; + qudt:memberDatatype qudt:CHAR ; + qudt:protocolBuffersName "string" ; + qudt:rdfsDatatype xsd:string ; + rdfs:label "String" . + +qudt:Seidelmann2000 + a qudt:Citation ; + dcterms:description """ +

“Report of the IAU/IAG Working Group on Cartographic Coordinates and Rotational Elements of the Planets and Satellites: 2000”, + P.K. Seidelmann, V. K. Abalakin, M. Bursa, M. E. Davies, C. DeBergh, J. H. Lieske, J. Oberst, J. L. Simon, E. M. Standish, P. Stooke, and P. C. Thomas, + Celestial Mechanics and Dynamical Astronomy 82: 83-110, 2002 (http://springerlink.metapress.com, + follow the links from “Browse by Online Libraries (subject areas)”, then “Physics and Astronomy”, + then “Celestial Mechanics and Dynamical Astronomy”, then “Volume 82 - Number 1/January 2002”, + then follow the links to download the paper. +

"""^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Seidelmann2000" . + +qudt:ShortSignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Signed Integer Encoding" . + +qudt:ShortUnsignedIntegerEncoding + a qudt:BooleanEncodingType, qudt:IntegerEncodingType ; + qudt:bytes 2 ; + rdfs:isDefinedBy ; + rdfs:label "Short Unsigned Integer Encoding" . + +qudt:SignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Signed Integer Encoding" . + +qudt:SinglePrecisionRealEncoding + a qudt:FloatingPointEncodingType ; + qudt:bytes 32 ; + rdfs:isDefinedBy ; + rdfs:label "Single Precision Real Encoding" . + +qudt:TBRCS_EC-EMR + a qudt:ThreeBodyRotatingCoordinateSystem ; + dtype:code 20 ; + dtype:literal "EM-ROT" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TTBRCS-01" ; + qudt:referenceFrame qudt:RRF_EMR ; + rdfs:isDefinedBy ; + rdfs:label "Earth-Centered Earth-Moon Rotating Coordinate System" . + +qudt:TBRCS_EC-SER + a qudt:ThreeBodyRotatingCoordinateSystem ; + dtype:code 92 ; + dtype:literal "SE-ROT" ; + qudt:coordinateCenter qudt:CCT_EarthCentered ; + qudt:id "TTBRCS-02" ; + qudt:referenceFrame qudt:RRF_SER ; + rdfs:isDefinedBy ; + rdfs:label "Earth-Centered Sun Earth Rotating Coordinate System" ; + skos:definition "Earth-Centered Sun Earth Rotating Coordinate System" . + +qudt:TBRCS_MC-EMR + a qudt:ThreeBodyRotatingCoordinateSystem ; + dtype:code 20 ; + dtype:literal "EM-ROT" ; + qudt:coordinateCenter qudt:CCT_MoonCentered ; + qudt:id "TTBRCS-03" ; + qudt:referenceFrame qudt:RRF_EMR ; + rdfs:isDefinedBy ; + rdfs:label "Moon-Centered Earth-Moon Rotating Coordinate System" . + +qudt:TBRCS_SC-SER + a qudt:ThreeBodyRotatingCoordinateSystem ; + dtype:code 92 ; + dtype:literal "SE-ROT" ; + qudt:coordinateCenter qudt:CCT_SunCentered ; + qudt:id "TTBRCS-04" ; + qudt:referenceFrame qudt:RRF_SER ; + rdfs:isDefinedBy ; + rdfs:label "Sun-Centered Sun Earth Rotating Coordinate System" ; + skos:definition "Sun-Centered Sun Earth Rotating Coordinate System" . + +qudt:TIME + a qudt:TimeStringType ; + dcterms:description "Time in hh:mm:ss[Z|(+|-)hh:mm]format." ; + dtype:code 68 ; + dtype:literal "time" ; + qudt:dimensionality 1 ; + qudt:id "T004-12" ; + qudt:rdfsDatatype xsd:time ; + rdfs:isDefinedBy ; + rdfs:label "TIME" . + +qudt:TRUE + a qudt:BooleanTypeEnumeratedValue ; + dtype:literal "true" ; + rdfs:isDefinedBy ; + rdfs:label "True" . + +qudt:TYPE-MATRIX-4by4-FLOATDP + a qudt:TypeList ; + rdfs:isDefinedBy ; + rdfs:label "TYPE-MATRIX-4by4-FLOATDP" . + +qudt:UNARY-FUNCTION + a qudt:FunctionDatatype ; + dcterms:description "This type identifies functions that have exactly one argument."^^rdf:HTML ; + qudt:functionArity 1 ; + rdfs:isDefinedBy ; + rdfs:label "UNARY-FUNCTION" . + +qudt:UNSIGNED-BIG-INTEGER + a qudt:UnsignedBigIntegerType ; + dtype:code 117 ; + dtype:literal "UI64" ; + qudt:abbreviation "UI64" ; + qudt:bits 64 ; + qudt:bytes 8 ; + qudt:id "T002-08" ; + qudt:maxInclusive "2^{64}-1" ; + qudt:minInclusive "0" ; + qudt:mySQLName "BIGINT" ; + qudt:rdfsDatatype xsd:unsignedLong ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Big Integer" . + +qudt:UNSIGNED-INTEGER + a qudt:UnsignedIntegerType ; + dcterms:description "An unsigned 16-bit integer in the range 0 to 65,535"^^rdf:HTML ; + dtype:code 113 ; + dtype:literal "UI16" ; + qudt:abbreviation "UI16" ; + qudt:bits 16 ; + qudt:id "T002-09" ; + qudt:maxInclusive "65535" ; + qudt:microsoftSQLServerName "smallint" ; + qudt:minInclusive "0" ; + qudt:mySQLName "SMALLINT" ; + qudt:rdfsDatatype xsd:unsignedShort ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer" . + +qudt:UNSIGNED-LONG-INTEGER + a qudt:UnsignedLongIntegerType ; + dtype:code 115 ; + dtype:literal "UI32" ; + qudt:abbreviation "UI32" ; + qudt:bits 32 ; + qudt:bytes 4 ; + qudt:encoding qudt:UnsignedIntegerEncoding ; + qudt:id "T002-10" ; + qudt:maxInclusive "2^{32}-1" ; + qudt:minInclusive "0" ; + qudt:mySQLName "INT" ; + qudt:rdfsDatatype xsd:unsignedInt ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Long Integer" . + +qudt:UNSIGNED-MEDIUM-INTEGER + a qudt:UnsignedMediumIntegerType ; + prov:wasInfluencedBy ; + qudt:abbreviation "UI24" ; + qudt:bits 24 ; + qudt:bytes 3 ; + qudt:maxInclusive 8388607 ; + qudt:minInclusive -8388608 ; + qudt:mySQLName "MEDIUMINT" ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Medium Integer" . + +qudt:UNSIGNED-SHORT-INTEGER + a qudt:OctetType ; + dtype:code 111 ; + dtype:literal "UI8" ; + prov:wasInfluencedBy ; + prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx"^^xsd:anyURI ; + qudt:abbreviation "UI8" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:id "T002-13" ; + qudt:maxInclusive 255 ; + qudt:microsoftSQLServerName "tinyint" ; + qudt:minInclusive 0 ; + qudt:oleDBName "DBTYPE_UI1" ; + qudt:rdfsDatatype xsd:unsignedByte ; + qudt:signedness qudt:UNSIGNED ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Short Integer" . + +qudt:UTC-DATETIME + a qudt:DateStringType ; + dcterms:description """ +

UTC is the time-scale maintained by the BIPM, with assistance from the IERS, which forms the basis of a coordinated dissemination of standard frequencies and time signals. + It corresponds exactly in rate with the international reference scale of atomic time (TAI) but differs from it by an integer number of seconds. + TAI, based on the second (SI), as realized on the rotating geoid, is formed by the BIPM on the basis of clock data supplied by cooperating establishments. + It is in the form of a continuous scale, e.g. in days, hours, minutes and seconds from the origin 1 January, 1958 (adopted by the CGPM 1971). +

+

UTC date times are expressed as "YYYY-MM-DDThh:mm:ss[.dd]"" or "YYYY-DDDThh:mm:ss[.dd]"", + where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant, + 'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. + As many 'd' characters to the right of the period as required may be used to obtain the required precision. All fields require leading zeros." + """^^rdf:HTML ; + dtype:code 78 ; + dtype:literal "utc-date" ; + qudt:dimensionality 1 ; + qudt:exactMatch qudt:DATETIME ; + qudt:id "T004-13" ; + qudt:rdfsDatatype xsd:dateTime ; + rdfs:isDefinedBy ; + rdfs:label "UTC Date Time" . + +qudt:UTC-DAYTIME + a qudt:DateStringType ; + dcterms:description """ +

+ UTC day time is expressed as "YYYY-DDDThh:mm:ss.ddZ", where each character is an ASCII character using one octet with the following meanings: + YYYY = Year in four-character subfield with values 0001-9999, + DDD = Day of year in three-character subfield with values 001-365 or -366, + T = Calendar-Time separator, + hh = Hour in two-character subfield with values 00-23, + mm = Minute in two-character subfield with values 00-59, + ss = Second in two-character subfield with values 00-59 (-58 or -60 during leap seconds), + dd = Decimal fraction of second in one- to n-character subfield, each d has values 0-9, and Z = time code terminator (optional)" +

+ """^^rdf:HTML ; + dtype:code 79 ; + dtype:literal "utc-dayTime" ; + qudt:dimensionality 1 ; + qudt:id "T004-14" ; + qudt:rdfsDatatype qudt:UTC-DayTime ; + rdfs:isDefinedBy ; + rdfs:label "UTC DAY TIME" . + +qudt:UTC-DayTime + a rdfs:Datatype ; + dcterms:description "YYYY-DDDThh:mm:ss.ddZ, where each character is an ASCII character using one octet with the following meanings: YYYY = Year in four-character subfield with values 0001-9999, DDD = Day of year in three-character subfield with values 001-365 or -366, T = Calendar-Time separator, hh = Hour in two-character subfield with values 00-23, mm = Minute in two-character subfield with values 00-59, ss = Second in two-character subfield with values 00-59 (-58 or -60 during leap seconds), dd = Decimal fraction of second in one- to n-character subfield, each d has values 0-9, and Z = time code terminator (optional)" ; + rdfs:comment "[0-9]{4}\\\\-[0-9]{3}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\\\.[0-9]{2}Z?" ; + rdfs:isDefinedBy ; + rdfs:label "UTC Day time" ; + rdfs:subClassOf xsd:string . + +qudt:UTF16-CHAR + a qudt:CharacterType ; + dtype:code 150 ; + dtype:literal "utf16" ; + qudt:bits 16 ; + qudt:bytes 2 ; + qudt:id "T001-04" ; + qudt:rdfsDatatype xsd:short ; + rdfs:isDefinedBy ; + rdfs:label "UTF16 CHAR" . + +qudt:UTF16-STRING + a qudt:StringUTF16 ; + dtype:literal "utf16" ; + qudt:dimensionality 1 ; + qudt:encoding qudt:UTF16-StringEncoding ; + qudt:memberDatatype qudt:UTF16-CHAR ; + qudt:rdfsDatatype xsd:string ; + rdfs:isDefinedBy ; + rdfs:label "UTF16 String" . + +qudt:UTF16-StringEncoding + a qudt:StringEncodingType ; + rdfs:isDefinedBy ; + rdfs:label "UTF-16 String" . + +qudt:UTF8-CHAR + a qudt:CharacterType ; + dtype:code 122 ; + dtype:literal "utf8" ; + qudt:bits 8 ; + qudt:bytes 1 ; + qudt:id "T001-05" ; + qudt:rdfsDatatype xsd:byte ; + rdfs:isDefinedBy ; + rdfs:label "UTF8 CHAR" . + +qudt:UTF8-STRING + a qudt:StringUTF8 ; + dcterms:description "String consisting of UTF-8 characters"^^rdf:HTML ; + dtype:literal "utf8" ; + qudt:dimensionality 1 ; + qudt:encoding qudt:UTF8-StringEncoding ; + qudt:memberDatatype qudt:UTF8-CHAR ; + qudt:rdfsDatatype xsd:string ; + rdfs:isDefinedBy ; + rdfs:label "UTF8 String" . + +qudt:UTF8-StringEncoding + a qudt:StringEncodingType ; + rdfs:isDefinedBy ; + rdfs:label "UTF-8 Encoding" . + +qudt:Unsigned + a qudt:SignednessType ; + dtype:literal "unsigned" ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned" . + +qudt:UnsignedIntegerEncoding + a qudt:IntegerEncodingType ; + qudt:bytes 4 ; + rdfs:isDefinedBy ; + rdfs:label "Unsigned Integer Encoding" . + +qudt:VCS_VC-LVC + a qudt:LocalCoordinateSystem, qudt:VehicleCoordinateSystem ; + dtype:code 30 ; + dtype:literal "VC-LVC" ; + qudt:coordinateCenter qudt:CCT_VehicleCentered ; + qudt:id "TVCS-01" ; + qudt:referenceFrame qudt:RRF_LVC ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle centered local vertical curvilinear coordinate system" . + +qudt:VCS_VC-LVLH + a qudt:LocalCoordinateSystem, qudt:VehicleCoordinateSystem ; + dtype:code 32 ; + dtype:literal "LVLH" ; + qudt:coordinateCenter qudt:CCT_VehicleCentered ; + qudt:id "TVCS-02" ; + rdfs:isDefinedBy ; + rdfs:label "Local vertical local horizontal coordinate system" ; + skos:definition "Local Vertical Local Horizontal Coordinate System" . + +qudt:WordAligned + a qudt:AlignmentType ; + dcterms:description "Alignment of a field at a word boundary, that is 2 bytes."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Word aligned" . + +qudt:YDT + a qudt:DateStringType ; + dtype:code 215 ; + dtype:literal "YDT" ; + qudt:dimensionality 1 ; + qudt:id "T004-16" ; + qudt:rdfsDatatype xsd:string ; + rdfs:isDefinedBy ; + rdfs:label "Year Day Time" . + +qudt:integer1to12 + a rdfs:Datatype, sh:NodeShape ; + rdfs:isDefinedBy ; + rdfs:label "integer 1..12" ; + rdfs:subClassOf xsd:int ; + sh:datatype xsd:int ; + sh:maxInclusive 12 ; + sh:minInclusive 1 . + +qudt:integer1to31 + a rdfs:Datatype ; + rdfs:isDefinedBy ; + rdfs:label "integer 1..31" ; + rdfs:subClassOf xsd:int ; + sh:datatype xsd:int ; + sh:maxInclusive 31 ; + sh:minInclusive 1 . + + diff --git a/libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl b/libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl new file mode 100644 index 000000000..a2b13cf0b --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl @@ -0,0 +1,4049 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dc: . +@prefix dcterms: . +@prefix qkdv: . +@prefix quantitykind: . +@prefix qudt: . +@prefix skos: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT VOCAB Dimension Vectors Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-DIMENSION-VECTORS . + +qkdv:A-1E0L-3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L-3I0M0H0T0D0" . + +qkdv:A-1E0L0I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseAmountOfSubstance ; + qudt:latexDefinition "$N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L0I0M0H0T0D0" . + +qkdv:A-1E0L0I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarMass ; + qudt:latexDefinition "$M N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L0I0M1H0T0D0" . + +qkdv:A-1E0L2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L2I0M0H0T0D0" . + +qkdv:A-1E0L2I0M1H-1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarHeatCapacity ; + qudt:latexDefinition "$L^2 M T^-2 Θ^-1 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L2I0M1H-1T-2D0" . + +qkdv:A-1E0L2I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarAngularMomentum ; + qudt:latexDefinition "$L^2 M T^-1 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L2I0M1H0T-1D0" . + +qkdv:A-1E0L2I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarEnergy ; + qudt:latexDefinition "$L^2 M T^-2 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L2I0M1H0T-2D0" . + +qkdv:A-1E0L3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SecondOrderReactionRateConstant ; + qudt:latexDefinition "$L^3 N^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L3I0M0H0T-1D0" . + +qkdv:A-1E0L3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarVolume ; + qudt:latexDefinition "$L^3 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L3I0M0H0T0D0" . + +qkdv:A-1E0L3I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LengthMolarEnergy ; + qudt:latexDefinition "$L^3 M T^-2 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E0L3I0M1H0T-2D0" . + +qkdv:A-1E1L-3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A-1E1L-3I0M0H0T0D0" . + +qkdv:A-1E1L0I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ; + qudt:latexDefinition "$T I N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E1L0I0M0H0T1D0" . + +qkdv:A-1E2L0I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance -1 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$N^-1 E^2 M^-1 T^3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A-1E2L0I0M-1H0T3D0" . + +qkdv:A0E-1L-1I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-1 L^-1 M^1 T^-4 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L-1I0M1H0T-4D0" . + +qkdv:A0E-1L-2I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-1 L^-2 M^1 Θ^-1 T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L-2I0M1H-1T-3D0" . + +qkdv:A0E-1L-5I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength -5 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-1 L^-5 M^1 T^-4 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L-5I0M1H0T-4D0" . + +qkdv:A0E-1L0I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassPerElectricCharge ; + qudt:latexDefinition "$M T^-1 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L0I0M1H0T-1D0" . + +qkdv:A0E-1L0I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticFluxDensity ; + qudt:latexDefinition "$M T^-2 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L0I0M1H0T-2D0" . + +qkdv:A0E-1L0I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyPerAreaElectricCharge ; + qudt:latexDefinition "$M T^-3 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L0I0M1H0T-3D0" . + +qkdv:A0E-1L1I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LengthPerElectricCurrent ; + qudt:latexDefinition "$L I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L1I0M0H0T0D0" . + +qkdv:A0E-1L1I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:latexDefinition "$L M T^-2 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L1I0M1H0T-2D0" . + +qkdv:A0E-1L1I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricFieldStrength ; + qudt:latexDefinition "$L M T^-3 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L1I0M1H0T-3D0" . + +qkdv:A0E-1L2I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L2I0M1H-1T-3D0" . + +qkdv:A0E-1L2I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticFlux ; + qudt:latexDefinition "$L^2 M T^-2 I^-1$"^^qudt:LatexString ; + qudt:latexSymbol "$m^2 \\cdot kg \\cdot s^{-2} \\cdot A^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L2I0M1H0T-2D0" . + +qkdv:A0E-1L2I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:latexDefinition "$L^2 M T^-3 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L2I0M1H0T-3D0" . + +qkdv:A0E-1L2I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:PowerPerElectricCharge ; + qudt:latexDefinition "$L^2 M T^-4 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L2I0M1H0T-4D0" . + +qkdv:A0E-1L3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L3I0M0H0T-1D0" . + +qkdv:A0E-1L3I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticDipoleMoment ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L3I0M1H0T-2D0" . + +qkdv:A0E-1L3I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -1 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricFlux ; + qudt:latexDefinition "$L^3 M T^-3 I^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-1L3I0M1H0T-3D0" . + +qkdv:A0E-2L1I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectromagneticPermeability ; + qudt:latexDefinition "$L M T^-2 I^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L1I0M1H0T-2D0" . + +qkdv:A0E-2L1I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-2 L M T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L1I0M1H0T-3D0" . + +qkdv:A0E-2L2I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-2 L^2 M^1 Θ^-1 T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L2I0M1H-1T-3D0" . + +qkdv:A0E-2L2I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Inductance ; + qudt:latexDefinition "$L^2 M T^-2 I^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L2I0M1H0T-2D0" . + +qkdv:A0E-2L2I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Resistance ; + qudt:latexDefinition "$L^2 M T^-3 I^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L2I0M1H0T-3D0" . + +qkdv:A0E-2L3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-2 L^3 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L3I0M0H0T-1D0" . + +qkdv:A0E-2L3I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L3I0M1H0T-3D0" . + +qkdv:A0E-2L3I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InversePermittivity ; + qudt:latexDefinition "$L^3 M T^-4 I^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L3I0M1H0T-4D0" . + +qkdv:A0E-2L4I0M2H-2T-6D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -2 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature -2 ; + qudt:dimensionExponentForTime -6 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E-2L4I0M2H-2T-6D0" . + +qkdv:A0E-9L0I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent -9 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^-9 Θ^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E-9L0I0M0H-1T0D0" . + +qkdv:A0E0L-0dot5I0M0dot5H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "-0.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-0.5 M^0.5 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-0.5I0M0.5H0T-1D0" . + +qkdv:A0E0L-0dot5I0M0dot5H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "-0.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-0.5 M^0.5 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-0.5I0M0.5H0T-2D0" . + +qkdv:A0E0L-0dot5I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector, qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -0.5 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:StressIntensityFactor ; + qudt:latexDefinition "$L^-0.5 M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-0dot5I0M1H0T-2D0" . + +qkdv:A0E0L-1I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$ L^-1 M^-1 T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M-1H0T2D0" . + +qkdv:A0E0L-1I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1 M^-1 T^3 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M-1H0T3D0" . + +qkdv:A0E0L-1I0M-1H1T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ThermalResistivity ; + qudt:latexDefinition "$L^{-1} M^{-1} T^3 \\Theta$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M-1H1T3D0" . + +qkdv:A0E0L-1I0M0H-1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpecificHeatVolume ; + qudt:latexDefinition "$L^-1 T^-2 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H-1T-2D0" . + +qkdv:A0E0L-1I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseLengthTemperature ; + qudt:latexDefinition "$L^-1 Θ^-1$"^^qudt:LatexString ; + qudt:latexSymbol "$L^{-1} \\Theta^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H-1T0D0" . + +qkdv:A0E0L-1I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H0T-1D0" . + +qkdv:A0E0L-1I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Curvature ; + qudt:hasReferenceQuantityKind quantitykind:InverseLength ; + qudt:latexDefinition "$L^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H0T0D0" . + +qkdv:A0E0L-1I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1 T$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H0T1D0" . + +qkdv:A0E0L-1I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^{-1} T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H0T2D0" ; + vaem:todo "Should be M-1L-2T4E2" . + +qkdv:A0E0L-1I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M0H1T0D0" . + +qkdv:A0E0L-1I0M1H-1T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1 M Θ^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H-1T-1D0" . + +qkdv:A0E0L-1I0M1H-1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:latexSymbol "$M / (L \\cdot T^2 H)$"^^qudt:LatexString ; + qudt:latexSymbol "$M / (L \\cdot T^2 \\Theta)$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H-1T-2D0" . + +qkdv:A0E0L-1I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:DynamicViscosity ; + qudt:latexDefinition "$L^-1 M T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H0T-1D0" . + +qkdv:A0E0L-1I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyDensity ; + qudt:hasReferenceQuantityKind quantitykind:ForcePerArea ; + qudt:latexDefinition "$L^-1 M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H0T-2D0" . + +qkdv:A0E0L-1I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ForcePerAreaTime ; + qudt:latexDefinition "$L^-1 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H0T-3D0" . + +qkdv:A0E0L-1I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassPerLength ; + qudt:latexDefinition "$L^-1 M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H0T0D0" . + +qkdv:A0E0L-1I0M1H1T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M1H1T-3D0" . + +qkdv:A0E0L-1I0M2H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1I0M2H0T-2D0" . + +qkdv:A0E0L-1dot5I0M0dot5H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "-1.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1.5 M^0.5 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1.5I0M0.5H0T-1D0" . + +qkdv:A0E0L-1dot5I0M0dot5H0T0D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "-1.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1.5 M^0.5$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-1.5I0M0.5H0T0D0" ; + vaem:todo "Suspicious. Electric Charge per Area would be ET/L**2" . + +qkdv:A0E0L-2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseEnergy ; + qudt:latexDefinition "$L^-2 M^-1 T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M-1H0T2D0" . + +qkdv:A0E0L-2I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T3D0" . + +qkdv:A0E0L-2I0M-1H1T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ThermalResistance ; + qudt:latexDefinition "$L^-2 M^-1 T^3 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M-1H1T3D0" . + +qkdv:A0E0L-2I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 T-1 Q$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T-1D0" . + +qkdv:A0E0L-2I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T-2D0" . + +qkdv:A0E0L-2I0M0H0T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T-3D0" . + +qkdv:A0E0L-2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T0D0" . + +qkdv:A0E0L-2I0M0H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T1D0" . + +qkdv:A0E0L-2I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^{-2} T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M0H0T2D0" ; + vaem:todo "Permeability should be force/current**2, which is ML/T2E2. Permittivity should be T4E2L-3M-1" . + +qkdv:A0E0L-2I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 M Θ^-1 T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H-1T-3D0" . + +qkdv:A0E0L-2I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassPerAreaTime ; + qudt:latexDefinition "$L^{-2} M T^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H0T-1D0" . + +qkdv:A0E0L-2I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpectralRadiantEnergyDensity ; + qudt:latexDefinition "$L^-2 M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H0T-2D0" . + +qkdv:A0E0L-2I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:RadiantIntensity ; + qudt:latexDefinition "$L^-2 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H0T-3D0" . + +qkdv:A0E0L-2I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassPerArea ; + qudt:latexDefinition "$L^-2 M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H0T0D0" . + +qkdv:A0E0L-2I0M1H1T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M1H1T0D0" . + +qkdv:A0E0L-2I0M2H0T-2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 M^2 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M2H0T-2D0" . + +qkdv:A0E0L-2I0M2H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M2H0T-3D0" . + +qkdv:A0E0L-2I0M2H0T-6D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -6 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I0M2H0T-6D0" . + +qkdv:A0E0L-2I1M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$U L^-2 M^-1 T^3 J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I1M-1H0T3D0" . + +qkdv:A0E0L-2I1M-1H0T3D1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 1 ; + qudt:latexDefinition "$U L^-2 M^-1 T^3 J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I1M-1H0T3D1" . + +qkdv:A0E0L-2I1M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Luminance ; + qudt:latexDefinition "$L^-2 J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I1M0H0T0D0" . + +qkdv:A0E0L-2I1M0H0T0D1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 1 ; + qudt:latexDefinition "$U L^-2 J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I1M0H0T0D1" . + +qkdv:A0E0L-2I1M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 J T$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-2I1M0H0T1D0" . + +qkdv:A0E0L-3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-3T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M0H0T-1D0" . + +qkdv:A0E0L-3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M0H0T0D0" . + +qkdv:A0E0L-3I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M0H0T1D0" . + +qkdv:A0E0L-3I0M1H-1T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-3 M Θ^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M1H-1T0D0" . + +qkdv:A0E0L-3I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M1H0T-1D0" . + +qkdv:A0E0L-3I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M1H0T-3D0" . + +qkdv:A0E0L-3I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Density ; + qudt:latexDefinition "$L^-3 M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-3I0M1H0T0D0" . + +qkdv:A0E0L-4I0M-2H0T4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:latexDefinition "$L^-4 M^-2 T^4$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-4I0M-2H0T4D0" . + +qkdv:A0E0L-4I0M0H0T-3D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-4 T^-3 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-4I0M0H0T-3D0" . + +qkdv:A0E0L-4I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-4I0M1H0T-1D0" . + +qkdv:A0E0L-5I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -5 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-5 M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-5I0M-1H0T2D0" . + +qkdv:A0E0L-6I0M1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -6 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-6 M T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L-6I0M1H0T1D0" . + +qkdv:A0E0L0I0M-1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T-1D0" . + +qkdv:A0E0L0I0M-1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T0D0" . + +qkdv:A0E0L0I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T1D0" . + +qkdv:A0E0L0I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T2D0" . + +qkdv:A0E0L0I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H0T3D0" . + +qkdv:A0E0L0I0M-1H1T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ThermalInsulance ; + qudt:latexDefinition "$M^-1 T^3 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-1H1T3D0" . + +qkdv:A0E0L0I0M-2H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M-2H0T0D0" . + +qkdv:A0E0L0I0M0H-1T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseTimeTemperature ; + qudt:latexDefinition "$T^-1 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H-1T-1D0" . + +qkdv:A0E0L0I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy "" ; + rdfs:label "A0E0L0I0M0H-1T0D0" . + +qkdv:A0E0L0I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Frequency ; + qudt:latexDefinition "$T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T-1D0" . + +qkdv:A0E0L0I0M0H0T-1D1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 1 ; + qudt:hasReferenceQuantityKind quantitykind:AngularVelocity ; + qudt:latexDefinition "$U T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T-1D1" . + +qkdv:A0E0L0I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AngularAcceleration ; + qudt:latexDefinition "$U T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T-2D0" . + +qkdv:A0E0L0I0M0H0T-2D1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 1 ; + qudt:hasReferenceQuantityKind quantitykind:AngularAcceleration ; + qudt:latexDefinition "$U T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T-2D1" . + +qkdv:A0E0L0I0M0H0T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T0D0" . + +qkdv:A0E0L0I0M0H0T0D1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 1 ; + qudt:hasReferenceQuantityKind quantitykind:Dimensionless ; + qudt:latexDefinition "$U$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T0D1" . + +qkdv:A0E0L0I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Time ; + qudt:latexDefinition "$T$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T1D0" . + +qkdv:A0E0L0I0M0H0T1D1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 1 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T1D1" . + +qkdv:A0E0L0I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Time_Squared ; + qudt:latexDefinition "$T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H0T2D0" . + +qkdv:A0E0L0I0M0H1T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TemperaturePerTime ; + qudt:latexDefinition "$T^-1 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H1T-1D0" . + +qkdv:A0E0L0I0M0H1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TemperaturePerTime_Squared ; + qudt:latexDefinition "$T^-2 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H1T-2D0" . + +qkdv:A0E0L0I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:latexDefinition "$H$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H1T0D0" . + +qkdv:A0E0L0I0M0H1T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TimeTemperature ; + qudt:latexDefinition "$T Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H1T1D0" . + +qkdv:A0E0L0I0M0H2T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 2 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H2T-1D0" . + +qkdv:A0E0L0I0M0H2T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 2 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M0H2T0D0" . + +qkdv:A0E0L0I0M0H2T0D00 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 2 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TemperatureVariance_NEON ; + rdfs:isDefinedBy ; + rdfs:label "qkdv:A0E0L0I0M0H2T0D0" . + +qkdv:A0E0L0I0M1H-1T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$M^1 Θ^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H-1T-1D0" . + +qkdv:A0E0L0I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:latexDefinition "$M T^-3 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H-1T-3D0" . + +qkdv:A0E0L0I0M1H-1T0D0 + a qudt:QuantityKindDimensionVector, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$M H^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H-1T0D0" . + +qkdv:A0E0L0I0M1H-4T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -4 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:PowerPerAreaQuarticTemperature ; + qudt:latexDefinition "$M T^{-3}.H^{-4}$"^^qudt:LatexString ; + qudt:latexSymbol "$M T^{-3}.\\Theta^{-4}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H-4T-3D0" . + +qkdv:A0E0L0I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassFlowRate ; + qudt:latexDefinition "$M T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T-1D0" . + +qkdv:A0E0L0I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyPerArea ; + qudt:hasReferenceQuantityKind quantitykind:ForcePerLength ; + qudt:latexDefinition "$M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T-2D0" . + +qkdv:A0E0L0I0M1H0T-3D-1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent -1 ; + qudt:latexDefinition "$U^-1 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T-3D-1" . + +qkdv:A0E0L0I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:PowerPerArea ; + qudt:latexDefinition "$M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T-3D0" . + +qkdv:A0E0L0I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T-4D0" . + +qkdv:A0E0L0I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Mass ; + qudt:latexDefinition "$M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T0D0" . + +qkdv:A0E0L0I0M1H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$M T^1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T1D0" . + +qkdv:A0E0L0I0M1H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$M T^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H0T2D0" . + +qkdv:A0E0L0I0M1H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassTemperature ; + qudt:latexDefinition "$M Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M1H1T0D0" . + +qkdv:A0E0L0I0M2H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I0M2H0T-2D0" . + +qkdv:A0E0L0I1M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LuminousIntensity ; + qudt:latexDefinition "$J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I1M0H0T0D0" . + +qkdv:A0E0L0I1M0H0T0D1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 1 ; + qudt:latexDefinition "$U J$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I1M0H0T0D1" . + +qkdv:A0E0L0I1M0H0T1D0 + a qudt:QuantityKindDimensionVector, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 1 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$I T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0I1M0H0T1D0" . + +qkdv:A0E0L0dot5I0M0dot5H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "0.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^0.5 M^0.5 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0.5I0M0.5H0T-1D0" . + +qkdv:A0E0L0dot5I0M0dot5H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "0.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^0.5 M^0.5 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0.5I0M0.5H0T-2D0" . + +qkdv:A0E0L0dot5I0M0dot5H0T0D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "0.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^0.5 M^0.5$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L0.5I0M0.5H0T0D0" ; + vaem:todo "Electric Charge should be ET" . + +qkdv:A0E0L1I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M-1H0T1D0" . + +qkdv:A0E0L1I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InversePressure ; + qudt:latexDefinition "$L T^2 M^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M-1H0T2D0" . + +qkdv:A0E0L1I0M-1H1T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L M^-1 H T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M-1H1T2D0" . + +qkdv:A0E0L1I0M0H-1T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L H^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H-1T-1D0" . + +qkdv:A0E0L1I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LinearThermalExpansion ; + qudt:latexDefinition "$L .H^{-1}$"^^qudt:LatexString ; + qudt:latexSymbol "$L .\\Theta^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H-1T0D0" . + +qkdv:A0E0L1I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LinearVelocity ; + qudt:latexDefinition "$L T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T-1D0" . + +qkdv:A0E0L1I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LinearAcceleration ; + qudt:hasReferenceQuantityKind quantitykind:ThrustToMassRatio ; + qudt:latexDefinition "$L T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T-2D0" . + +qkdv:A0E0L1I0M0H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T-3D0" . + +qkdv:A0E0L1I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Length ; + qudt:latexDefinition "$L$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T0D0" . + +qkdv:A0E0L1I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T1D0" . + +qkdv:A0E0L1I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H0T2D0" . + +qkdv:A0E0L1I0M0H1T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H1T-1D0" . + +qkdv:A0E0L1I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LengthTemperature ; + qudt:latexSymbol "$L \\cdot H$"^^qudt:LatexString ; + qudt:latexSymbol "$L \\cdot \\Theta$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H1T0D0" . + +qkdv:A0E0L1I0M0H1T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M0H1T1D0" . + +qkdv:A0E0L1I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ThermalConductivity ; + qudt:latexSymbol "$L \\cdot M /( T^3 \\cdot \\Theta^1)$"^^qudt:LatexString ; + qudt:latexSymbol "$L.M.T^{-3} .\\Theta^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M1H-1T-3D0" . + +qkdv:A0E0L1I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LinearMomentum ; + qudt:latexDefinition "$L M T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M1H0T-1D0" . + +qkdv:A0E0L1I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Force ; + qudt:latexDefinition "$L M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M1H0T-2D0" . + +qkdv:A0E0L1I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M1H0T-3D0" . + +qkdv:A0E0L1I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LengthMass ; + qudt:latexDefinition "$L M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1I0M1H0T0D0" . + +qkdv:A0E0L1dot5I0M0dot5H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "1.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^1.5 M^0.5 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1.5I0M0.5H0T-1D0" ; + vaem:todo "Suspicious" . + +qkdv:A0E0L1dot5I0M0dot5H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "1.5"^^xsd:float ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass "0.5"^^xsd:float ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^1.5 M^0.5 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L1.5I0M0.5H0T-2D0" . + +qkdv:A0E0L2I0M-1H0T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 M^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M-1H0T-1D0" . + +qkdv:A0E0L2I0M-1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M-1H0T0D0" . + +qkdv:A0E0L2I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 M^-1 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M-1H0T1D0" . + +qkdv:A0E0L2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M-1H0T2D0" . + +qkdv:A0E0L2I0M-1H1T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M-1H1T-1D0" . + +qkdv:A0E0L2I0M0H-1T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 H^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H-1T-1D0" . + +qkdv:A0E0L2I0M0H-1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:latexDefinition "$L^2 T^-2 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H-1T-2D0" . + +qkdv:A0E0L2I0M0H-1T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 T^-3 Θ^-1 N^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H-1T-3D0" . + +qkdv:A0E0L2I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AreaThermalExpansion ; + qudt:latexDefinition "$L^2 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H-1T0D0" . + +qkdv:A0E0L2I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AreaPerTime ; + qudt:latexDefinition "$L^2 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T-1D0" . + +qkdv:A0E0L2I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpecificEnergy ; + qudt:latexDefinition "$L^2 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T-2D0" . + +qkdv:A0E0L2I0M0H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:latexDefinition "$L^2 T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T-3D0" . + +qkdv:A0E0L2I0M0H0T-4D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T-4D0" . + +qkdv:A0E0L2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Area ; + qudt:latexDefinition "$L^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T0D0" . + +qkdv:A0E0L2I0M0H0T0D1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 1 ; + qudt:latexDefinition "$U L^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T0D1" . + +qkdv:A0E0L2I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AreaTime ; + qudt:latexDefinition "$L^2 T$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T1D0" . + +qkdv:A0E0L2I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H0T2D0" . + +qkdv:A0E0L2I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AreaTemperature ; + qudt:latexDefinition "$L^2 Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H1T0D0" . + +qkdv:A0E0L2I0M0H1T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AreaTimeTemperature ; + qudt:latexDefinition "$L^2 T Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M0H1T1D0" . + +qkdv:A0E0L2I0M1H-1T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyPerTemperature ; + qudt:latexDefinition "$L^2 M T^-2 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H-1T-2D0" . + +qkdv:A0E0L2I0M1H-1T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^2 M T^-3 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H-1T-3D0" . + +qkdv:A0E0L2I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AngularMomentum ; + qudt:latexDefinition "$L^2 M T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T-1D0" . + +qkdv:A0E0L2I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Energy ; + qudt:hasReferenceQuantityKind quantitykind:Torque ; + qudt:latexDefinition "$L^2\\,M\\,T^{-2}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T-2D0" . + +qkdv:A0E0L2I0M1H0T-3D-1 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent -1 ; + qudt:latexDefinition "$U^-1 L^2 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T-3D-1" . + +qkdv:A0E0L2I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Power ; + qudt:latexDefinition "$L^2 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T-3D0" . + +qkdv:A0E0L2I0M1H0T-4D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance "0" ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength "2" ; + qudt:dimensionExponentForLuminousIntensity "0" ; + qudt:dimensionExponentForMass "1" ; + qudt:dimensionExponentForThermodynamicTemperature "0" ; + qudt:dimensionExponentForTime "-4" ; + qudt:dimensionlessExponent "0" ; + qudt:latexDefinition "$L^2 M T^-4 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T-4D0" . + +qkdv:A0E0L2I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MomentOfInertia ; + qudt:latexDefinition "$L^2 M$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L2I0M1H0T0D0" . + +qkdv:A0E0L3I0M-1H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpecificHeatPressure ; + qudt:latexDefinition "$L^3 M^-1 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M-1H-1T0D0" . + +qkdv:A0E0L3I0M-1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^3 M^-1 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M-1H0T-2D0" . + +qkdv:A0E0L3I0M-1H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SpecificVolume ; + qudt:latexDefinition "$L^3 M^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M-1H0T0D0" . + +qkdv:A0E0L3I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^3 M^-1 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M-1H0T1D0" . + +qkdv:A0E0L3I0M0H-1T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^3 H^-1 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H-1T-1D0" . + +qkdv:A0E0L3I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:latexDefinition "$L^3 Θ^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H-1T0D0" . + +qkdv:A0E0L3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:VolumeFlowRate ; + qudt:latexDefinition "$L^3 T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H0T-1D0" . + +qkdv:A0E0L3I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:StandardGravitationalParameter ; + qudt:latexDefinition "$L^3 T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H0T-2D0" . + +qkdv:A0E0L3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Volume ; + qudt:latexDefinition "$L^3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H0T0D0" . + +qkdv:A0E0L3I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M0H1T0D0" . + +qkdv:A0E0L3I0M1H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MomentOfForce ; + qudt:latexDefinition "$L^3 M T^-1$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M1H0T-1D0" . + +qkdv:A0E0L3I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:LengthEnergy ; + qudt:hasReferenceQuantityKind quantitykind:ThermalEnergyLength ; + qudt:latexDefinition "$L^3 M T^-2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M1H0T-2D0" . + +qkdv:A0E0L3I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-3I0M1H0T0D0" . + +qkdv:A0E0L3I0M1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^3 M T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L3I0M1H0T1D0" . + +qkdv:A0E0L4I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^4 M^-1 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M-1H0T1D0" . + +qkdv:A0E0L4I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^4 M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M-1H0T2D0" . + +qkdv:A0E0L4I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M0H0T-1D0" . + +qkdv:A0E0L4I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M0H0T-2D0" . + +qkdv:A0E0L4I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:latexDefinition "$L^4$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M0H0T0D0" . + +qkdv:A0E0L4I0M1H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M1H0T-2D0" . + +qkdv:A0E0L4I0M1H0T-3D-1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent -1 ; + qudt:latexDefinition "$U^-1 L^4 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M1H0T-3D-1" . + +qkdv:A0E0L4I0M1H0T-3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:PowerArea ; + qudt:latexDefinition "$L^4 M T^-3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M1H0T-3D0" . + +qkdv:A0E0L4I0M2H0T-4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Energy_Squared ; + qudt:latexDefinition "$L^4 M^2 T^-4$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L4I0M2H0T-4D0" . + +qkdv:A0E0L5I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 5 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L5I0M0H0T0D0" . + +qkdv:A0E0L6I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 6 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E0L6I0M0H0T0D0" . + +qkdv:A0E1L-1I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticReluctivity ; + qudt:latexDefinition "$L^{-1} M^{-1} T^2 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-1I0M-1H0T2D0" . + +qkdv:A0E1L-1I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-1 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-1I0M0H0T0D0" . + +qkdv:A0E1L-1I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricChargeLineDensity ; + qudt:latexDefinition "$L^-1 T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-1I0M0H0T1D0" . + +qkdv:A0E1L-2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:InverseMagneticFlux ; + qudt:latexDefinition "$L^-2 M^-1 T^2 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-2I0M-1H0T2D0" . + +qkdv:A0E1L-2I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricCurrentPerEnergy ; + qudt:latexDefinition "$L^-2 M^-1 T^3 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-2I0M-1H0T3D0" . + +qkdv:A0E1L-2I0M0H-2T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -2 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-2I0M0H-2T0D0" . + +qkdv:A0E1L-2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:latexDefinition "$L^-2 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-2I0M0H0T0D0" . + +qkdv:A0E1L-2I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricChargePerArea ; + qudt:latexDefinition "$L^-2 T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-2I0M0H0T1D0" . + +qkdv:A0E1L-3I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E L^-3 M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-3I0M-1H0T2D0" . + +qkdv:A0E1L-3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E L^-3 T^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-3I0M0H0T-1D0" . + +qkdv:A0E1L-3I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:latexDefinition "$L^-3 T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L-3I0M0H0T1D0" . + +qkdv:A0E1L0I0M-1H0T0D0 + a qudt:ISO-DimensionVector, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ExposureRate ; + qudt:hasReferenceQuantityKind quantitykind:SpecificElectricCurrent ; + qudt:latexDefinition "$I M^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M-1H0T0D0" . + +qkdv:A0E1L0I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricChargePerMass ; + qudt:hasReferenceQuantityKind quantitykind:SpecificElectricCharge ; + qudt:latexDefinition "$I T M^{-1}$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M-1H0T1D0" . + +qkdv:A0E1L0I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M-1H0T2D0" . + +qkdv:A0E1L0I0M-1H0T4D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M-1H0T4D0" . + +qkdv:A0E1L0I0M-1H1T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ; + qudt:latexDefinition "$M^-1 T^2 I Θ$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M-1H1T2D0" . + +qkdv:A0E1L0I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricCurrentPerTemperature ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H-1T0D0" . + +qkdv:A0E1L0I0M0H-1T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E Θ^-1 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H-1T1D0" . + +qkdv:A0E1L0I0M0H0T0D-1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent -1 ; + qudt:latexDefinition "$U^-1 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H0T0D-1" . + +qkdv:A0E1L0I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricCurrent ; + qudt:latexDefinition "$I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H0T0D0" . + +qkdv:A0E1L0I0M0H0T0D1 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 1 ; + qudt:latexDefinition "$U I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H0T0D1" . + +qkdv:A0E1L0I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricCharge ; + qudt:latexDefinition "$T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H0T1D0" . + +qkdv:A0E1L0I0M0H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$T^2 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L0I0M0H0T2D0" . + +qkdv:A0E1L1I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E L M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L1I0M-1H0T2D0" . + +qkdv:A0E1L1I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:latexDefinition "$L T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L1I0M0H0T1D0" . + +qkdv:A0E1L2I0M-1H0T1D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E L^2 M^-1 T $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L2I0M-1H0T1D0" . + +qkdv:A0E1L2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:latexDefinition "$L^2 I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L2I0M0H0T0D0" . + +qkdv:A0E1L2I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 1 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricQuadrupoleMoment ; + qudt:latexDefinition "$L^2 T I$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E1L2I0M0H0T1D0" . + +qkdv:A0E2L-1I0M-1H0T4D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-1I0M-1H0T4D0" . + +qkdv:A0E2L-2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 M^-1 T^2 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-2I0M-1H0T2D0" . + +qkdv:A0E2L-2I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-2 M^-1 T^3 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-2I0M-1H0T3D0" . + +qkdv:A0E2L-2I0M-1H0T4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Capacitance ; + qudt:latexDefinition "$L^-2 M^-1 T^4 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-2I0M-1H0T4D0" . + +qkdv:A0E2L-3I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-3I0M-1H0T3D0" . + +qkdv:A0E2L-3I0M-1H0T4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Permittivity ; + qudt:latexDefinition "$L^-3 M^-1 T^4 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-3I0M-1H0T4D0" . + +qkdv:A0E2L-4I0M-1H0T3D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength -4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 3 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L-4I0M-1H0T3D0" . + +qkdv:A0E2L0I0M-1H0T4D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 4 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:Polarizability ; + qudt:latexDefinition "$M^-1 T^4 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L0I0M-1H0T4D0" . + +qkdv:A0E2L0I0M0H0T1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L0I0M0H0T1D0" . + +qkdv:A0E2L2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 2 ; + qudt:dimensionExponentForLength 2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:EnergyPerMagneticFluxDensity_Squared ; + qudt:latexDefinition "$L^2 M^-1 T^2 I^2$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E2L2I0M-1H0T2D0" . + +qkdv:A0E3L-1I0M-2H0T7D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 3 ; + qudt:dimensionExponentForLength -1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 7 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared ; + qudt:latexDefinition "$L^-1 M^-2 T^7 I^3$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E3L-1I0M-2H0T7D0" . + +qkdv:A0E3L-3I0M-2H0T7D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 3 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 7 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E3L-3I0M-2H0T7D0" . + +qkdv:A0E3L0I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 3 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$E^3 Θ^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E3L0I0M0H-1T0D0" . + +qkdv:A0E4L-2I0M-3H0T10D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 4 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -3 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 10 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic ; + qudt:latexDefinition "$L^-2 M^-3 T^10 I^4$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E4L-2I0M-3H0T10D0" . + +qkdv:A0E4L-5I0M-3H0T10D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 4 ; + qudt:dimensionExponentForLength -5 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -3 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 10 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$L^-5 M^-3 T^10 I^4$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A0E4L-5I0M-3H0T10D0" . + +qkdv:A0E4L-6I0M-2H0T6D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 4 ; + qudt:dimensionExponentForLength -6 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 6 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A0E4L-6I0M-2H0T6D0" . + +qkdv:A1E0L-2I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$N L^-2 M^-1 T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-2I0M-1H0T2D0" . + +qkdv:A1E0L-2I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MolarFluxDensity ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-2I0M0H0T-1D0" . + +qkdv:A1E0L-2I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-2I0M0H0T-2D0" . + +qkdv:A1E0L-2I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-2I0M0H0T0D0" . + +qkdv:A1E0L-2I0M1H0T2D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -2 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$N L^-2 M T^2 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-2I0M1H0T2D0" . + +qkdv:A1E0L-3I0M-1H0T2D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-3I0M-1H0T2D0" . + +qkdv:A1E0L-3I0M0H-1T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$N L^-3 H^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-3I0M0H-1T0D0" . + +qkdv:A1E0L-3I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-3I0M0H0T-1D0" . + +qkdv:A1E0L-3I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -3 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AmountOfSubstancePerVolume ; + qudt:latexDefinition "$L^-3 N$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L-3I0M0H0T0D0" . + +qkdv:A1E0L0I0M-1H-1T0D0 + a qudt:QuantityKindDimensionVector ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature -1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:latexDefinition "$N M^-1 Θ^-1 $"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M-1H-1T0D0" . + +qkdv:A1E0L0I0M-1H0T-1D0 + a qudt:QuantityKindDimensionVector_CGS, qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M-1H0T-1D0" . + +qkdv:A1E0L0I0M-1H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:latexDefinition "$M^-1 N$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M-1H0T0D0" . + +qkdv:A1E0L0I0M0H0T-1D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -1 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:CatalyticActivity ; + qudt:latexDefinition "$T^-1 N$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M0H0T-1D0" . + +qkdv:A1E0L0I0M0H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AmountOfSubstance ; + qudt:latexDefinition "$N$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M0H0T0D0" . + +qkdv:A1E0L0I0M0H1T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 1 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:TemperatureAmountOfSubstance ; + qudt:latexDefinition "$\\theta N$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M0H1T0D0" . + +qkdv:A1E0L0I0M1H0T0D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 1 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:MassAmountOfSubstance ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L0I0M1H0T0D0" . + +qkdv:A1E0L1I0M-2H0T2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 1 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 1 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass -2 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 2 ; + qudt:dimensionlessExponent 0 ; + qudt:hasReferenceQuantityKind quantitykind:AmountOfSubstancePerMassPressure ; + rdfs:isDefinedBy ; + rdfs:label "A1E0L1I0M-2H0T2D0" . + +qkdv:A2E0L-4I0M0H0T-2D0 + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + qudt:dimensionExponentForAmountOfSubstance 2 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength -4 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime -2 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "qkdv:A2E0L-4I0M0H0T-2D0" . + +qkdv:NotApplicable + a qudt:QuantityKindDimensionVector_ISO, qudt:QuantityKindDimensionVector_Imperial, qudt:QuantityKindDimensionVector_SI ; + dcterms:description "This is a placeholder dimension vector used in cases where there is no appropriate dimension vector"^^rdf:HTML ; + qudt:dimensionExponentForAmountOfSubstance 0 ; + qudt:dimensionExponentForElectricCurrent 0 ; + qudt:dimensionExponentForLength 0 ; + qudt:dimensionExponentForLuminousIntensity 0 ; + qudt:dimensionExponentForMass 0 ; + qudt:dimensionExponentForThermodynamicTemperature 0 ; + qudt:dimensionExponentForTime 0 ; + qudt:dimensionlessExponent 0 ; + rdfs:isDefinedBy ; + rdfs:label "Not Applicable" . + +vaem:GMD_QUDT-DIMENSION-VECTORS + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2019-08-01T16:25:54.850+00:00"^^xsd:dateTime ; + dcterms:creator "Steve Ray" ; + dcterms:description "Provides the set of all dimension vectors"^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "DIMENSION-VECTORS" ; + dcterms:title "QUDT Dimension Vectors Version 3.1Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Dimension Vector Vocabulary Metadata Version 3.1.0" ; + vaem:applicableDiscipline "All disciplines" ; + vaem:applicableDomain "Science, Medicine and Engineering" ; + vaem:dateCreated "2019-08-01T21:26:38"^^xsd:dateTime ; + vaem:description "QUDT Dimension Vectors is a vocabulary that extends QUDT Quantity Kinds with properties that support dimensional analysis. There is one dimension vector for each of the system's base quantity kinds. The vector's magnitude determines the exponent of the base dimension for the referenced quantity kind" ; + vaem:graphTitle "QUDT Dimension Vectors Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:intent "TBD" ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-DIMENSION-VECTORS.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png" ; + vaem:namespace "http://qudt.org/vocab/dimensionvector/"^^xsd:anyURI ; + vaem:namespacePrefix "qkdv" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-DIMENSION-VECTORS.html"^^xsd:anyURI ; + vaem:specificity 1 ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/dimensionvector"^^xsd:anyURI ; + vaem:usesNonImportedResource dc:contributor ; + vaem:usesNonImportedResource dc:creator ; + vaem:usesNonImportedResource dc:description ; + vaem:usesNonImportedResource dc:rights ; + vaem:usesNonImportedResource dc:subject ; + vaem:usesNonImportedResource dc:title ; + vaem:usesNonImportedResource dcterms:contributor ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:description ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:subject ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource skos:closeMatch ; + vaem:usesNonImportedResource skos:exactMatch ; + vaem:usesNonImportedResource voag:QUDT-Attribution ; + vaem:withAttributionTo voag:QUDT-Attribution . + +voag:QUDT-DIMENSIONS-VocabCatalogEntry + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT DIMENSIONS Vocab Catalog Entry" . + + diff --git a/libraries/qudt/VOCAB_QUDT-PREFIXES.ttl b/libraries/qudt/VOCAB_QUDT-PREFIXES.ttl new file mode 100644 index 000000000..2ac489338 --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-PREFIXES.ttl @@ -0,0 +1,459 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix prefix: . +@prefix qudt: . +@prefix si-prefix: . +@prefix vaem: . + + + a owl:Ontology ; + owl:imports ; + owl:versionIRI ; + owl:versionInfo "Created with TopBraid Composer" ; + rdfs:label "QUDT VOCAB Decimal Prefixes Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-PREFIXES . + +prefix:Atto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "\"atto\" is a decimal prefix for expressing a value with a scaling of \\(10^{-18}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atto"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atto?oldid=412748080"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000000001 ; + qudt:prefixMultiplierSN 1.0E-18 ; + qudt:siExactMatch si-prefix:atto ; + qudt:symbol "a" ; + qudt:ucumCode "a" ; + rdfs:isDefinedBy ; + rdfs:label "Atto"@en . + +prefix:Centi + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'centi' is a decimal prefix for expressing a value with a scaling of \\(10^{-2}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Centi-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Centi-?oldid=480291808"^^xsd:anyURI ; + qudt:prefixMultiplier 0.01 ; + qudt:prefixMultiplierSN 1.0E-2 ; + qudt:siExactMatch si-prefix:centi ; + qudt:symbol "c" ; + qudt:ucumCode "c" ; + rdfs:isDefinedBy ; + rdfs:label "Centi"@en . + +prefix:Deca + a qudt:DecimalPrefix, qudt:Prefix ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Deca"^^xsd:anyURI ; + qudt:exactMatch prefix:Deka ; + qudt:prefixMultiplier 10.0 ; + qudt:prefixMultiplierSN 1.0E1 ; + qudt:siExactMatch si-prefix:deca ; + qudt:symbol "da" ; + qudt:ucumCode "da" ; + rdfs:isDefinedBy ; + rdfs:label "Deca"@en . + +prefix:Deci + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "\"deci\" is a decimal prefix for expressing a value with a scaling of \\(10^{-1}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Deci-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deci-?oldid=469980160"^^xsd:anyURI ; + qudt:prefixMultiplier 0.1 ; + qudt:prefixMultiplierSN 1.0E-1 ; + qudt:siExactMatch si-prefix:deci ; + qudt:symbol "d" ; + qudt:ucumCode "d" ; + rdfs:isDefinedBy ; + rdfs:label "Deci"@en . + +prefix:Deka + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "deka is a decimal prefix for expressing a value with a scaling of \\(10^{1}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Deca"^^xsd:anyURI ; + qudt:exactMatch prefix:Deca ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deca?oldid=480093935"^^xsd:anyURI ; + qudt:prefixMultiplier 10.0 ; + qudt:prefixMultiplierSN 1.0E1 ; + qudt:siExactMatch si-prefix:deca ; + qudt:symbol "da" ; + qudt:ucumCode "da" ; + rdfs:isDefinedBy ; + rdfs:label "Deka"@en . + +prefix:Exa + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'exa' is a decimal prefix for expressing a value with a scaling of \\(10^{18}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Exa-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Exa-?oldid=494400216"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E18 ; + qudt:siExactMatch si-prefix:exa ; + qudt:symbol "E" ; + qudt:ucumCode "E" ; + rdfs:isDefinedBy ; + rdfs:label "Exa"@en . + +prefix:Exbi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{6}$, or $2^{60}$."^^qudt:LatexString ; + qudt:prefixMultiplier 152921504606846976.0 ; + qudt:prefixMultiplierSN 152921504606846976E0 ; + qudt:symbol "Ei" ; + rdfs:isDefinedBy ; + rdfs:label "Exbi"@en . + +prefix:Femto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'femto' is a decimal prefix for expressing a value with a scaling of \\(10^{-15}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Femto-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Femto-?oldid=467211359"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000001 ; + qudt:prefixMultiplierSN 1.0E-15 ; + qudt:siExactMatch si-prefix:femto ; + qudt:symbol "f" ; + qudt:ucumCode "f" ; + rdfs:isDefinedBy ; + rdfs:label "Femto"@en . + +prefix:Gibi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{3}$, or $2^{30}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1073741824.0 ; + qudt:prefixMultiplierSN 1073741824E0 ; + qudt:symbol "Gi" ; + qudt:ucumCode "Gi" ; + rdfs:isDefinedBy ; + rdfs:label "Gibi"@en . + +prefix:Giga + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'giga' is a decimal prefix for expressing a value with a scaling of \\(10^{9}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Giga-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Giga-?oldid=473222816"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000.0 ; + qudt:prefixMultiplierSN 1.0E9 ; + qudt:siExactMatch si-prefix:giga ; + qudt:symbol "G" ; + qudt:ucumCode "G" ; + rdfs:isDefinedBy ; + rdfs:label "Giga"@en . + +prefix:Hecto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'hecto' is a decimal prefix for expressing a value with a scaling of \\(10^{2}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hecto-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hecto-?oldid=494711166"^^xsd:anyURI ; + qudt:prefixMultiplier 100.0 ; + qudt:prefixMultiplierSN 1.0E2 ; + qudt:siExactMatch si-prefix:hecto ; + qudt:symbol "h" ; + qudt:ucumCode "h" ; + rdfs:isDefinedBy ; + rdfs:label "Hecto"@en . + +prefix:Kibi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024$, or $2^{10}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1024.0 ; + qudt:prefixMultiplierSN 1024E0 ; + qudt:symbol "Ki" ; + qudt:ucumCode "Ki" ; + rdfs:isDefinedBy ; + rdfs:label "Kibi"@en . + +prefix:Kilo + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "\"kilo\" is a decimal prefix for expressing a value with a scaling of \\(10^{3}\"\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilo"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilo?oldid=461428121"^^xsd:anyURI ; + qudt:prefixMultiplier 1000.0 ; + qudt:prefixMultiplierSN 1.0E3 ; + qudt:siExactMatch si-prefix:kilo ; + qudt:symbol "k" ; + qudt:ucumCode "k" ; + rdfs:isDefinedBy ; + rdfs:label "Kilo"@en . + +prefix:Mebi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{2}$, or $2^{20}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1048576.0 ; + qudt:prefixMultiplierSN 1048576E0 ; + qudt:symbol "Mi" ; + qudt:ucumCode "Mi" ; + rdfs:isDefinedBy ; + rdfs:label "Mebi"@en . + +prefix:Mega + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'mega' is a decimal prefix for expressing a value with a scaling of \\(10^{6}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mega"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mega?oldid=494040441"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000.0 ; + qudt:prefixMultiplierSN 1.0E6 ; + qudt:siExactMatch si-prefix:mega ; + qudt:symbol "M" ; + qudt:ucumCode "M" ; + rdfs:isDefinedBy ; + rdfs:label "Mega"@en . + +prefix:Micro + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "\"micro\" is a decimal prefix for expressing a value with a scaling of \\(10^{-6}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Micro"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Micro?oldid=491618374"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000001 ; + qudt:prefixMultiplierSN 1.0E-6 ; + qudt:siExactMatch si-prefix:micro ; + qudt:symbol "μ" ; + qudt:ucumCode "u" ; + rdfs:isDefinedBy ; + rdfs:label "Micro"@en . + +prefix:Milli + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'milli' is a decimal prefix for expressing a value with a scaling of \\(10^{-3}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Milli-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Milli-?oldid=467190544"^^xsd:anyURI ; + qudt:prefixMultiplier 0.001 ; + qudt:prefixMultiplierSN 1.0E-3 ; + qudt:siExactMatch si-prefix:milli ; + qudt:symbol "m" ; + qudt:ucumCode "m" ; + rdfs:isDefinedBy ; + rdfs:label "Milli"@en . + +prefix:Nano + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'nano' is a decimal prefix for expressing a value with a scaling of \\(10^{-9}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nano"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nano?oldid=489001692"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000001 ; + qudt:prefixMultiplierSN 1.0E-9 ; + qudt:siExactMatch si-prefix:nano ; + qudt:symbol "n" ; + qudt:ucumCode "n" ; + rdfs:isDefinedBy ; + rdfs:label "Nano"@en . + +prefix:Pebi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{5}$, or $2^{50}$."^^qudt:LatexString ; + qudt:prefixMultiplier 125899906842624.0 ; + qudt:prefixMultiplierSN 125899906842624E0 ; + qudt:symbol "Pi" ; + rdfs:isDefinedBy ; + rdfs:label "Pebi"@en . + +prefix:Peta + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'peta' is a decimal prefix for expressing a value with a scaling of \\(10^{15}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Peta"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Peta?oldid=488263435"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E15 ; + qudt:siExactMatch si-prefix:peta ; + qudt:symbol "P" ; + qudt:ucumCode "P" ; + rdfs:isDefinedBy ; + rdfs:label "Peta"@en . + +prefix:Pico + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'pico' is a decimal prefix for expressing a value with a scaling of \\(10^{-12}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pico"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pico?oldid=485697614"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000001 ; + qudt:prefixMultiplierSN 1.0E-12 ; + qudt:siExactMatch si-prefix:pico ; + qudt:symbol "p" ; + qudt:ucumCode "p" ; + rdfs:isDefinedBy ; + rdfs:label "Pico"@en . + +prefix:Quecto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'quecto' is a decimal prefix for expressing a value with a scaling of \\(10^{-30}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quecto"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000000000000000000001 ; + qudt:prefixMultiplierSN 1.0E-30 ; + qudt:siExactMatch si-prefix:quecto ; + qudt:symbol "q" ; + qudt:ucumCode "q" ; + rdfs:isDefinedBy ; + rdfs:label "Quecto"@en . + +prefix:Quetta + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'quetta' is a decimal prefix for expressing a value with a scaling of \\(10^{30}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quetta"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E30 ; + qudt:siExactMatch si-prefix:quetta ; + qudt:symbol "Q" ; + qudt:ucumCode "Q" ; + rdfs:isDefinedBy ; + rdfs:label "Quetta"@en . + +prefix:Ronna + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'ronna' is a decimal prefix for expressing a value with a scaling of \\(10^{27}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ronna"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E27 ; + qudt:siExactMatch si-prefix:ronna ; + qudt:symbol "R" ; + qudt:ucumCode "R" ; + rdfs:isDefinedBy ; + rdfs:label "Ronna"@en . + +prefix:Ronto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'ronto' is a decimal prefix for expressing a value with a scaling of \\(10^{-27}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ronto"^^xsd:anyURI ; + qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000000000000000001 ; + qudt:prefixMultiplierSN 1.0E-27 ; + qudt:siExactMatch si-prefix:ronto ; + qudt:symbol "r" ; + qudt:ucumCode "r" ; + rdfs:isDefinedBy ; + rdfs:label "Ronto"@en . + +prefix:Tebi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^4}$, or $2^{40}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1099511627776.0 ; + qudt:prefixMultiplierSN 1099511627776E0 ; + qudt:symbol "Ti" ; + qudt:ucumCode "Ti" ; + rdfs:isDefinedBy ; + rdfs:label "Tebi"@en . + +prefix:Tera + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'tera' is a decimal prefix for expressing a value with a scaling of \\(10^{12}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tera"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tera?oldid=494204788"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000.0 ; + qudt:prefixMultiplierSN 1.0E12 ; + qudt:siExactMatch si-prefix:tera ; + qudt:symbol "T" ; + qudt:ucumCode "T" ; + rdfs:isDefinedBy ; + rdfs:label "Tera"@en . + +prefix:Yobi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{8}$, or $2^{80}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1208925819614629174706176.0 ; + qudt:prefixMultiplierSN 1208925819614629174706176E0 ; + qudt:symbol "Yi" ; + rdfs:isDefinedBy ; + rdfs:label "Yobi"@en . + +prefix:Yocto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'yocto' is a decimal prefix for expressing a value with a scaling of \\(10^{-24}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Yocto-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Yocto-?oldid=488155799"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000000000000001 ; + qudt:prefixMultiplierSN 1.0E-24 ; + qudt:siExactMatch si-prefix:yocto ; + qudt:symbol "y" ; + qudt:ucumCode "y" ; + rdfs:isDefinedBy ; + rdfs:label "Yocto"@en . + +prefix:Yotta + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'yotta' is a decimal prefix for expressing a value with a scaling of \\(10^{24}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Yotta-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Yotta-?oldid=494538119"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E24 ; + qudt:siExactMatch si-prefix:yotta ; + qudt:symbol "Y" ; + qudt:ucumCode "Y" ; + rdfs:isDefinedBy ; + rdfs:label "Yotta"@en . + +prefix:Zebi + a qudt:BinaryPrefix, qudt:Prefix ; + dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{7}$, or $2^{70}$."^^qudt:LatexString ; + qudt:prefixMultiplier 1180591620717411303424.0 ; + qudt:prefixMultiplierSN 1180591620717411303424E0 ; + qudt:symbol "Zi" ; + rdfs:isDefinedBy ; + rdfs:label "Zebi"@en . + +prefix:Zepto + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'zepto' is a decimal prefix for expressing a value with a scaling of \\(10^{-21}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zepto-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zepto-?oldid=476974663"^^xsd:anyURI ; + qudt:prefixMultiplier 0.000000000000000000001 ; + qudt:prefixMultiplierSN 1.0E-21 ; + qudt:siExactMatch si-prefix:zepto ; + qudt:symbol "z" ; + qudt:ucumCode "z" ; + rdfs:isDefinedBy ; + rdfs:label "Zepto"@en . + +prefix:Zetta + a qudt:DecimalPrefix, qudt:Prefix ; + dcterms:description "'zetta' is a decimal prefix for expressing a value with a scaling of \\(10^{21}\\)."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zetta-"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zetta-?oldid=495223080"^^xsd:anyURI ; + qudt:prefixMultiplier 1000000000000000000000.0 ; + qudt:prefixMultiplierSN 1.0E21 ; + qudt:siExactMatch si-prefix:zetta ; + qudt:symbol "Z" ; + qudt:ucumCode "Z" ; + rdfs:isDefinedBy ; + rdfs:label "Zetta"@en . + +vaem:GMD_QUDT-PREFIXES + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Michael Ringel" ; + dcterms:contributor "Ralph Hodgson" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2020-07-15"^^xsd:date ; + dcterms:creator "Steve Ray" ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Prefixes" ; + dcterms:title "QUDT Prefixes Version 3.1Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Prefix Vocabulary Version Metadata 3.1.0" ; + vaem:description "The Prefixes vocabulary defines the prefixes commonly prepended to units to connote multiplication, either decimal or binary." ; + vaem:graphName "prefix" ; + vaem:graphTitle "QUDT Prefixes Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT.org ; + vaem:hasSteward vaem:QUDT.org ; + vaem:intent "Provides a vocabulary of prefixes for both human and machine use" ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-PREFIXES.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/vocab/prefix/"^^xsd:anyURI ; + vaem:namespacePrefix "prefix" ; + vaem:owner "QUDT.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-PREFIXES.html"^^xsd:anyURI ; + vaem:specificity 1 ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/prefix"^^xsd:anyURI ; + vaem:urlForHTML "http://qudt.org/3.1.0/vocab/prefix.html"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:title ; + vaem:website "http://qudt.org/3.1.0/vocab/prefix.ttl"^^xsd:anyURI . + + diff --git a/libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl b/libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl new file mode 100644 index 000000000..a983cbb10 --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl @@ -0,0 +1,12 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . + + + a owl:Ontology ; + owl:imports ; + owl:versionInfo "Created with TopBraid Composer" ; + rdfs:label "QUDT VOCAB (Quantities) -- DEPRECATED?" . + + diff --git a/libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl b/libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl new file mode 100644 index 000000000..20ab496db --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl @@ -0,0 +1,32009 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix constant: . +@prefix dc: . +@prefix dcterms: . +@prefix prov: . +@prefix qkdv: . +@prefix quantitykind: . +@prefix qudt: . +@prefix si-quantity: . +@prefix skos: . +@prefix unit: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Quantity Kind Vocabulary Version 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-QUANTITY-KINDS-ALL . + +quantitykind:AbsoluteActivity + a qudt:QuantityKind ; + dcterms:description "The \"Absolute Activity\" is the exponential of the ratio of the chemical potential to $RT$ where $R$ is the gas constant and $T$ the thermodynamic temperature."^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-SEC-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://goldbook.iupac.org/A00019.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda_B = e^{\\frac{\\mu_B}{RT}}$, where $\\mu_B$ is the chemical potential of substance $B$, $R$ is the molar gas constant, and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda_B$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:AbsoluteActivity" ; + rdfs:isDefinedBy ; + rdfs:label "Absolute Activity"@en ; + skos:broader quantitykind:InverseVolume . + +quantitykind:AbsoluteHumidity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Absolute Humidity}$ is an amount of water vapor, usually discussed per unit volume. + Absolute humidity in air ranges from zero to roughly 30 grams per cubic meter when the air is saturated at $30 ^\\circ C$. + The absolute humidity changes as air temperature or pressure changes. + $$$$ + This is very inconvenient for chemical engineering calculations, e.g. for clothes dryers, where temperature can vary considerably. + As a result, absolute humidity is generally defined in chemical engineering as mass of water vapor per unit mass of dry air, + also known as the mass mixing ratio, which is much more rigorous for heat and mass balance calculations. + $$$$ + Mass of water per unit volume as in the equation above would then be defined as volumetric humidity, because of the potential confusion. + """^^qudt:LatexString ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Humidity#Absolute_humidity"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Humidity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition """$AH = \\frac{\\mathcal{M}_\\omega}{\\vee_{net}}$, +where $\\mathcal{M}_\\omega$ is the mass of water vapor per unit volume of total air and $\\vee_{net}$ is water vapor mixture."""^^qudt:LatexString ; + qudt:symbol "AH" ; + rdfs:comment "Applicable units are those of quantitykind:Density" ; + rdfs:isDefinedBy ; + rdfs:label "Absolute Humidity"@en ; + rdfs:seeAlso quantitykind:RelativeHumidity ; + skos:broader quantitykind:Density . + +quantitykind:AbsoluteTypographicMeasurement + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD372" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD372"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "absolute typographic measurement" ; + skos:broader quantitykind:Length . + +quantitykind:AbsorbedDose + a qudt:QuantityKind ; + dcterms:description "\"Absorbed Dose\" (also known as Total Ionizing Dose, TID) is a measure of the energy deposited in a medium by ionizing radiation. It is equal to the energy deposited per unit mass of medium, and so has the unit $J/kg$, which is given the special name Gray ($Gy$)."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiGRAY ; + qudt:applicableUnit unit:GRAY ; + qudt:applicableUnit unit:KiloGRAY ; + qudt:applicableUnit unit:MegaGRAY ; + qudt:applicableUnit unit:MicroGRAY ; + qudt:applicableUnit unit:MilliGRAY ; + qudt:applicableUnit unit:MilliRAD_R ; + qudt:applicableUnit unit:NanoGRAY ; + qudt:applicableUnit unit:RAD_R ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Absorbed_dose"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD000" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Absorbed_dose"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD000"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$D = \\frac{d\\bar{\\varepsilon}}{dm}$, where $d\\bar{\\varepsilon}$ is the mean energy imparted by ionizing radiation to an element of irradiated matter with the mass $dm$."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:ABDO ; + qudt:symbol "D" ; + rdfs:comment "Applicable units are those of quantitykind:AbsorbedDose" ; + rdfs:comment "Note that the absorbed dose is not a good indicator of the likely biological effect. 1 Gy of alpha radiation would be much more biologically damaging than 1 Gy of photon radiation for example. Appropriate weighting factors can be applied reflecting the different relative biological effects to find the equivalent dose. The risk of stoctic effects due to radiation exposure can be quantified using the effective dose, which is a weighted average of the equivalent dose to each organ depending upon its radiosensitivity. When ionising radiation is used to treat cancer, the doctor will usually prescribe the radiotherapy treatment in Gy. When risk from ionising radiation is being discussed, a related unit, the Sievert is used." ; + rdfs:isDefinedBy ; + rdfs:label "Absorbed Dose"@en ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:AbsorbedDoseRate + a qudt:QuantityKind ; + dcterms:description "\"Absorbed Dose Rate\" is the absorbed dose of ionizing radiation imparted at a given location per unit of time (second, minute, hour, or day)."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-PER-GM-SEC ; + qudt:applicableUnit unit:GRAY-PER-HR ; + qudt:applicableUnit unit:GRAY-PER-MIN ; + qudt:applicableUnit unit:GRAY-PER-SEC ; + qudt:applicableUnit unit:MicroGRAY-PER-HR ; + qudt:applicableUnit unit:MicroGRAY-PER-MIN ; + qudt:applicableUnit unit:MicroGRAY-PER-SEC ; + qudt:applicableUnit unit:MicroSV-PER-HR ; + qudt:applicableUnit unit:MicroSV-PER-MIN ; + qudt:applicableUnit unit:MicroSV-PER-SEC ; + qudt:applicableUnit unit:MilliGRAY-PER-HR ; + qudt:applicableUnit unit:MilliGRAY-PER-MIN ; + qudt:applicableUnit unit:MilliGRAY-PER-SEC ; + qudt:applicableUnit unit:MilliRAD_R-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-MIN ; + qudt:applicableUnit unit:MilliSV-PER-SEC ; + qudt:applicableUnit unit:MilliW-PER-MilliGM ; + qudt:applicableUnit unit:NanoGRAY-PER-HR ; + qudt:applicableUnit unit:NanoGRAY-PER-MIN ; + qudt:applicableUnit unit:NanoGRAY-PER-SEC ; + qudt:applicableUnit unit:NanoSV-PER-HR ; + qudt:applicableUnit unit:NanoSV-PER-MIN ; + qudt:applicableUnit unit:NanoSV-PER-SEC ; + qudt:applicableUnit unit:REM-PER-SEC ; + qudt:applicableUnit unit:SV-PER-HR ; + qudt:applicableUnit unit:SV-PER-MIN ; + qudt:applicableUnit unit:SV-PER-SEC ; + qudt:applicableUnit unit:W-PER-GM ; + qudt:applicableUnit unit:W-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD001" ; + qudt:informativeReference "http://www.answers.com/topic/absorbed-dose-rate"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD001"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\dot{D} = \\frac{dD}{dt}$, where $dD$ is the increment of absorbed dose during time interval with duration $dt$."^^qudt:LatexString ; + qudt:latexSymbol "$\\dot{D}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Absorbed Dose Rate\" is the absorbed dose of ionizing radiation imparted at a given location per unit of time (second, minute, hour, or day)." ; + qudt:siExactMatch si-quantity:ABDR ; + rdfs:comment "Applicable units are those of quantitykind:AbsorbedDoseRate" ; + rdfs:isDefinedBy ; + rdfs:label "Absorbed Dose Rate"@en . + +quantitykind:Absorptance + a qudt:QuantityKind ; + dcterms:description "Absorptance is the ratio of the radiation absorbed by a surface to that incident upon it. Also known as absorbance."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Absorbance"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Absorptance"^^xsd:anyURI ; + qudt:informativeReference "https://www.researchgate.net/post/Absorptance_or_absorbance"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha = \\frac{\\Phi_a}{\\Phi_m}$, where $\\Phi_a$ is the absorbed radiant flux or the absorbed luminous flux, and $\\Phi_m$ is the radiant flux or luminous flux of the incident radiation."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "Absorptance is the ratio of the radiation absorbed by a surface to that incident upon it. Also known as absorbance." ; + rdfs:comment "Applicable units are those of quantitykind:Absorptance" ; + rdfs:isDefinedBy ; + rdfs:label "Absorptance"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:Acceleration + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Acceleration}$ is the (instantaneous) rate of change of velocity. + Acceleration may be either linear acceleration, or angular acceleration. + It is a vector quantity with dimension $length/time^{2}$ for linear acceleration, + or in the case of angular acceleration, with dimension $angle/time^{2}$. + $$$$ + In SI units, linear acceleration is measured in $meters/second^{2}$ ($m \\cdot s^{-2}$), + and angular acceleration is measured in $radians/second^{2}$. + $$$$ + In physics, any increase or decrease in speed is referred to as acceleration and similarly, + motion in a circle at constant speed is also an acceleration, since the direction component of the velocity is changing. + """^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-SEC2 ; + qudt:applicableUnit unit:FT-PER-SEC2 ; + qudt:applicableUnit unit:G ; + qudt:applicableUnit unit:GALILEO ; + qudt:applicableUnit unit:IN-PER-SEC2 ; + qudt:applicableUnit unit:KN-PER-SEC ; + qudt:applicableUnit unit:KiloM-PER-SEC2 ; + qudt:applicableUnit unit:KiloPA-M2-PER-GM ; + qudt:applicableUnit unit:M-PER-SEC2 ; + qudt:applicableUnit unit:MI_US-PER-SEC2 ; + qudt:applicableUnit unit:MicroG ; + qudt:applicableUnit unit:MilliG ; + qudt:applicableUnit unit:MilliGAL ; + qudt:applicableUnit unit:MilliM-PER-SEC2 ; + qudt:applicableUnit unit:YD-PER-SEC2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Acceleration"^^xsd:anyURI ; + qudt:exactMatch quantitykind:LinearAcceleration ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD002" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acceleration"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD002"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:ACCE ; + rdfs:comment "Applicable units are those of quantitykind:Acceleration" ; + rdfs:isDefinedBy ; + rdfs:label "Beschleunigung"@de ; + rdfs:label "Pecutan"@ms ; + rdfs:label "Zrychlení"@cs ; + rdfs:label "acceleratio"@la ; + rdfs:label "acceleration"@en ; + rdfs:label "accelerazione"@it ; + rdfs:label "accelerație"@ro ; + rdfs:label "accélération"@fr ; + rdfs:label "aceleración"@es ; + rdfs:label "aceleração"@pt ; + rdfs:label "ivme"@tr ; + rdfs:label "pospešek"@sl ; + rdfs:label "przyspieszenie"@pl ; + rdfs:label "Όγκος"@el ; + rdfs:label "Ускоре́ние"@ru ; + rdfs:label "التسارع"@ar ; + rdfs:label "شتاب"@fa ; + rdfs:label "त्वरण"@hi ; + rdfs:label "加速度"@ja ; + rdfs:label "加速度"@zh . + +quantitykind:AccelerationOfGravity + a qudt:QuantityKind ; + dcterms:description "The acceleration of freely falling bodies under the influence of terrestrial gravity, equal to approximately 9.81 meters (32 feet) per second per second."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-SEC2 ; + qudt:applicableUnit unit:FT-PER-SEC2 ; + qudt:applicableUnit unit:G ; + qudt:applicableUnit unit:GALILEO ; + qudt:applicableUnit unit:IN-PER-SEC2 ; + qudt:applicableUnit unit:KN-PER-SEC ; + qudt:applicableUnit unit:KiloM-PER-SEC2 ; + qudt:applicableUnit unit:KiloPA-M2-PER-GM ; + qudt:applicableUnit unit:M-PER-SEC2 ; + qudt:applicableUnit unit:MI_US-PER-SEC2 ; + qudt:applicableUnit unit:MicroG ; + qudt:applicableUnit unit:MilliG ; + qudt:applicableUnit unit:MilliGAL ; + qudt:applicableUnit unit:MilliM-PER-SEC2 ; + qudt:applicableUnit unit:YD-PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:plainTextDescription "The acceleration of freely falling bodies under the influence of terrestrial gravity, equal to approximately 9.81 meters (32 feet) per second per second." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:Acceleration" ; + rdfs:isDefinedBy ; + rdfs:label "Acceleration Of Gravity"@en ; + skos:broader quantitykind:Acceleration . + +quantitykind:AcceptorDensity + a qudt:QuantityKind ; + dcterms:description "\"Acceptor Density\" is the number per volume of acceptor levels."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Acceptor Density\" is the number per volume of acceptor levels." ; + qudt:symbol "n_a" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Acceptor Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:AcceptorIonizationEnergy + a qudt:QuantityKind ; + dcterms:description "\"Acceptor Ionization Energy\" is the ionization energy of an acceptor."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Acceptor Ionization Energy\" is the ionization energy of an acceptor." ; + qudt:symbol "E_a" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Acceptor Ionization Energy"@en ; + skos:broader quantitykind:IonizationEnergy ; + skos:closeMatch quantitykind:DonorIonizationEnergy . + +quantitykind:Acidity + a qudt:QuantityKind ; + dcterms:description """ + Chemicals or substances having a pH less than 7 are said to be acidic; + lower pH means higher acidity. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PH ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Acid"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/PH"^^xsd:anyURI ; + qudt:informativeReference "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Chemicals or substances having a pH less than 7 are said to be acidic; lower pH means higher acidity." ; + rdfs:comment "Applicable units are those of quantitykind:Acidity" ; + rdfs:isDefinedBy ; + rdfs:label "Acidity"@en ; + rdfs:seeAlso quantitykind:Basicity . + +quantitykind:AcousticImpedance + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Acoustic Impedance}$ at a surface is the complex quotient of the average sound pressure over that surface by the sound volume flow rate through that surface. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PA-SEC-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acoustic_impedance"^^xsd:anyURI ; + qudt:latexDefinition "$Z_a= \\frac{p}{q} = \\frac{p}{vS}$, where $p$ is the sound pressure, $q$ is the sound volume velocity, $v$ is sound particle velocity, and $S$ is the surface area through which an acoustic wave of frequence $f$ propagates."^^qudt:LatexString ; + qudt:plainTextDescription "Acoustic impedance at a surface is the complex quotient of the average sound pressure over that surface by the sound volume flow rate through that surface." ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:AcousticImpedance" ; + rdfs:isDefinedBy ; + rdfs:label "Acoustic Impediance"@en ; + skos:broader quantitykind:MassPerAreaTime . + +quantitykind:Action + a qudt:QuantityKind ; + dcterms:description """ + An action is usually an integral over time. + But for action pertaining to fields, it may be integrated over spatial variables as well. + In some cases, the action is integrated along the path followed by the physical system. + $$$$ + The evolution of a physical system between two states is determined by requiring the action be minimized or, more generally, + be stationary for small perturbations about the true evolution. + This requirement leads to differential equations that describe the true evolution. + Conversely, an action principle is a method for reformulating differential equations of motion for a physical system as an equivalent integral equation. + Although several variants have been defined (see below), the most commonly used action principle is Hamilton's principle. + """^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ-SEC ; + qudt:applicableUnit unit:J-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Action_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$S = \\int Ldt$, where $L$ is the Lagrange function and $t$ is time."^^qudt:LatexString ; + qudt:plainTextDescription """An action is usually an integral over time. But for action pertaining to fields, it may be integrated over spatial variables as well. In some cases, the action is integrated along the path followed by the physical system. If the action is represented as an integral over time, taken a the path of the system between the initial time and the final time of the development of the system. +The evolution of a physical system between two states is determined by requiring the action be minimized or, more generally, be stationary for small perturbations about the true evolution. This requirement leads to differential equations that describe the true evolution. Conversely, an action principle is a method for reformulating differential equations of motion for a physical system as an equivalent integral equation. Although several variants have been defined (see below), the most commonly used action principle is Hamilton's principle.""" ; + qudt:symbol "S" ; + rdfs:comment "Applicable units are those of quantitykind:Action" ; + rdfs:isDefinedBy ; + rdfs:label "Action"@en . + +quantitykind:ActionTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Action Time (sec) " ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Action Time"@en ; + skos:broader quantitykind:Time . + +quantitykind:ActiveEnergy + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Active Energy}$ is the electrical energy transformable into some other form of energy. + """^^qudt:LatexString ; + qudt:abbreviation "active-energy" ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=601-01-19"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$W = \\int_{t_1}^{t_2} p dt$, where $p$ is instantaneous power and the integral interval is the time interval from $t_1$ to $t_2$."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Active Energy\" is the electrical energy transformable into some other form of energy." ; + qudt:symbol "W" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Active Energy"@en ; + rdfs:seeAlso quantitykind:InstantaneousPower ; + skos:broader quantitykind:Energy . + +quantitykind:ActivePower + a qudt:QuantityKind ; + dcterms:description """ + An $Active Power$ is, under periodic conditions, the mean value, taken over one period $T$, of the instantaneous power $p$. + In complex notation, $P = \\mathbf{Re} \\; \\underline{S}$, where $\\underline{S}$ is $\\textit{complex power}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_H2O ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD003" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-42"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD003"^^xsd:anyURI ; + qudt:latexDefinition "$P = \\frac{1}{T}\\int_{0}^{T} pdt$, where $T$ is the period and $p$ is instantaneous power."^^qudt:LatexString ; + qudt:symbol "P" ; + rdfs:comment "Applicable units are those of quantitykind:ActivePower" ; + rdfs:isDefinedBy ; + rdfs:label "Active Power"@en ; + rdfs:seeAlso quantitykind:ComplexPower ; + rdfs:seeAlso quantitykind:InstantaneousPower ; + skos:broader quantitykind:ComplexPower . + +quantitykind:Activity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Activity}$ is the number of decays per unit time of a radioactive sample, + the term used to characterise the number of nuclei which disintegrate in a radioactive substance per unit time. + Activity is usually measured in Becquerels ($Bq$), where 1 $Bq$ is 1 disintegration per second, + in honor of the scientist Henri Becquerel. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BQ ; + qudt:applicableUnit unit:CI ; + qudt:applicableUnit unit:GigaBQ ; + qudt:applicableUnit unit:KiloBQ ; + qudt:applicableUnit unit:KiloCi ; + qudt:applicableUnit unit:MegaBQ ; + qudt:applicableUnit unit:MicroBQ ; + qudt:applicableUnit unit:MicroCi ; + qudt:applicableUnit unit:MilliBQ ; + qudt:applicableUnit unit:MilliCi ; + qudt:applicableUnit unit:NanoBQ ; + qudt:applicableUnit unit:PetaBQ ; + qudt:applicableUnit unit:TeraBQ ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Radioactive_decay"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_number"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radioactive_decay#Radioactive_decay_rates"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radioactive_decay"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition """ + $A = Z + N$, where $Z$ is the atomic number and $N$ is the neutron number. + Variation $dN$ of spontaneous number of nuclei $N$ in a particular energy state, + in a sample of radionuclide, due to spontaneous nuclear transitions from this state during an infinitesimal time interval, + divided by its duration $dt$, thus $A = -\\frac{dN}{dt}$. + """^^qudt:LatexString ; + qudt:siExactMatch si-quantity:ARRN ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Activity" ; + rdfs:isDefinedBy ; + rdfs:label "Activity"@en ; + skos:broader quantitykind:StochasticProcess . + +quantitykind:ActivityCoefficient + a qudt:QuantityKind ; + dcterms:description "An \"Activity Coefficient\" is a factor used in thermodynamics to account for deviations from ideal behaviour in a mixture of chemical substances. In an ideal mixture, the interactions between each pair of chemical species are the same (or more formally, the enthalpy change of solution is zero) and, as a result, properties of the mixtures can be expressed directly in terms of simple concentrations or partial pressures of the substances present e.g. Raoult's law. Deviations from ideality are accommodated by modifying the concentration by an activity coefficient. "^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Activity_coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$f_B = \\frac{\\lambda_B}{(\\lambda_B^*x_B)}$, where $\\lambda_B$ the absolute activity of substance $B$, $\\lambda_B^*$ is the absolute activity of the pure substance $B$ at the same temperature and pressure, and $x_B$ is the amount-of-substance fraction of substance $B$."^^qudt:LatexString ; + qudt:plainTextDescription "An \"Activity Coefficient\" is a factor used in thermodynamics to account for deviations from ideal behaviour in a mixture of chemical substances. In an ideal mixture, the interactions between each pair of chemical species are the same (or more formally, the enthalpy change of solution is zero) and, as a result, properties of the mixtures can be expressed directly in terms of simple concentrations or partial pressures of the substances present e.g. Raoult's law. Deviations from ideality are accommodated by modifying the concentration by an activity coefficient. " ; + qudt:symbol "f_B" ; + rdfs:comment "Applicable units are those of quantitykind:ActivityCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Activity Coefficient"@en . + +quantitykind:ActivityConcentration + a qudt:QuantityKind ; + dcterms:description "The \"Activity Concentration\", also known as volume activity, and activity density, is ."^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-PER-L ; + qudt:applicableUnit unit:BQ-PER-M3 ; + qudt:applicableUnit unit:MicroBQ-PER-L ; + qudt:applicableUnit unit:MilliBQ-PER-L ; + qudt:applicableUnit unit:NanoBQ-PER-L ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:informativeReference "https://www.euronuclear.org/glossary/activity-concentration/"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$c_A = \\frac{A}{V}$, where $A$ is the activity of a sample and $V$ is its volume."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Activity Concentration\", also known as volume activity, and activity density, is ." ; + qudt:symbol "c_A" ; + rdfs:comment "Applicable units are those of quantitykind:ActivityConcentration" ; + rdfs:isDefinedBy ; + rdfs:label "Activity Concentration"@en . + +quantitykind:ActivityRelatedByMass + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Activity Related By Mass}$ is quantitative data of the radioactivity of the amount of a radionuclide in a particular state of energy at a defined point in time, + divided by the related mass of this quantity. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-PER-KiloGM ; + qudt:applicableUnit unit:CI-PER-KiloGM ; + qudt:applicableUnit unit:KiloBQ-PER-KiloGM ; + qudt:applicableUnit unit:MegaBQ-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:plainTextDescription "quantitative Angabe der Radioaktivität einer Menge eines Radionuklids in einem bestimmten Energiezustand zu einem gegebenen Zeitpunkt dividiert durch die zugehörige Masse dieser Menge"@de ; + qudt:plainTextDescription "quantitative data of the radioactivity of the amount of a radionuclide in a particular state of energy at a defined point in time, divided by the related mass of this quantity"@en ; + qudt:symbol "0173-1#Z4-BAJ342#002" ; + rdfs:comment "Applicable units are those of quantitykind:MassicActivity" ; + rdfs:isDefinedBy ; + rdfs:label "activity related by mass"@en-US ; + skos:broader quantitykind:MassicActivity . + +quantitykind:ActivityThresholds + a qudt:QuantityKind ; + dcterms:description "\"Activity Thresholds\" are thresholds of sensitivity for radioactivity."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_t}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Activity Thresholds\" are thresholds of sensitivity for radioactivity." ; + rdfs:isDefinedBy ; + rdfs:label "Activity Thresholds"@en . + +quantitykind:Adaptation + a qudt:QuantityKind ; + dcterms:description "\"Adaptation\" is the recovery of visual ability following exposure to light (dark adaptation), usually measured in units of time."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Neural_adaptation#Visual"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Adaptation\" is the recovery of visual ability following exposure to light (dark adaptation)." ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Adaptation"@en ; + skos:broader quantitykind:Time . + +quantitykind:Admittance + a qudt:QuantityKind ; + dcterms:description "\"Admittance\" is a measure of how easily a circuit or device will allow a current to flow. It is defined as the inverse of the impedance ($Z$). "^^qudt:LatexString ; + qudt:applicableUnit unit:DeciS ; + qudt:applicableUnit unit:KiloS ; + qudt:applicableUnit unit:MHO ; + qudt:applicableUnit unit:MegaS ; + qudt:applicableUnit unit:MicroMHO ; + qudt:applicableUnit unit:MicroS ; + qudt:applicableUnit unit:MilliS ; + qudt:applicableUnit unit:NanoS ; + qudt:applicableUnit unit:PicoS ; + qudt:applicableUnit unit:S ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Admittance"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-51"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$Y = \\frac{1}{Z}$, where $Z$ is impedance."^^qudt:LatexString ; + qudt:latexSymbol "$Y$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Admittance" ; + rdfs:isDefinedBy ; + rdfs:label "Admittance"@en ; + rdfs:seeAlso quantitykind:Impedance . + +quantitykind:AlphaDisintegrationEnergy + a qudt:QuantityKind ; + dcterms:description "The \"Alpha Disintegration Energy\" is the sum of the kinetic energy of the $\\alpha$-particle produced in the disintegration process and the recoil energy of the product atom in the reference frame in which the emitting nucleus is at rest before its disintegration."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:latexSymbol "$Q_a$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Alpha Disintegration Energy\" is the sum of the kinetic energy of the alpha-particle produced in the disintegration process and the recoil energy of the product atom in the reference frame in which the emitting nucleus is at rest before its disintegration." ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Alpha Disintegration Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:Altitude + a qudt:QuantityKind ; + dcterms:description "Altitude or height is defined based on the context in which it is used (aviation, geometry, geographical survey, sport, and more). As a general definition, altitude is a distance measurement, usually in the vertical or \"up\" direction, between a reference datum and a point or object. The reference datum also often varies according to the context. [Wikipedia]"^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Altitude"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Altitude or height is defined based on the context in which it is used (aviation, geometry, geographical survey, sport, and more). As a general definition, altitude is a distance measurement, usually in the vertical or \"up\" direction, between a reference datum and a point or object. The reference datum also often varies according to the context. [Wikipedia]" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Altitude"@en ; + skos:broader quantitykind:Length . + +quantitykind:AmbientPressure + a qudt:QuantityKind ; + dcterms:description """The ambient pressure on an object is the pressure of the surrounding medium, such as a gas or liquid, which comes into contact with the object. +The SI unit of pressure is the pascal (Pa), which is a very small unit relative to atmospheric pressure on Earth, so kilopascals ($kPa$) are more commonly used in this context. """^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:symbol "p_a" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Ambient Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:AmountOfBiologicallyActiveSubstance + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD370" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD370"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "amount of biologically active substance" . + +quantitykind:AmountOfCloudCover + a qudt:QuantityKind ; + qudt:applicableUnit unit:OKTA ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://windy.app/blog/okta-cloud-cover.html"^^xsd:anyURI ; + qudt:isoNormativeReference "https://library.wmo.int/viewer/68695/?offset=3#page=514&viewer=picture&o=bookmark&n=0&q="^^xsd:anyURI ; + qudt:plainTextDescription "The amount of the celestial dome covered by all clouds visible." ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfCloudCover" ; + rdfs:isDefinedBy ; + rdfs:label "Amount of cloud cover"@en . + +quantitykind:AmountOfSubstance + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Amount of Substance}$ is a standards-defined quantity that measures the size of an ensemble of elementary entities, + such as atoms, molecules, electrons, and other particles. + It is sometimes referred to as chemical amount. + + The International System of Units (SI) defines the amount of substance to be proportional to the number of elementary entities present. + The SI unit for amount of substance is mole. + It has the unit symbol $mol$. + + The mole is defined as the amount of substance that contains an equal number of elementary entities as there are atoms in 0.012kg of the isotope carbon-12. + This number is called Avogadro's number and has the value $6.02214179(30) \\times 10^{23}$. + + The only other unit of amount of substance in current use is the $pound-mole$ with the symbol $lb-mol$, + which is sometimes used in chemical engineering in the United States. + One $pound-mole$ is exactly $453.59237 mol$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL ; + qudt:applicableUnit unit:FemtoMOL ; + qudt:applicableUnit unit:IU ; + qudt:applicableUnit unit:KiloMOL ; + qudt:applicableUnit unit:MOL ; + qudt:applicableUnit unit:MOL_LB ; + qudt:applicableUnit unit:MicroMOL ; + qudt:applicableUnit unit:MilliMOL ; + qudt:applicableUnit unit:MilliOSM ; + qudt:applicableUnit unit:NanoMOL ; + qudt:applicableUnit unit:OSM ; + qudt:applicableUnit unit:PicoMOL ; + qudt:applicableUnit unit:SCF ; + qudt:applicableUnit unit:SCM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Amount_of_substance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD004" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Amount_of_substance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD004"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:AMSU ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Jumlah bahan"@ms ; + rdfs:label "Látkové množství"@cs ; + rdfs:label "Stoffmenge"@de ; + rdfs:label "amount of substance"@en ; + rdfs:label "anyagmennyiség"@hu ; + rdfs:label "cantidad de sustancia"@es ; + rdfs:label "cantitate de substanță"@ro ; + rdfs:label "liczność materii"@pl ; + rdfs:label "madde miktarı"@tr ; + rdfs:label "množina snovi"@sl ; + rdfs:label "quantidade de substância"@pt ; + rdfs:label "quantitas substantiae"@la ; + rdfs:label "quantità di sostanza"@it ; + rdfs:label "quantité de matière"@fr ; + rdfs:label "Ποσότητα Ουσίας"@el ; + rdfs:label "Количество вещества"@ru ; + rdfs:label "Количество вещество"@bg ; + rdfs:label "כמות חומר"@he ; + rdfs:label "كمية المادة"@ar ; + rdfs:label "مقدار ماده"@fa ; + rdfs:label "पदार्थ की मात्रा"@hi ; + rdfs:label "物質量"@ja ; + rdfs:label "物质的量"@zh ; + skos:altLabel "chemical amount"@en ; + skos:altLabel "jumlah kimia"@ms ; + skos:altLabel "quantità chimica"@it ; + skos:altLabel "quantità di materia"@it . + +quantitykind:AmountOfSubstanceConcentration + a qudt:QuantityKind ; + dcterms:description "\"Amount of Substance of Concentration\" is defined as the amount of a constituent divided by the volume of the mixture."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:exactMatch quantitykind:AmountOfSubstancePerVolume ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Amount_of_substance_concentration"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$C_B = \\frac{n_B}{V}$, where $n_B$ is the amount of substance $B$ and $V$ is the volume."^^qudt:LatexString ; + qudt:plainTextDescription "\"Amount of Substance of Concentration of B\" is defined as the amount of a constituent divided by the volume of the mixture." ; + qudt:siExactMatch si-quantity:AMSC ; + qudt:symbol "C_B" ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Amount of Substance of Concentration"@en ; + skos:broader quantitykind:Concentration . + +quantitykind:AmountOfSubstanceFraction + a qudt:QuantityKind ; + dcterms:description "\"Fractional Amount of Substance\" is defined as tthe amount of a constituent divided by the total amount of all constituents in a mixture."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Amount_fraction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$x_B = \\frac{n_B}{n}$, where $n_B$ is the amount of substance $B$ and $n$ is the total amount of substance."^^qudt:LatexString ; + qudt:plainTextDescription "\"Fractional Amount of Substance\" is defined as tthe amount of a constituent divided by the total amount of all constituents in a mixture." ; + qudt:symbol "X_B" ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstanceFraction" ; + rdfs:isDefinedBy ; + rdfs:label "Fractional Amount of Substance"@en . + +quantitykind:AmountOfSubstanceIonConcentration + a qudt:QuantityKind ; + dcterms:description "\"Ion Concentration\" is the moles of ions per volume of solution."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "\"Ion Concentration\" is the moles of ions per volume of solution." ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Concentration"@en ; + skos:broader quantitykind:Concentration . + +quantitykind:AmountOfSubstancePerMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiMOL-PER-KiloGM ; + qudt:applicableUnit unit:FemtoMOL-PER-KiloGM ; + qudt:applicableUnit unit:IU-PER-MilliGM ; + qudt:applicableUnit unit:KiloMOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL-PER-TONNE ; + qudt:applicableUnit unit:MOL_LB-PER-LB ; + qudt:applicableUnit unit:MicroMOL-PER-GM ; + qudt:applicableUnit unit:MicroMOL-PER-KiloGM ; + qudt:applicableUnit unit:MilliMOL-PER-GM ; + qudt:applicableUnit unit:MilliMOL-PER-KiloGM ; + qudt:applicableUnit unit:MilliOSM-PER-KiloGM ; + qudt:applicableUnit unit:NanoMOL-PER-GM ; + qudt:applicableUnit unit:NanoMOL-PER-KiloGM ; + qudt:applicableUnit unit:PicoMOL-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstancePerMass" ; + rdfs:isDefinedBy ; + rdfs:label "Amount of Substance per Mass"@en . + +quantitykind:AmountOfSubstancePerMassPressure + a qudt:QuantityKind ; + dcterms:description "The \"Variation of Molar Mass\" of a gas as a function of pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:MOL-PER-KiloGM-BAR ; + qudt:applicableUnit unit:MOL-PER-KiloGM-PA ; + qudt:hasDimensionVector qkdv:A1E0L1I0M-2H0T2D0 ; + qudt:plainTextDescription "The \"Variation of Molar Mass\" of a gas as a function of pressure." ; + qudt:qkdvDenominator qkdv:A0E0L-1I0M2H0T-2D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstancePerMassPressure" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Mass variation due to Pressure"@en . + +quantitykind:AmountOfSubstancePerVolume + a qudt:QuantityKind ; + dcterms:description "The amount of substance per volume is called the molar density. Molar density is an intensive property of a substance and depends on the temperature and pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:exactMatch quantitykind:AmountOfSubstanceConcentration ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://www.ask.com/answers/72367781/what-is-defined-as-the-amount-of-substance-per-unit-of-volume"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Molar_concentration"^^xsd:anyURI ; + qudt:plainTextDescription "The amount of substance per unit volume is called the molar density. Molar density is an intensive property of a substance and depends on the temperature and pressure." ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Amount of Substance per Volume"@en ; + skos:broader quantitykind:Concentration . + +quantitykind:Angle + a qudt:QuantityKind ; + dcterms:description "The abstract notion of angle. Narrow concepts include plane angle and solid angle. While both plane angle and solid angle are dimensionless, they are actually length/length and area/area respectively."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angle"^^xsd:anyURI ; + qudt:exactMatch quantitykind:PlaneAngle ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Angle"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:AngleOfAttack + a qudt:QuantityKind ; + dcterms:description "Angle of attack is the angle between the oncoming air or relative wind and a reference line on the airplane or wing."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "Angle of attack is the angle between the oncoming air or relative wind and a reference line on the airplane or wing." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Angle Of Attack"@en ; + skos:broader quantitykind:Angle . + +quantitykind:AngleOfOpticalRotation + a qudt:QuantityKind ; + dcterms:description "The \"Angle of Optical Rotation\" is the angle through which plane-polarized light is rotated clockwise, as seen when facing the light source, in passing through an optically active medium."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Optical_rotation"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Angle of Optical Rotation\" is the angle through which plane-polarized light is rotated clockwise, as seen when facing the light source, in passing through an optically active medium." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Angle of Optical Rotation"@en ; + skos:broader quantitykind:Angle . + +quantitykind:AngularAcceleration + a qudt:QuantityKind ; + dcterms:description "Angular acceleration is the rate of change of angular velocity over time. Measurement of the change made in the rate of change of an angle that a spinning object undergoes per unit time. It is a vector quantity. Also called Rotational acceleration. In SI units, it is measured in radians per second squared ($rad/s^2$), and is usually denoted by the Greek letter alpha."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-SEC2 ; + qudt:applicableUnit unit:RAD-PER-SEC2 ; + qudt:applicableUnit unit:REV-PER-MIN-SEC ; + qudt:applicableUnit unit:REV-PER-SEC2 ; + qudt:baseCGSUnitDimensions "U/T^2" ; + qudt:baseSIUnitDimensions "$/s^2$"^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angular_acceleration"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD006" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD006"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:ACCA ; + rdfs:comment "Applicable units are those of quantitykind:AngularAcceleration" ; + rdfs:isDefinedBy ; + rdfs:label "Accelerație unghiulară"@ro ; + rdfs:label "Açısal ivme"@tr ; + rdfs:label "Pecutan bersudut"@ms ; + rdfs:label "Przyspieszenie kątowe"@pl ; + rdfs:label "Winkelbeschleunigung"@de ; + rdfs:label "accelerazione angolare"@it ; + rdfs:label "accélération angulaire"@fr ; + rdfs:label "aceleración angular"@es ; + rdfs:label "aceleração angular"@pt ; + rdfs:label "angular acceleration"@en ; + rdfs:label "Úhlové zrychlení"@cs ; + rdfs:label "Угловое ускорение"@ru ; + rdfs:label "تسارع زاوي"@ar ; + rdfs:label "شتاب زاویه‌ای"@fa ; + rdfs:label "कोणीय त्वरण"@hi ; + rdfs:label "角加速度"@ja ; + rdfs:label "角加速度"@zh ; + skos:broader quantitykind:InverseTime_Squared . + +quantitykind:AngularCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Angular Cross-section\" is the cross-section for ejecting or scattering a particle into an elementary cone, divided by the solid angle $d\\Omega$ of that cone."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-SR ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD007" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD007"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\sigma = \\int \\sigma_\\Omega d\\Omega$"^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma_\\Omega$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:AngularCrossSection" ; + rdfs:isDefinedBy ; + rdfs:label "Angular Cross-section"@en ; + skos:closeMatch quantitykind:SpectralCrossSection . + +quantitykind:AngularDistance + a qudt:QuantityKind ; + dcterms:description "Angular distance travelled by orbiting vehicle measured from the azimuth of closest approach."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\theta$"^^qudt:LatexString ; + qudt:plainTextDescription "Angular distance travelled by orbiting vehicle measured from the azimuth of closest approach." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Angular Distance"@en ; + skos:broader quantitykind:Angle . + +quantitykind:AngularFrequency + a qudt:QuantityKind ; + dcterms:description "\"Angular frequency\", symbol $\\omega$ (also referred to by the terms angular speed, radial frequency, circular frequency, orbital frequency, radian frequency, and pulsatance) is a scalar measure of rotation rate. Angular frequency (or angular speed) is the magnitude of the vector quantity angular velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angular_frequency"^^xsd:anyURI ; + qudt:exactMatch quantitykind:AngularVelocity ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Angular_frequency"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\omega = 2\\pi f$, where $f$ is frequency."^^qudt:LatexString ; + qudt:latexSymbol "$\\omega$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:AngularFrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Kreisfrequenz"@de ; + rdfs:label "Pulsación"@fr ; + rdfs:label "angular frequency"@en ; + rdfs:label "frequenza angolare"@it ; + rdfs:label "frequência angular"@pt ; + rdfs:label "pulsación"@es ; + rdfs:label "pulsacja"@pl ; + rdfs:label "تردد زاوى"@ar ; + rdfs:label "角振動数"@ja ; + rdfs:label "角频率"@zh ; + rdfs:seeAlso quantitykind:RotationalFrequency ; + rdfs:seeAlso quantitykind:RotationalVelocity ; + skos:altLabel "Pulsatanzpulsation"@de ; + skos:altLabel "pulsatance"@en ; + skos:altLabel "pulsazione"@it ; + skos:altLabel "pulsação"@pt ; + skos:altLabel "نابض"@ar ; + skos:altLabel "角周波数"@ja ; + skos:altLabel "角速度"@zh ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:AngularImpulse + a qudt:QuantityKind ; + dcterms:description "The Angular Impulse, also known as angular momentum, is the moment of linear momentum around a point. It is defined as$H = \\int Mdt$, where $M$ is the moment of force and $t$ is time."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-SEC ; + qudt:applicableUnit unit:EV-SEC ; + qudt:applicableUnit unit:FT-LB_F-SEC ; + qudt:applicableUnit unit:J-SEC ; + qudt:applicableUnit unit:KiloGM-M2-PER-SEC ; + qudt:applicableUnit unit:N-M-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/AngularMomentum"^^xsd:anyURI ; + qudt:exactMatch quantitykind:AngularMomentum ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://emweb.unl.edu/NEGAHBAN/EM373/note13/note.htm"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:symbol "H" ; + rdfs:comment "Applicable units are those of quantitykind:AngularImpulse" ; + rdfs:isDefinedBy ; + rdfs:label "Drehstoß"@de ; + rdfs:label "angular impulse"@en ; + rdfs:label "impulsion angulaire"@fr ; + rdfs:label "impulso angolare"@it ; + rdfs:label "impulso angular"@es ; + rdfs:label "impulsão angular"@pt ; + rdfs:label "popęd kątowy"@pl ; + rdfs:label "نبضة دفعية زاوية"@ar ; + rdfs:label "角冲量;冲量矩"@zh ; + rdfs:label "角力積"@ja ; + skos:altLabel "Drehmomentstoß"@de . + +quantitykind:AngularMomentum + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Angular Momentum}$, $\\textit{Moment of Momentum}$, or $\\textit{Rotational Momentum}$, is a vector quantity that represents the product of a body's rotational inertia and rotational velocity about a particular axis. + The $\\textit{Angular Momentum}$ of an object rotating about some reference point is the measure of the extent to which the object will continue to rotate about that point unless acted upon by an external torque. + In particular, if a point mass rotates about an axis, then the angular momentum with respect to a point on the axis is related to the mass of the object, the velocity and the distance of the mass to the axis. + While the motion associated with linear momentum has no absolute frame of reference, the rotation associated with angular momentum is sometimes spoken of as being measured relative to the fixed stars. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-SEC ; + qudt:applicableUnit unit:EV-SEC ; + qudt:applicableUnit unit:FT-LB_F-SEC ; + qudt:applicableUnit unit:J-SEC ; + qudt:applicableUnit unit:KiloGM-M2-PER-SEC ; + qudt:applicableUnit unit:N-M-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angular_momentum"^^xsd:anyURI ; + qudt:exactMatch quantitykind:AngularImpulse ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Angular_momentum"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$L = I\\omega$, where $I$ is the moment of inertia, and $\\omega$ is the angular velocity."^^qudt:LatexString ; + qudt:plainTextDescription "Angular Momentum of an object rotating about some reference point is the measure of the extent to which the object will continue to rotate about that point unless acted upon by an external torque. In particular, if a point mass rotates about an axis, then the angular momentum with respect to a point on the axis is related to the mass of the object, the velocity and the distance of the mass to the axis. While the motion associated with linear momentum has no absolute frame of reference, the rotation associated with angular momentum is sometimes spoken of as being measured relative to the fixed stars. $\\textit{Angular Momentum}$, $\\textit{Moment of Momentum}, or $\\textit{Rotational Momentum\", is a vector quantity that represents the product of a body's rotational inertia and rotational velocity about a particular axis." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:AngularMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Angular Momentum"@en . + +quantitykind:AngularMomentumPerAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:N-M-SEC-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:AngularMomentumPerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Angular Momentum per Angle"@en . + +quantitykind:AngularReciprocalLatticeVector + a qudt:QuantityKind ; + dcterms:description "\"Angular Reciprocal Lattice Vector\" is a vector whose scalar products with all fundamental lattice vectors are integral multiples of $2\\pi$."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:AngularReciprocalLatticeVector" ; + rdfs:isDefinedBy ; + rdfs:label "Angular Reciprocal Lattice Vector"@en . + +quantitykind:AngularVelocity + a qudt:QuantityKind ; + dcterms:description "Angular Velocity refers to how fast an object rotates or revolves relative to another point."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angular_velocity"^^xsd:anyURI ; + qudt:exactMatch quantitykind:AngularFrequency ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD009" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD009"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Angular_velocity"^^xsd:anyURI ; + qudt:plainTextDescription "The change of angle per unit time; specifically, in celestial mechanics, the change in angle of the radius vector per unit time." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siExactMatch si-quantity:VELA ; + rdfs:comment "Applicable units are those of quantitykind:AngularVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Açısal hız"@tr ; + rdfs:label "Halaju bersudut"@ms ; + rdfs:label "Prędkość kątowa"@pl ; + rdfs:label "Viteză unghiulară"@ro ; + rdfs:label "Winkelgeschwindigkeit"@de ; + rdfs:label "angular velocity"@en ; + rdfs:label "kotna hitrost"@sl ; + rdfs:label "velocidad angular"@es ; + rdfs:label "velocidade angular"@pt ; + rdfs:label "velocità angolare"@it ; + rdfs:label "vitesse angulaire"@fr ; + rdfs:label "Úhlová rychlost"@cs ; + rdfs:label "Угловая скорость"@ru ; + rdfs:label "سرعة زاوية"@ar ; + rdfs:label "سرعت زاویه‌ای"@fa ; + rdfs:label "कोणीय वेग"@hi ; + rdfs:label "角速度"@ja ; + rdfs:label "角速度"@zh ; + rdfs:seeAlso quantitykind:RotationalFrequency ; + rdfs:seeAlso quantitykind:RotationalVelocity ; + skos:altLabel "angular speed"@en ; + skos:altLabel "kelajuan bersudut"@ms . + +quantitykind:AngularWavenumber + a qudt:QuantityKind ; + dcterms:description "\"wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-M ; + qudt:applicableUnit unit:RAD-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Wavenumber"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition """$k = \\frac{2\\pi}{\\lambda}= \\frac{2\\pi\\upsilon}{\\upsilon_p}=\\frac{\\omega}{\\upsilon_p}$, where $\\upsilon$ is the frequency of the wave, $\\lambda$ is the wavelength, $\\omega = 2\\pi \\upsilon$ is the angular frequency of the wave, and $\\upsilon_p$ is the phase velocity of the wave. + +Alternatively: + +$k = \\frac{p}{\\hbar}$, where $p$ is the linear momentum of quasi free electrons in an electron gas and $\\hbar$ is the reduced Planck constant ($h$ divided by $2\\pi$); for phonons, its magnitude is $k = \\frac{2\\pi}{\\lambda}$, where $\\lambda$ is the wavelength of the lattice vibrations."""^^qudt:LatexString ; + qudt:plainTextDescription "\"wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector." ; + qudt:symbol "k" ; + rdfs:comment "Applicable units are those of quantitykind:AngularWavenumber" ; + rdfs:isDefinedBy ; + rdfs:label "Kreisrepetenz"@de ; + rdfs:label "angular wavenumber"@en ; + rdfs:label "liczba falowa kątowa"@pl ; + rdfs:label "nombre d'onde angulaire"@fr ; + rdfs:label "numero d'onda angolare"@it ; + rdfs:label "número de onda angular"@es ; + rdfs:label "número de onda angular"@pt ; + rdfs:label "عدد موجى زاوى"@ar ; + rdfs:label "角波数"@ja ; + rdfs:label "角波数"@zh ; + skos:altLabel "Kreiswellenzahl"@de ; + skos:altLabel "angular repetency"@en ; + skos:altLabel "repetencja kątowa"@pl ; + skos:altLabel "repetência angular"@pt ; + skos:altLabel "répétence angulaire"@fr ; + skos:altLabel "تكرار زاوى"@ar ; + skos:broader quantitykind:InverseLength ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:ApogeeRadius + a qudt:QuantityKind ; + dcterms:description "Apogee radius of an elliptical orbit"^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Apogee radius of an elliptical orbit" ; + qudt:symbol "r_2" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Apogee Radius"@en ; + skos:broader quantitykind:Radius . + +quantitykind:ApparentPower + a qudt:QuantityKind ; + dcterms:description "\"Apparent Power\" is the product of the rms voltage $U$ between the terminals of a two-terminal element or two-terminal circuit and the rms electric current I in the element or circuit. Under sinusoidal conditions, the apparent power is the modulus of the complex power."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaVA ; + qudt:applicableUnit unit:GigaVA ; + qudt:applicableUnit unit:KiloVA ; + qudt:applicableUnit unit:MegaVA ; + qudt:applicableUnit unit:MicroVA ; + qudt:applicableUnit unit:MilliVA ; + qudt:applicableUnit unit:NanoVA ; + qudt:applicableUnit unit:PetaVA ; + qudt:applicableUnit unit:PicoVA ; + qudt:applicableUnit unit:TeraVA ; + qudt:applicableUnit unit:VA ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD011" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-41"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD011"^^xsd:anyURI ; + qudt:latexDefinition "$\\left | \\underline{S} \\right | = UI$, where $U$ is rms value of voltage and $I$ is rms value of electric current."^^qudt:LatexString ; + qudt:latexSymbol "$\\left | \\underline{S} \\right |$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ComplexPower" ; + rdfs:isDefinedBy ; + rdfs:label "Scheinleistung"@de ; + rdfs:label "apparent power"@en ; + rdfs:label "moc pozorna"@pl ; + rdfs:label "potencia aparente"@es ; + rdfs:label "potenza apparente"@it ; + rdfs:label "potência aparente"@pt ; + rdfs:label "puissance apparente"@fr ; + rdfs:label "القدرة الظاهرية"@ar ; + rdfs:label "皮相電力"@ja ; + rdfs:label "视在功率"@zh ; + rdfs:seeAlso quantitykind:ElectricCurrent ; + rdfs:seeAlso quantitykind:Voltage ; + skos:altLabel "表观功率"@zh ; + skos:broader quantitykind:ComplexPower . + +quantitykind:Area + a qudt:QuantityKind ; + dcterms:description "Area is a quantity expressing the two-dimensional size of a defined part of a surface, typically a region bounded by a closed curve."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:baseCGSUnitDimensions "cm^2" ; + qudt:baseSIUnitDimensions "$m^2$"^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Area"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD182" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD182"^^xsd:anyURI ; + qudt:plainTextDescription "Area is a quantity expressing the two-dimensional size of a defined part of a surface, typically a region bounded by a closed curve." ; + qudt:siExactMatch si-quantity:AREA ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Fläche"@de ; + rdfs:label "Keluasan"@ms ; + rdfs:label "aire"@fr ; + rdfs:label "alan"@tr ; + rdfs:label "area"@en ; + rdfs:label "area"@it ; + rdfs:label "arie"@ro ; + rdfs:label "plocha"@cs ; + rdfs:label "pole powierzchni"@pl ; + rdfs:label "površina"@sl ; + rdfs:label "área"@es ; + rdfs:label "área"@pt ; + rdfs:label "Ταχύτητα"@el ; + rdfs:label "Площ"@bg ; + rdfs:label "Площадь"@ru ; + rdfs:label "שטח"@he ; + rdfs:label "مساحة"@ar ; + rdfs:label "مساحت"@fa ; + rdfs:label "क्षेत्रफल"@hi ; + rdfs:label "面积"@zh ; + rdfs:label "面積"@ja ; + skos:altLabel "superficie"@fr . + +quantitykind:AreaAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:M2-SR ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Area Angle"@en . + +quantitykind:AreaBitDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:BIT-PER-M2 ; + qudt:applicableUnit unit:ExbiBIT-PER-M2 ; + qudt:applicableUnit unit:GibiBIT-PER-M2 ; + qudt:applicableUnit unit:KibiBIT-PER-M2 ; + qudt:applicableUnit unit:MebiBIT-PER-M2 ; + qudt:applicableUnit unit:PebiBIT-PER-M2 ; + qudt:applicableUnit unit:TebiBIT-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD012" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD012"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:AreaBitDensity" ; + rdfs:isDefinedBy ; + rdfs:label "areic bit density" . + +quantitykind:AreaChargeDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD013" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD013"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "areic charge density" ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:AreaMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:GM-PER-CentiM2 ; + qudt:applicableUnit unit:GM-PER-HA ; + qudt:applicableUnit unit:GM-PER-M2 ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-FT2 ; + qudt:applicableUnit unit:KiloGM-PER-HA ; + qudt:applicableUnit unit:KiloGM-PER-KiloM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-AC ; + qudt:applicableUnit unit:LB-PER-FT2 ; + qudt:applicableUnit unit:LB-PER-IN2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:MegaGM-PER-HA ; + qudt:applicableUnit unit:MicroGM-PER-CentiM2 ; + qudt:applicableUnit unit:MicroGM-PER-IN2 ; + qudt:applicableUnit unit:MilliGM-PER-CentiM2 ; + qudt:applicableUnit unit:MilliGM-PER-DeciM2 ; + qudt:applicableUnit unit:MilliGM-PER-HA ; + qudt:applicableUnit unit:MilliGM-PER-M2 ; + qudt:applicableUnit unit:NanoGM-PER-CentiM2 ; + qudt:applicableUnit unit:OZ-PER-FT2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:applicableUnit unit:OZ-PER-YD2 ; + qudt:applicableUnit unit:SLUG-PER-FT2 ; + qudt:applicableUnit unit:TONNE-PER-HA ; + qudt:applicableUnit unit:TON_Metric-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD014" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD014"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MassPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "areic mass" ; + skos:broader quantitykind:MassPerArea . + +quantitykind:AreaPerLength + a qudt:QuantityKind ; + qudt:applicableUnit unit:M2-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www.easysteel.co.nz/web/assets/EasysteelSurfaceAreaofSections-Feb14.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Measure used to indicate the surface area of structural steel per unit length of the steel part." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaPerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Fläche pro Längeneinheit"@de ; + rdfs:label "area per length"@en . + +quantitykind:AreaPerPower + a qudt:QuantityKind ; + qudt:applicableUnit unit:M2-PER-KiloW ; + qudt:applicableUnit unit:M2-PER-W ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T3D0 ; + qudt:plainTextDescription "The ratio of an area and the power required for maintaining room temperature at a given level" ; + rdfs:comment "Applicable units are those of quantitykind:AreaPerPower" ; + rdfs:isDefinedBy ; + rdfs:label "Fläche pro Heizlast"@de ; + rdfs:label "area per heating load"@en . + +quantitykind:AreaPerTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM2-PER-SEC ; + qudt:applicableUnit unit:FT2-PER-HR ; + qudt:applicableUnit unit:FT2-PER-SEC ; + qudt:applicableUnit unit:IN2-PER-SEC ; + qudt:applicableUnit unit:M2-HZ ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:applicableUnit unit:MilliM2-PER-SEC ; + qudt:baseImperialUnitDimensions "$ft^2/s$"^^qudt:LatexString ; + qudt:baseSIUnitDimensions "$m^2/s$"^^qudt:LatexString ; + qudt:baseUSCustomaryUnitDimensions "$L^2/T$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaPerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Area per Time"@en . + +quantitykind:AreaRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:M2-PER-HA ; + qudt:applicableUnit unit:M2-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Area Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:AreaTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:FT2-DEG_F ; + qudt:applicableUnit unit:M2-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Area Temperature"@en . + +quantitykind:AreaThermalExpansion + a qudt:QuantityKind ; + dcterms:description "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_expansion#Area"^^xsd:anyURI ; + qudt:plainTextDescription "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion." ; + rdfs:comment "Applicable units are those of quantitykind:AreaThermalExpansion" ; + rdfs:isDefinedBy ; + rdfs:label "Area Thermal Expansion"@en . + +quantitykind:AreaTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM2-MIN ; + qudt:applicableUnit unit:CentiM2-SEC ; + qudt:applicableUnit unit:HR-FT2 ; + qudt:applicableUnit unit:SEC-FT2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaTime" ; + rdfs:isDefinedBy ; + rdfs:label "Area Time"@en . + +quantitykind:AreaTimeTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:FT2-HR-DEG_F ; + qudt:applicableUnit unit:FT2-SEC-DEG_F ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:AreaTimeTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Area Time Temperature"@en . + +quantitykind:AreicChargeDensityOrElectricFluxDensityOrElectricPolarization + a qudt:QuantityKind ; + dcterms:description "charge Q presented on an area of size A divided by the area A or vector quantity obtained at a given point by adding the electric polarization P to the product of the electric field strength E and the electric constant (permittivity) ε₀"@en ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:plainTextDescription "auf einer Fläche mit dem Flächeninhalt A vorhandenen Ladung Q dividiert durch den Flächeninhalt A oder vektorielle Größe, die für einen gegebenen Punkt gleich der Summe der elektrischen Polarisation P und des Produkts aus der elektrischen Feldstärke E und der elektrischen Feldkonstante (Permittivität) ε₀ ist oder räumliche Dichte des elektrischen Moments molekularer Dipole"@de ; + qudt:symbol "0173-1#Z4-BAJ320#002" ; + rdfs:isDefinedBy ; + rdfs:label "areic charge density or electric flux density or electric polarization"@en-US . + +quantitykind:AreicDataVolume + a qudt:QuantityKind ; + dcterms:description "volume of data, which is usually dependent on the respective complexity of the information or its coding procedure, divided by the related area"@en ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch die zugehörige Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ321#002" ; + rdfs:isDefinedBy ; + rdfs:label "areic data volume"@en-US . + +quantitykind:AreicEnergyFlow + a qudt:QuantityKind ; + dcterms:description "energy in a defined direction of propagation through a surface perpendicular to this, divided by its area"@en ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:plainTextDescription "Leistung in festgelegter Ausbreitungsrichtung durch ein dazu senkrechtes Oberflächenelement, dividiert durch dessen Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ322#002" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "areic energy flow"@en-US ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:AreicHeatFlowRate + a qudt:QuantityKind ; + dcterms:description "Density of heat flow rate."^^qudt:LatexString ; + qudt:abbreviation "heat-flow-rate" ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rate_of_heat_flow"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = \\frac{\\Phi}{A}$, where $\\Phi$ is heat flow rate and $A$ is area."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "Density of heat flow rate." ; + qudt:symbol "φ" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Aeric Heat Flow Rate"@en ; + skos:broader quantitykind:PowerPerArea ; + skos:closeMatch . + +quantitykind:AreicMass + a qudt:QuantityKind ; + dcterms:description "mass divided by the related area"@en ; + qudt:applicableUnit unit:GM-PER-CentiM2 ; + qudt:applicableUnit unit:GM-PER-HA ; + qudt:applicableUnit unit:GM-PER-M2 ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-FT2 ; + qudt:applicableUnit unit:KiloGM-PER-HA ; + qudt:applicableUnit unit:KiloGM-PER-KiloM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-AC ; + qudt:applicableUnit unit:LB-PER-FT2 ; + qudt:applicableUnit unit:LB-PER-IN2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:MegaGM-PER-HA ; + qudt:applicableUnit unit:MicroGM-PER-CentiM2 ; + qudt:applicableUnit unit:MicroGM-PER-IN2 ; + qudt:applicableUnit unit:MilliGM-PER-CentiM2 ; + qudt:applicableUnit unit:MilliGM-PER-DeciM2 ; + qudt:applicableUnit unit:MilliGM-PER-HA ; + qudt:applicableUnit unit:MilliGM-PER-M2 ; + qudt:applicableUnit unit:NanoGM-PER-CentiM2 ; + qudt:applicableUnit unit:OZ-PER-FT2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:applicableUnit unit:OZ-PER-YD2 ; + qudt:applicableUnit unit:SLUG-PER-FT2 ; + qudt:applicableUnit unit:TONNE-PER-HA ; + qudt:applicableUnit unit:TON_Metric-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:plainTextDescription "Masse dividiert durch die zugehörige Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ288#004" ; + rdfs:comment "Applicable units are those of quantitykind:MassPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "areic mass"@en-US ; + skos:broader quantitykind:MassPerArea . + +quantitykind:AreicTorque + a qudt:QuantityKind ; + dcterms:description "ratio of a torque acting on a surface and causing a rotation or shearing divided by this area"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:plainTextDescription "Quotient aus dem auf eine Fläche wirkenden, eine Verdrehung bzw. Abscherung verursachenden Drehmoment dividiert durch diese Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ420#001" ; + rdfs:isDefinedBy ; + rdfs:label "areic torque"@en-US . + +quantitykind:Asset + a qudt:QuantityKind ; + dcterms:description "An Asset is an economic resource owned by a business or company. Simply stated, assets are things of value that can be readily converted into cash (although cash itself is also considered an asset)."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "An Asset is an economic resource owned by a business or company. Simply stated, assets are things of value that can be readily converted into cash (although cash itself is also considered an asset)." ; + rdfs:isDefinedBy ; + rdfs:label "Asset"@en . + +quantitykind:AtmosphericHydroxylationRate + a qudt:QuantityKind ; + dcterms:description "A second order reaction rate constant that is a specific second order reaction rate constant that governs the kinetics of an atmospheric, gas-phase reaction between hydroxyl radicals and an organic chemical."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-MOL-SEC ; + qudt:applicableUnit unit:L-PER-MOL-SEC ; + qudt:applicableUnit unit:M3-PER-MOL-SEC ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ; + qudt:plainTextDescription "A second order reaction rate constant that is a specific second order reaction rate constant that governs the kinetics of an atmospheric, gas-phase reaction between hydroxyl radicals and an organic chemical." ; + rdfs:comment "Applicable units are those of quantitykind:AtmosphericHydroxylationRate" ; + rdfs:isDefinedBy ; + rdfs:label "Atmospheric Hydroxylation Rate"@en ; + skos:broader quantitykind:SecondOrderReactionRateConstant . + +quantitykind:AtmosphericPressure + a qudt:QuantityKind ; + dcterms:description "The pressure exerted by the weight of the air above it at any point on the earth's surface. At sea level the atmosphere will support a column of mercury about $760 mm$ high. This decreases with increasing altitude. The standard value for the atmospheric pressure at sea level in SI units is $101,325 pascals$."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atmospheric_pressure"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "https://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Atmospheric Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:AtomScatteringFactor + a qudt:QuantityKind ; + dcterms:description "\"Atom Scattering Factor\" is measure of the scattering power of an isolated atom."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://reference.iucr.org/dictionary/Atomic_scattering_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$f = \\frac{E_a}{E_e}$, where $E_a$ is the radiation amplitude scattered by the atom and $E_e$ is the radiation ampliture scattered by a single electron."^^qudt:LatexString ; + qudt:plainTextDescription "\"Atom Scattering Factor\" is measure of the scattering power of an isolated atom." ; + qudt:symbol "f" ; + rdfs:comment "Applicable units are those of quantitykind:AtomScatteringFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Atom Scattering Factor"@en . + +quantitykind:AtomicAttenuationCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Atomic Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per the number of atoms in the substance."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_a = -\\frac{\\mu}{n}$, where $\\mu$ is the linear attenuation coefficient and $n$ is the number density of the atoms in the substance."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Atomic Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per the number of atoms in the substance." ; + qudt:symbol "μₐ" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Atomic Attenuation Coefficient"@en ; + skos:broader quantitykind:Area ; + skos:closeMatch quantitykind:MolarAttenuationCoefficient . + +quantitykind:AtomicCharge + a qudt:QuantityKind ; + dcterms:description "The electric charge of an ion, equal to the number of electrons the atom has gained or lost in its ionization multiplied by the charge on one electron."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR ; + qudt:applicableUnit unit:A-SEC ; + qudt:applicableUnit unit:AttoC ; + qudt:applicableUnit unit:C ; + qudt:applicableUnit unit:C_Ab ; + qudt:applicableUnit unit:C_Stat ; + qudt:applicableUnit unit:CentiC ; + qudt:applicableUnit unit:DecaC ; + qudt:applicableUnit unit:DeciC ; + qudt:applicableUnit unit:E ; + qudt:applicableUnit unit:ElementaryCharge ; + qudt:applicableUnit unit:ExaC ; + qudt:applicableUnit unit:F ; + qudt:applicableUnit unit:FR ; + qudt:applicableUnit unit:FemtoC ; + qudt:applicableUnit unit:GigaC ; + qudt:applicableUnit unit:HectoC ; + qudt:applicableUnit unit:KiloA-HR ; + qudt:applicableUnit unit:KiloC ; + qudt:applicableUnit unit:KiloJ-PER-KiloV ; + qudt:applicableUnit unit:MegaC ; + qudt:applicableUnit unit:MicroC ; + qudt:applicableUnit unit:MilliA-HR ; + qudt:applicableUnit unit:MilliA-SEC ; + qudt:applicableUnit unit:MilliC ; + qudt:applicableUnit unit:NanoC ; + qudt:applicableUnit unit:PetaC ; + qudt:applicableUnit unit:PicoC ; + qudt:applicableUnit unit:PlanckCharge ; + qudt:applicableUnit unit:TeraC ; + qudt:applicableUnit unit:YoctoC ; + qudt:applicableUnit unit:YottaC ; + qudt:applicableUnit unit:ZeptoC ; + qudt:applicableUnit unit:ZettaC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:informativeReference "http://www.answers.com/topic/atomic-charge"^^xsd:anyURI ; + qudt:plainTextDescription "The electric charge of an ion, equal to the number of electrons the atom has gained or lost in its ionization multiplied by the charge on one electron." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Atomic Charge"@en ; + skos:broader quantitykind:ElectricCharge . + +quantitykind:AtomicEnergy + a qudt:QuantityKind ; + dcterms:description "scalar quantity of elementary particles which is retained within a system following any change and, as saved energy, constitutes the capability of a physical system to carry out work"@en ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "skalare Größe von Elementarteilchen, die bei beliebiger Umwandlung innerhalb eines Systems erhalten bleibt und als gespeichertes Arbeitsvermögen die Fähigkeit eines physikalischen Systems darstellt, Arbeit zu verrichten"@de ; + qudt:symbol "0173-1#Z4-BAJ291#002" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "atomic energy"@en-US ; + skos:broader quantitykind:Energy . + +quantitykind:AtomicMass + a qudt:QuantityKind ; + dcterms:description "The \"Atomic Mass\" is the mass of a specific isotope, most often expressed in unified atomic mass units."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Atomic Mass\" is the mass of a specific isotope, most often expressed in unified atomic mass units." ; + qudt:symbol "m_a" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Atomic Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:AtomicNumber + a qudt:QuantityKind ; + dcterms:description "The \"Atomic Number\", also known as the proton number, is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. A nuclide is a species of atom with specified numbers of protons and neutrons. Nuclides with the same value of Z but different values of N are called isotopes of an element. The ordinal number of an element in the periodic table is equal to the atomic number. The atomic number equals the charge of the nucleus in units of the elementary charge."^^qudt:LatexString ; + qudt:applicableUnit unit:Z ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_number"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Atomic Number\", also known as the proton number, is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. A nuclide is a species of atom with specified numbers of protons and neutrons. Nuclides with the same value of Z but different values of N are called isotopes of an element. The ordinal number of an element in the periodic table is equal to the atomic number. The atomic number equals the charge of the nucleus in units of the elementary charge." ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:AtomicNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Atomic Number"@en ; + skos:broader quantitykind:Count . + +quantitykind:AtomicStoppingPower + a qudt:QuantityKind ; + dcterms:description "ratio of the linear stopping power to the number density of the atoms in the medium"@en ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:plainTextDescription "Quotient aus dem linearen Bremsvermögen und der Anzahldichte der Atome in dem Medium"@de ; + qudt:symbol "0173-1#Z4-BAJ292#002" ; + rdfs:isDefinedBy ; + rdfs:label "atomic stopping power"@en-US . + +quantitykind:AttenuationCoefficient + a qudt:QuantityKind ; + dcterms:description "The attenuation coefficient is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter. A large attenuation coefficient means that the beam is quickly \"attenuated\" (weakened) as it passes through the medium, and a small attenuation coefficient means that the medium is relatively transparent to the beam. The Attenuation Coefficient is also called linear attenuation coefficient, narrow beam attenuation coefficient, or absorption coefficient."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:applicableUnit unit:PERCENT-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ; + qudt:latexDefinition "$F(x) = Ae^{-\\alpha x} \\cos{[\\beta (x - x_0)]}$, then $\\alpha$ is the attenuation coefficient and $\\beta$ is the phase coefficient."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "The attenuation coefficient is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter. A large attenuation coefficient means that the beam is quickly \"attenuated\" (weakened) as it passes through the medium, and a small attenuation coefficient means that the medium is relatively transparent to the beam. The Attenuation Coefficient is also called linear attenuation coefficient, narrow beam attenuation coefficient, or absorption coefficient." ; + rdfs:comment "Applicable units are those of quantitykind:AttenuationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Attenuation Coefficient"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:AuditoryThresholds + a qudt:QuantityKind ; + dcterms:description "\"Auditory Thresholds\" is the thresholds of sensitivity to auditory signals and other input to the ear or the sense of hearing."^^qudt:LatexString ; + qudt:applicableUnit unit:B ; + qudt:applicableUnit unit:DeciB ; + qudt:applicableUnit unit:DeciB_A ; + qudt:applicableUnit unit:DeciB_ISO ; + qudt:applicableUnit unit:DeciB_M ; + qudt:applicableUnit unit:DeciB_Z ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_a}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Auditory Thresholds\" is the thresholds of sensitivity to auditory signals and other input to the ear or the sense of hearing." ; + rdfs:comment "Applicable units are those of quantitykind:SoundPowerLevel" ; + rdfs:isDefinedBy ; + rdfs:label "Auditory Thresholds"@en ; + skos:broader quantitykind:SoundPowerLevel . + +quantitykind:AuxillaryMagneticField + a qudt:QuantityKind ; + dcterms:description "Magnetic Fields surround magnetic materials and electric currents and are detected by the force they exert on other magnetic materials and moving electric charges. The electric and magnetic fields are two interrelated aspects of a single object, called the electromagnetic field. A pure electric field in one reference frame is observed as a combination of both an electric field and a magnetic field in a moving reference frame. The Auxillary Magnetic Field, H characterizes how the true Magnetic Field B influences the organization of magnetic dipoles in a given medium."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:AT-PER-IN ; + qudt:applicableUnit unit:AT-PER-M ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:applicableUnit unit:OERSTED ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:latexSymbol "H"^^qudt:LatexString ; + qudt:plainTextDescription "Magnetic Fields surround magnetic materials and electric currents and are detected by the force they exert on other magnetic materials and moving electric charges. The electric and magnetic fields are two interrelated aspects of a single object, called the electromagnetic field. A pure electric field in one reference frame is observed as a combination of both an electric field and a magnetic field in a moving reference frame. The Auxillary Magnetic Field, H characterizes how the true Magnetic Field B influences the organization of magnetic dipoles in a given medium." ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFieldStrength_H" ; + rdfs:isDefinedBy ; + rdfs:label "Auxillary Magnetic Field"@en ; + skos:broader quantitykind:MagneticFieldStrength_H . + +quantitykind:AverageEnergyLossPerElementaryChargeProduced + a qudt:QuantityKind ; + dcterms:description "\"Average Energy Loss per Elementary Charge Produced\" is also referred to as average energy loss per ion pair formed."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:latexDefinition "$W_i = \\frac{E_k}{N_i}$, where $E_k$ is the initial kinetic energy of an ionizing charged particle and $N_i$ is the total ionization produced by that particle."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Average Energy Loss per Elementary Charge Produced\" is also referred to as average energy loss per ion pair formed." ; + qudt:symbol "W_i" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Average Energy Loss per Elementary Charge Produced"@en ; + skos:broader quantitykind:Energy . + +quantitykind:AverageHeadEndPressure + a qudt:QuantityKind ; + qudt:abbreviation "AHEP" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Average Head End Pressure"@en ; + skos:broader quantitykind:HeadEndPressure . + +quantitykind:AverageLogarithmicEnergyDecrement + a qudt:QuantityKind ; + dcterms:description "\"Average Logarithmic Energy Decrement\" is a measure of the amount of energy a neutron loses upon colliding with various nuclei. It is the average value of the increase in lethargy in elastic collisions between neutrons and nuclei whose kinetic energy is negligible compared with that of the neutrons."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://everything2.com/title/Average+logarithmic+energy+decrement+per+collision"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\xi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Average Logarithmic Energy Decrement\" is a measure of the amount of energy a neutron loses upon colliding with various nuclei. It is the average value of the increase in lethargy in elastic collisions between neutrons and nuclei whose kinetic energy is negligible compared with that of the neutrons." ; + rdfs:comment "Applicable units are those of quantitykind:AverageLogarithmicEnergyDecrement" ; + rdfs:isDefinedBy ; + rdfs:label "Average Logarithmic Energy Decrement"@en . + +quantitykind:AverageSpecificImpulse + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Avg Specific Impulse (lbf-sec/lbm) " ; + rdfs:isDefinedBy ; + rdfs:label "Average Specific Impulse"@en ; + skos:broader quantitykind:SpecificImpulse . + +quantitykind:AverageVacuumThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Average Vacuum Thrust"@en ; + skos:altLabel "AVT" ; + skos:broader quantitykind:VacuumThrust . + +quantitykind:Azimuth + a qudt:QuantityKind ; + dcterms:description """The horizontal angle between an object's orientation frame and a cardinal direction, generally north. + In the context of architecture, this would refer to the direction a structure faces relative to the direction north.""" ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription """The horizontal angle between an object and a cardinal direction, generally north. + In the context of architecture, this would refer to the direction a structure faces relative to the direction north.""" ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Azimuth"@en ; + skos:broader quantitykind:Angle . + +quantitykind:BandwidthDistanceProduct + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD016" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD016"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "bandwidth distance product" . + +quantitykind:BandwidthLengthProduct + a qudt:QuantityKind ; + dcterms:description "parameter of transmission media for determination of frequency and length restrictions as reciprocal value of the multimode distortion corresponding to the product of maximum pulse frequency and maximum transmission distance"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Parameter von Übertragungsmedien zur Bestimmung der Frequenz- und Längenrestriktionen als reziproke Wert der Modendispersion entsprechend dem Produkt aus maximaler Impulsfrequenz mal maximaler Übertragungsstrecke"@de ; + qudt:symbol "0173-1#Z4-BAJ293#003" ; + rdfs:isDefinedBy ; + rdfs:label "bandwidth length product"@en-US . + +quantitykind:Basicity + a qudt:QuantityKind ; + dcterms:description """ + Chemicals or substances having a $pH$ higher than 7 are said to be basic; + higher $pH$ means higher basicity. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PH ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Base_(chemistry)"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/PH"^^xsd:anyURI ; + qudt:informativeReference "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Chemicals or substances having a pH higher than 7 are said to be basic; higher pH means higher basicity." ; + rdfs:comment "Applicable units are those of quantitykind:Basicity" ; + rdfs:isDefinedBy ; + rdfs:label "Basicity"@en ; + rdfs:seeAlso quantitykind:Acidity . + +quantitykind:BatteryCapacity + a qudt:QuantityKind ; + dcterms:description "quantity of electricity or electrical charge which a fully charged battery can supply under specified conditions as a product of discharge current and discharge time"@en ; + qudt:applicableUnit unit:A-MIN ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD017" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD017"^^xsd:anyURI ; + qudt:plainTextDescription "Elektrizitätsmenge oder elektrische Ladung, die eine vollgeladenen Batterie unter festgelegten Bedingungen abgeben kann als Produkt aus Entladestrom und Entladezeit"@de ; + qudt:symbol "0173-1#Z4-BAJ270#003" ; + rdfs:comment "Applicable units are those of quantitykind:BatteryCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "battery capacity" ; + rdfs:label "battery capacity"@en-US . + +quantitykind:BendingMomentOfForce + a qudt:QuantityKind ; + dcterms:description "A bending moment exists in a structural element when a moment is applied to the element so that the element bends. It is the component of moment of force perpendicular to the longitudinal axis of a beam or a shaft."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN-M ; + qudt:applicableUnit unit:DYN-CentiM ; + qudt:applicableUnit unit:DYN-M ; + qudt:applicableUnit unit:DeciN-M ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:IN-PDL ; + qudt:applicableUnit unit:KiloGM_F-M ; + qudt:applicableUnit unit:KiloN-M ; + qudt:applicableUnit unit:LB_F-FT ; + qudt:applicableUnit unit:LB_F-IN ; + qudt:applicableUnit unit:MegaN-M ; + qudt:applicableUnit unit:MicroN-M ; + qudt:applicableUnit unit:MilliN-M ; + qudt:applicableUnit unit:N-CentiM ; + qudt:applicableUnit unit:N-M ; + qudt:applicableUnit unit:OZ_F-IN ; + qudt:applicableUnit unit:PDL-FT ; + qudt:applicableUnit unit:PDL-IN ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Torque"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bending_moment"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$M_b = M \\cdot e_Q$, where $M$ is the momentof force and $e_Q$ is a unit vector directed along a $Q-axis$ with respect to which the torque is considered."^^qudt:LatexString ; + qudt:plainTextDescription "A bending moment exists in a structural element when a moment is applied to the element so that the element bends. It is the component of moment of force perpendicular to the longitudinal axis of a beam or a shaft." ; + qudt:symbol "M_b" ; + rdfs:comment "Applicable units are those of quantitykind:Torque" ; + rdfs:isDefinedBy ; + rdfs:label "Bending Moment of Force"@en ; + skos:broader quantitykind:Torque . + +quantitykind:BetaDisintegrationEnergy + a qudt:QuantityKind ; + dcterms:description "\"Beta Disintegration Energy\" is the energy released by a beta particle radioactive decay. It is the sum of the maximum beta-particle kinetic energy and the recoil energy of the atom produced in the reference frame in which the emitting nucleus is at rest before its disintegration."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Decay_energy"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Beta Disintegration Energy\" is the energy released by a beta particle radioactive decay. It is the sum of the maximum beta-particle kinetic energy and the recoil energy of the atom produced in the reference frame in which the emitting nucleus is at rest before its disintegration." ; + qudt:symbol "Qᵦ" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Beta Disintegration Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:BevelGearPitchAngle + a qudt:QuantityKind ; + dcterms:description "Pitch angle in bevel gears is the angle between an element of a pitch cone and its axis. In external and internal bevel gears, the pitch angles are respectively less than and greater than 90 degrees."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\theta$"^^qudt:LatexString ; + qudt:plainTextDescription "Pitch angle in bevel gears is the angle between an element of a pitch cone and its axis. In external and internal bevel gears, the pitch angles are respectively less than and greater than 90 degrees." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Bevel Gear Pitch Angle"@en ; + skos:broader quantitykind:Angle . + +quantitykind:BindingFraction + a qudt:QuantityKind ; + dcterms:description "The \"Binding Fraction\" is the ratio of the binding energy of a nucleus to the atomic mass number."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/binding+fraction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$b = \\frac{B_r}{A}$, where $B_r$ is the relative mass defect and $A$ is the nucleon number."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Binding Fraction\" is the ratio of the binding energy of a nucleus to the atomic mass number." ; + qudt:symbol "b" ; + rdfs:comment "Applicable units are those of quantitykind:BindingFraction" ; + rdfs:isDefinedBy ; + rdfs:label "Binding Fraction"@en . + +quantitykind:BioconcentrationFactor + a qudt:QuantityKind ; + dcterms:description "The bioconcentration factor is the ratio of the concentration of a chemical substance in biota over the concentration of the same chemical substance in water. It is related to the octanol-water partition coefficient."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "The bioconcentration factor is the ratio of the concentration of a chemical substance in biota over the concentration of the same chemical substance in water. It is related to the octanol-water partition coefficient." ; + rdfs:comment "Applicable units are those of quantitykind:BioconcentrationFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Bioconcentration Factor"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:BiodegredationHalfLife + a qudt:QuantityKind ; + dcterms:description "A time that quantifies how long it takes to reduce a substance's concentration by 50% from any concentration point in time in a water or soil environment by either bacteria or another living organism."^^qudt:LatexString ; + qudt:applicableUnit unit:DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:plainTextDescription "A time that quantifies how long it takes to reduce a substance's concentration by 50% from any concentration point in time in a water or soil environment by either bacteria or another living organism." ; + rdfs:comment "Applicable units are those of quantitykind:BiodegredationHalfLife" ; + rdfs:isDefinedBy ; + rdfs:label "Biodegredation Half Life"@en ; + skos:broader quantitykind:Time . + +quantitykind:BiogeochemicalRate + a qudt:QuantityKind ; + dcterms:description "the rate at which a specific chemical element or compound is processed or transformed, as amount per unit mass of the relevant material Unreduced, SI unit is mole * kg-1 * s-1" ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:plainTextDescription "the rate at which a specific chemical element or compound is processed or transformed, as amount per unit mass of the relevant material. Unreduced, SI unit is mole * kg-1 * s-1" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:isDefinedBy ; + rdfs:label "Biogeochemical Rate"@en . + +quantitykind:BitDataVolume + a qudt:QuantityKind ; + dcterms:description "name for a particular quantity of data on the basis of the binary digit \"Bit\" (basic indissoluble information unit) which can only assume a state of 1 or 0"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Bezeichnung für eine bestimmte Anzahl von Daten auf Basis der Binärziffer Bit (en: Basic Indissoluble Information Unit, dt: kleinstmögliche Informationseinheit), welche nur den Zustand 1 oder 0 annehmen kann"@de ; + qudt:symbol "0173-1#Z4-BAJ436#002" ; + rdfs:isDefinedBy ; + rdfs:label "bit data volume"@en-US . + +quantitykind:BitRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:OCTET-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD018" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD018"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:BitRate" ; + rdfs:isDefinedBy ; + rdfs:label "bit rate" . + +quantitykind:BitTransmissionRate + a qudt:QuantityKind ; + dcterms:description "speed with which one bit will be transmitted per second"@en ; + qudt:applicableUnit unit:OCTET-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Geschwindigkeit, mit der Binärzeichen übertragen werden"@de ; + qudt:symbol "0173-1#Z4-BAJ295#003" ; + rdfs:comment "Applicable units are those of quantitykind:BitRate" ; + rdfs:isDefinedBy ; + rdfs:label "bit transmission rate"@en-US ; + skos:broader quantitykind:BitRate . + +quantitykind:BloodGlucoseLevel + a qudt:QuantityKind ; + dcterms:description """ + Blood sugar level, blood sugar concentration, or blood glucose level is the amount of glucose present in the blood of humans and animals. + Glucose is a simple sugar and approximately 4 grams of glucose are present in the blood of humans at all times. + Stored in skeletal muscle and liver cells in the form of glycogen, the body tightly regulates blood glucose levels as a part of metabolic homeostasis. + During fasting blood glucose is maintained at a constant level at the expense of the glycogen stores in the liver and skeletal muscle. + There are two main methods of describing concentrations: by weight, and by molecular count. + Weights are in grams and molecular counts in moles. + A mole is $6.022\\times 10^{23}$ molecules. + In both cases, the unit is usually modified by $milli-$ or $micro-$ or other prefix, + and is always $per$ some volume, often a litre. + Conversion factors depend on the molecular weight of the substance in question. + $mmol/L$ is millimoles/liter, and is the world standard unit for measuring glucose in blood. + Specifically, it is the designated SI (Systeme International) unit. + Some countries use $mg/dl$. + A mole is about $6\\times 10^{23}$ molecules. + $mg/dL$ (milligrams/deciliter) is the traditional unit for measuring $bG$ (blood glucose). + There is a trend toward using $mmol/L$ however $mg/dL$ is much in practice. + Some use is made of $mmol/L$ as the primary unit with $mg/dL$ quoted in parentheses. + This acknowledges the large base of health care providers, researchers and patients who are already familiar with $mg/dL$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://www.faqs.org/faqs/diabetes/faq/part1/section-9.html"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:BloodGlucoseLevel" ; + rdfs:comment "citation: https://en.wikipedia.org/wiki/Blood_sugar_level" ; + rdfs:isDefinedBy ; + rdfs:label "Blood Glucose Level"@en ; + rdfs:seeAlso quantitykind:BloodGlucoseLevel_Mass . + +quantitykind:BloodGlucoseLevel_Mass + a qudt:QuantityKind ; + dcterms:description """ + Blood sugar level, blood sugar concentration, or blood glucose level is the amount of glucose present in the blood of humans and animals. + Glucose is a simple sugar and approximately 4 grams of glucose are present in the blood of humans at all times. + Stored in skeletal muscle and liver cells in the form of glycogen, the body tightly regulates blood glucose levels as a part of metabolic homeostasis. + During fasting blood glucose is maintained at a constant level at the expense of the glycogen stores in the liver and skeletal muscle. + There are two main methods of describing concentrations: by weight, and by molecular count. + Weights are in grams and molecular counts in moles. + A mole is $6.022\\times 10^{23}$ molecules. + In both cases, the unit is usually modified by $milli-$ or $micro-$ or other prefix, + and is always $per$ some volume, often a litre. + Conversion factors depend on the molecular weight of the substance in question. + $mmol/L$ is millimoles/liter, and is the world standard unit for measuring glucose in blood. + Specifically, it is the designated SI (Systeme International) unit. + Some countries use $mg/dl$. + A mole is about $6\\times 10^{23}$ molecules. + $mg/dL$ (milligrams/deciliter) is the traditional unit for measuring $bG$ (blood glucose). + There is a trend toward using $mmol/L$ however $mg/dL$ is much in practice. + Some use is made of $mmol/L$ as the primary unit with $mg/dL$ quoted in parentheses. + This acknowledges the large base of health care providers, researchers and patients who are already familiar with $mg/dL$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:informativeReference "http://www.faqs.org/faqs/diabetes/faq/part1/section-9.html"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:BloodGlucoseLevel_Mass" ; + rdfs:comment "citation: https://en.wikipedia.org/wiki/Blood_sugar_level" ; + rdfs:isDefinedBy ; + rdfs:label "Blood Glucose Level by Mass"@en ; + rdfs:seeAlso quantitykind:BloodGlucoseLevel . + +quantitykind:BodyMassIndex + a qudt:QuantityKind ; + dcterms:description "$\\textit{Body Mass Index}$, BMI, is an index of weight for height, calculated as: $BMI = \\frac{M_{body}}{H^2}$, where $M_{body}$ is body mass in kg, and $H$ is height in metres. The BMI has been used as a guideline for defining whether a person is overweight because it minimizes the effect of height, but it does not take into consideration other important factors, such as age and body build. The BMI has also been used as an indicator of obesity on the assumption that the higher the index, the greater the level of body fat."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198631477.001.0001/acref-9780198631477-e-254"^^xsd:anyURI ; + qudt:symbol "BMI" ; + rdfs:comment "Applicable units are those of quantitykind:BodyMassIndex" ; + rdfs:isDefinedBy ; + rdfs:label "Body Mass Index"@en ; + skos:altLabel "BMI" . + +quantitykind:BoilingPoint + a qudt:QuantityKind ; + dcterms:description "A temperature that is the one at which a substance will change its physical state from a liquid to a gas. It is also the temperature where the liquid and gaseous forms of a pure substance can exist in equilibrium."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:plainTextDescription "A temperature that is the one at which a substance will change its physical state from a liquid to a gas. It is also the temperature where the liquid and gaseous forms of a pure substance can exist in equilibrium." ; + rdfs:comment "Applicable units are those of quantitykind:BoilingPoint" ; + rdfs:isDefinedBy ; + rdfs:label "Boiling Point Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:BraggAngle + a qudt:QuantityKind ; + dcterms:description "\"Bragg Angle\" describes the condition for a plane wave to be diffracted from a family of lattice planes, the angle between the wavevector of the incident plane wave, and the lattice planes."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://reference.iucr.org/dictionary/Bragg_angle"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$2d\\sin{\\vartheta} = n\\lambda $"^^qudt:LatexString ; + qudt:latexSymbol "$\\vartheta$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Bragg Angle\" describes the condition for a plane wave to be diffracted from a family of lattice planes, the angle between the wavevector of the incident plane wave, and the lattice planes." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Bragg Angle"@en ; + skos:broader quantitykind:Angle . + +quantitykind:Breadth + a qudt:QuantityKind ; + dcterms:description "\"Breadth\" is the extent or measure of how broad or wide something is."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Length"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wiktionary.org/wiki/breadth"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Breadth\" is the extent or measure of how broad or wide something is." ; + qudt:symbol "b" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Breite"@de ; + rdfs:label "ancho"@es ; + rdfs:label "breadth"@en ; + rdfs:label "genişliği"@tr ; + rdfs:label "largeur"@fr ; + rdfs:label "larghezza"@it ; + rdfs:label "largura"@pt ; + rdfs:label "lebar"@ms ; + rdfs:label "szerokość"@pl ; + rdfs:label "širina"@sl ; + rdfs:label "šířka"@cs ; + rdfs:label "ширина"@ru ; + rdfs:label "العرض"@ar ; + rdfs:label "عرض"@fa ; + rdfs:label "寬度"@zh ; + rdfs:label "幅"@ja ; + skos:broader quantitykind:Length . + +quantitykind:BucklingFactor + a qudt:QuantityKind ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:symbol "B" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Buckling Factor"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:BulkModulus + a qudt:QuantityKind ; + dcterms:description "The bulk modulus of a substance measures the substance's resistance to uniform compression. It is defined as the ratio of the infinitesimal pressure increase to the resulting relative decrease of the volume."^^qudt:LatexString ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PicoPA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bulk_modulus"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$K = \\frac{p}{\\vartheta}$, where $p$ is pressure and $\\vartheta$ is volume strain."^^qudt:LatexString ; + qudt:plainTextDescription "The bulk modulus of a substance measures the substance's resistance to uniform compression. It is defined as the ratio of the infinitesimal pressure increase to the resulting relative decrease of the volume." ; + qudt:symbol "K" ; + rdfs:comment "Applicable units are those of quantitykind:BulkModulus" ; + rdfs:isDefinedBy ; + rdfs:label "Bulk Modulus"@en . + +quantitykind:BurgersVector + a qudt:QuantityKind ; + dcterms:description "\"Burgers Vector\" is the vector characterizing a dislocation, i.e. the closing vector in a Burgers circuit encircling a dislocation line."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Burgers_vector"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Burgers Vector\" is the vector characterizing a dislocation, i.e. the closing vector in a Burgers circuit encircling a dislocation line." ; + qudt:symbol "b" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Burgers Vector"@en ; + skos:broader quantitykind:Length . + +quantitykind:BurnRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Burn Rate"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:BurnTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:symbol "t" ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Burn Time"@en ; + skos:broader quantitykind:Time . + +quantitykind:BurstFactor + a qudt:QuantityKind ; + dcterms:description "bursting pressure divided by areic mass"@en ; + qudt:applicableUnit unit:PA-M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD019" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD019"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient Berstdruck dividiert durch die flächenbezogene Masse"@de ; + qudt:symbol "0173-1#Z4-BAJ434#001" ; + rdfs:comment "Applicable units are those of quantitykind:BurstFactor" ; + rdfs:isDefinedBy ; + rdfs:label "burst factor" ; + rdfs:label "burst factor"@en-US . + +quantitykind:ByteDataVolume + a qudt:QuantityKind ; + dcterms:description "particular quantity of data based on a string consisting of 8 bits"@en ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Anzahl von Daten auf Basis einer Zeichenfolge, die aus je 8 Bit besteht"@de ; + qudt:symbol "0173-1#Z4-BAJ435#004" ; + rdfs:comment "Applicable units are those of quantitykind:Count" ; + rdfs:isDefinedBy ; + rdfs:label "byte data volume"@en-US ; + skos:broader quantitykind:Count . + +quantitykind:ByteRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:BYTE-PER-SEC ; + qudt:applicableUnit unit:GigaBYTE-PER-SEC ; + qudt:applicableUnit unit:MegaBYTE-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD020" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD020"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ByteRate" ; + rdfs:isDefinedBy ; + rdfs:label "byte rate" . + +quantitykind:ByteTransmissionRate + a qudt:QuantityKind ; + dcterms:description "speed with which 8 bits are transmitted"@en ; + qudt:applicableUnit unit:BYTE-PER-SEC ; + qudt:applicableUnit unit:GigaBYTE-PER-SEC ; + qudt:applicableUnit unit:MegaBYTE-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Geschwindigkeit, mit der 8 Binärzeichen übertragen werden"@de ; + qudt:symbol "0173-1#Z4-BAJ297#003" ; + rdfs:comment "Applicable units are those of quantitykind:ByteRate" ; + rdfs:isDefinedBy ; + rdfs:label "byte transmission rate"@en-US ; + skos:broader quantitykind:ByteRate . + +quantitykind:CENTER-OF-GRAVITY_X + a qudt:QuantityKind ; + dcterms:isReplacedBy quantitykind:CenterOfGravity_X ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the X axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CENTER-OF-GRAVITY_Y + a qudt:QuantityKind ; + dcterms:isReplacedBy quantitykind:CenterOfGravity_Y ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the Y axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CENTER-OF-GRAVITY_Z + a qudt:QuantityKind ; + dcterms:isReplacedBy quantitykind:CenterOfGravity_Z ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the Z axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CENTER-OF-MASS + a qudt:QuantityKind ; + dcterms:description "The point at which the distributed mass of a composite body can be acted upon by a force without inducing any rotation of the composite body."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Center_of_mass"^^xsd:anyURI ; + qudt:plainTextDescription "The point at which the distributed mass of a composite body can be acted upon by a force without inducing any rotation of the composite body." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Mass (CoM)"@en ; + skos:altLabel "COM" ; + skos:broader quantitykind:PositionVector . + +quantitykind:CO2Equivalent + a qudt:QuantityKind ; + dcterms:description """The CO2 equivalent is a measure used to compare the emissions from various greenhouse gases + on the basis of their global-warming potential (GWP), by converting amounts of other gases to the equivalent amount + of carbon dioxide with the same global warming potential."""^^rdf:HTML ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:TONNE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Global_warming_potential"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:CO2Equivalent" ; + rdfs:isDefinedBy ; + rdfs:label "CO2Equivalent" ; + skos:broader quantitykind:Equivalent_Mass . + +quantitykind:CONTRACT-END-ITEM-SPECIFICATION-MASS + a qudt:QuantityKind ; + dcterms:description "Contractual mass requirement of a delivered item. Note that The term 'control mass' is sometimes utilized as a limit in lieu of CEI mass when a CEI mass does not exist. The term 'Interface Control Document Mass' is another alternative for specifying a contractual mass requirement."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Contractual mass requirement of a delivered item. Note that The term 'control mass' is sometimes utilized as a limit in lieu of CEI mass when a CEI mass does not exist. The term 'Interface Control Document Mass' is another alternative for specifying a contractual mass requirement." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Contract End Item (CEI) Specification Mass."@en ; + skos:altLabel "CEI" ; + skos:broader quantitykind:Mass . + +quantitykind:CONTROL-MASS + a qudt:QuantityKind ; + dcterms:description "The upper design gross mass limit of a system at a specified mission event against which margins are calculated after accounting for basic masses of flight hardware, MGA, and uncertainties. It may include propellants, crew, and cargo."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "The upper design gross mass limit of a system at a specified mission event against which margins are calculated after accounting for basic masses of flight hardware, MGA, and uncertainties. It may include propellants, crew, and cargo." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Control Mass."@en ; + skos:broader quantitykind:Mass . + +quantitykind:CanonicalPartitionFunction + a qudt:QuantityKind ; + dcterms:description "A \"Canonical Partition Function\" applies to a canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and number of particles."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Partition_function_(statistical_mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$Z = \\sum_r e^{-\\frac{E_r}{kT}}$, where the sum is over all quantum states consistent with given energy, volume, external fields, and content, $E_r$ is the energy in the $rth$ quantum state, $k$ is the Boltzmann constant, and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:plainTextDescription "A \"Canonical Partition Function\" applies to a canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and number of particles." ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Canonical Partition Function"@en . + +quantitykind:Capacitance + a qudt:QuantityKind ; + dcterms:description "\"Capacitance\" is the ability of a body to hold an electrical charge; it is quantified as the amount of electric charge stored for a given electric potential. Capacitance is a scalar-valued quantity."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoFARAD ; + qudt:applicableUnit unit:FARAD ; + qudt:applicableUnit unit:FARAD_Ab ; + qudt:applicableUnit unit:FARAD_Stat ; + qudt:applicableUnit unit:FemtoFARAD ; + qudt:applicableUnit unit:KiloFARAD ; + qudt:applicableUnit unit:MicroFARAD ; + qudt:applicableUnit unit:MilliFARAD ; + qudt:applicableUnit unit:NanoFARAD ; + qudt:applicableUnit unit:PicoFARAD ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Capacitance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:iec61360Code "0112/2///62720#UAD021" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD021"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$C = Q/U$, where $Q$ is electric charge and $V$ is voltage."^^qudt:LatexString ; + qudt:plainTextDescription "\"Capacitance\" is the ability of a body to hold an electrical charge; it is quantified as the amount of electric charge stored for a given electric potential. Capacitance is a scalar-valued quantity." ; + qudt:siExactMatch si-quantity:ELCA ; + qudt:symbol "C" ; + rdfs:comment "Applicable units are those of quantitykind:Capacitance" ; + rdfs:isDefinedBy ; + rdfs:label "Capacitance"@en . + +quantitykind:Capacity + a qudt:QuantityKind ; + dcterms:description "In computer operations, (a) the largest quantity which can be stored, processed, or transferred; (b) the largest number of digits or characters which may regularly be processed; (c) the upper and lower limits of the quantities which may be processed. In other contexts, the amount of material that can be stored, such as fuel or food."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Capacity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "In computer operations, (a) the largest quantity which can be stored, processed, or transferred; (b) the largest number of digits or characters which may regularly be processed; (c) the upper and lower limits of the quantities which may be processed. In other contexts, the amount of material that can be stored, such as fuel or food." ; + qudt:symbol "TBD" ; + rdfs:isDefinedBy ; + rdfs:label "Capacity"@en . + +quantitykind:CarrierLifetime + a qudt:QuantityKind ; + dcterms:description "\"Carrier LifetIme\" is a time constant for recombination or trapping of minority charge carriers in semiconductors."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Carrier_lifetime"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\tau, \\tau_n, \\tau_p$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Carrier LifetIme\" is a time constant for recombination or trapping of minority charge carriers in semiconductors." ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Carrier LifetIme"@en ; + skos:broader quantitykind:Time . + +quantitykind:CartesianArea + a qudt:QuantityKind ; + dcterms:description "\"Area\" is a quantity that expresses the extent of a two-dimensional surface or shape, or planar lamina, in the plane."^^qudt:LatexString ; + qudt:abbreviation "area" ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Area"^^xsd:anyURI ; + qudt:latexDefinition "$A = \\int\\int dxdy$, where $x$ and $y$ are cartesian coordinates."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Area\" is a quantity that expresses the extent of a two-dimensional surface or shape, or planar lamina, in the plane." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian Area"@en ; + skos:broader quantitykind:Area ; + skos:closeMatch quantitykind:Area . + +quantitykind:CartesianCoordinates + a qudt:QuantityKind ; + dcterms:description "\"Cartesian Coordinates\" specify each point uniquely in a plane by a pair of numerical coordinates, which are the signed distances from the point to two fixed perpendicular directed lines, measured in the same unit of length. "^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cartesian_coordinate_system"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Cartesian Coordinates\" specify each point uniquely in a plane by a pair of numerical coordinates, which are the signed distances from the point to two fixed perpendicular directed lines, measured in the same unit of length. " ; + qudt:symbol "x, y, z" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Cartesian coordinates"@en ; + rdfs:label "Kartézská soustava souřadnic"@cs ; + rdfs:label "Koordiant Kartesius"@ms ; + rdfs:label "coordenadas cartesianas"@pt ; + rdfs:label "coordinate cartesiane"@it ; + rdfs:label "coordonnées cartésiennes"@fr ; + rdfs:label "kartesische Koordinaten"@de ; + rdfs:label "kartezyen koordinatları"@tr ; + rdfs:label "مختصات دکارتی"@fa ; + rdfs:label "直角坐标系"@zh ; + skos:altLabel "Kartézské souřadnice"@cs ; + skos:broader quantitykind:Length . + +quantitykind:CartesianVolume + a qudt:QuantityKind ; + dcterms:description "\"Volume\" is the quantity of three-dimensional space enclosed by some closed boundary, for example, the space that a substance (solid, liquid, gas, or plasma) or shape occupies or contains."^^qudt:LatexString ; + qudt:applicableUnit unit:AC-FT ; + qudt:applicableUnit unit:AC-FT_US ; + qudt:applicableUnit unit:ANGSTROM3 ; + qudt:applicableUnit unit:BBL ; + qudt:applicableUnit unit:BBL_UK_PET ; + qudt:applicableUnit unit:BU_US_DRY ; + qudt:applicableUnit unit:CentiM3 ; + qudt:applicableUnit unit:DecaL ; + qudt:applicableUnit unit:DecaM3 ; + qudt:applicableUnit unit:DeciL ; + qudt:applicableUnit unit:DeciM3 ; + qudt:applicableUnit unit:FBM ; + qudt:applicableUnit unit:FT3 ; + qudt:applicableUnit unit:FemtoL ; + qudt:applicableUnit unit:GI_UK ; + qudt:applicableUnit unit:GI_US ; + qudt:applicableUnit unit:GT ; + qudt:applicableUnit unit:HectoL ; + qudt:applicableUnit unit:IN3 ; + qudt:applicableUnit unit:KiloCubicFT ; + qudt:applicableUnit unit:KiloL ; + qudt:applicableUnit unit:L ; + qudt:applicableUnit unit:M3 ; + qudt:applicableUnit unit:MI3 ; + qudt:applicableUnit unit:MI_UK3 ; + qudt:applicableUnit unit:MegaL ; + qudt:applicableUnit unit:MicroL ; + qudt:applicableUnit unit:MicroM3 ; + qudt:applicableUnit unit:MilliL ; + qudt:applicableUnit unit:MilliM3 ; + qudt:applicableUnit unit:NT ; + qudt:applicableUnit unit:NanoL ; + qudt:applicableUnit unit:OZ_VOL_UK ; + qudt:applicableUnit unit:PINT ; + qudt:applicableUnit unit:PINT_UK ; + qudt:applicableUnit unit:PK_UK ; + qudt:applicableUnit unit:PicoL ; + qudt:applicableUnit unit:PlanckVolume ; + qudt:applicableUnit unit:QT_UK ; + qudt:applicableUnit unit:QT_US ; + qudt:applicableUnit unit:STANDARD ; + qudt:applicableUnit unit:STR ; + qudt:applicableUnit unit:TBSP ; + qudt:applicableUnit unit:TON_Register ; + qudt:applicableUnit unit:TON_SHIPPING_UK ; + qudt:applicableUnit unit:TON_SHIPPING_US ; + qudt:applicableUnit unit:TSP ; + qudt:applicableUnit unit:YD3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Volume"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$V = \\int\\int\\int dxdydz$, where $x$, $y$, and $z$ are cartesian coordinates."^^qudt:LatexString ; + qudt:plainTextDescription "\"Volume\" is the quantity of three-dimensional space enclosed by some closed boundary, for example, the space that a substance (solid, liquid, gas, or plasma) or shape occupies or contains." ; + qudt:symbol "V" ; + rdfs:comment "Applicable units are those of quantitykind:Volume" ; + rdfs:isDefinedBy ; + rdfs:label "Isipadu"@ms ; + rdfs:label "Objem"@cs ; + rdfs:label "Volumen"@de ; + rdfs:label "hacim"@tr ; + rdfs:label "objętość"@pl ; + rdfs:label "prostornina"@sl ; + rdfs:label "volum"@ro ; + rdfs:label "volume"@en ; + rdfs:label "volume"@fr ; + rdfs:label "volume"@it ; + rdfs:label "volume"@pt ; + rdfs:label "volumen"@es ; + rdfs:label "Επιτάχυνση"@el ; + rdfs:label "Обем"@bg ; + rdfs:label "Объём"@ru ; + rdfs:label "נפח"@he ; + rdfs:label "حجم"@ar ; + rdfs:label "حجم"@fa ; + rdfs:label "आयतन"@hi ; + rdfs:label "体积"@zh ; + rdfs:label "体積"@ja ; + skos:broader quantitykind:Volume . + +quantitykind:CatalyticActivity + a qudt:QuantityKind ; + dcterms:description "An index of the actual or potential activity of a catalyst. The catalytic activity of an enzyme or an enzyme-containing preparation is defined as the property measured by the increase in the rate of conversion of a specified chemical reaction that the enzyme produces in a specified assay system. Catalytic activity is an extensive quantity and is a property of the enzyme, not of the reaction mixture; it is thus conceptually different from rate of conversion although measured by and equidimensional with it. The unit for catalytic activity is the $katal$; it may also be expressed in mol $s^{-1}$. Dimensions: $N T^{-1}$. Former terms such as catalytic ability, catalytic amount, and enzymic activity are no er recommended. Derived quantities are molar catalytic activity, specific catalytic activity, and catalytic activity concentration. Source(s): www.answers.com"^^qudt:LatexString ; + qudt:applicableUnit unit:ENZ ; + qudt:applicableUnit unit:KAT ; + qudt:applicableUnit unit:KiloMOL-PER-HR ; + qudt:applicableUnit unit:MOL_LB-PER-MIN ; + qudt:applicableUnit unit:MOL_LB-PER-SEC ; + qudt:applicableUnit unit:MicroKAT ; + qudt:applicableUnit unit:MilliKAT ; + qudt:applicableUnit unit:NanoKAT ; + qudt:applicableUnit unit:PicoKAT ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Catalysis"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD022" ; + qudt:iec61360Code "0112/2///62720#UAD367" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD022"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD367"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:CATA ; + rdfs:comment "Applicable units are those of quantitykind:CatalyticActivity" ; + rdfs:isDefinedBy ; + rdfs:label "Catalytic Activity"@en . + +quantitykind:CatalyticActivityConcentration + a qudt:QuantityKind ; + dcterms:description "The catalytic activity of an enzyme per unit volume, where volume refers to that of the original enzyme‐containing preparation, not that of the assay system. It may be expressed in katals per litre."^^qudt:LatexString ; + qudt:applicableUnit unit:ENZ-PER-L ; + qudt:applicableUnit unit:KAT-PER-L ; + qudt:applicableUnit unit:KAT-PER-M3 ; + qudt:applicableUnit unit:KAT-PER-MicroL ; + qudt:applicableUnit unit:MOL-PER-M2-SEC-M ; + qudt:applicableUnit unit:MOL-PER-M3-SEC ; + qudt:applicableUnit unit:MicroKAT-PER-L ; + qudt:applicableUnit unit:MicroMOL-PER-L-HR ; + qudt:applicableUnit unit:MilliKAT-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3-DAY ; + qudt:applicableUnit unit:NanoKAT-PER-L ; + qudt:applicableUnit unit:NanoMOL-PER-CentiM3-HR ; + qudt:applicableUnit unit:NanoMOL-PER-L-DAY ; + qudt:applicableUnit unit:NanoMOL-PER-L-HR ; + qudt:applicableUnit unit:PicoKAT-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L-DAY ; + qudt:applicableUnit unit:PicoMOL-PER-L-HR ; + qudt:applicableUnit unit:PicoMOL-PER-M3-SEC ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:informativeReference "https://doi.org/10.1351/goldbook.C00882"^^xsd:anyURI ; + qudt:plainTextDescription "The catalytic activity of an enzyme per unit volume, where volume refers to that of the original enzyme‐containing preparation, not that of the assay system. It may be expressed in katals per litre." ; + qudt:siExactMatch si-quantity:CTAC ; + rdfs:comment "Applicable units are those of quantitykind:CatalyticActivityConcentration" ; + rdfs:isDefinedBy ; + rdfs:label "Catalytic Activity Concentration"@en . + +quantitykind:CelsiusTemperature + a qudt:QuantityKind ; + dcterms:description "\"Celsius Temperature\", the thermodynamic temperature T_0, is exactly 0.01 kelvin below the thermodynamic temperature of the triple point of water."^^qudt:LatexString ; + prov:wasDerivedFrom quantitykind:ThermodynamicTemperature ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD023" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD023"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition """"Celsius Temperature", the thermodynamic temperature $T_0$, is exactly $0.01$kelvin below the thermodynamic temperature of the triple point of water. +$t = T - T_0$, where $T$ is Thermodynamic Temperature and $T_0 = 273.15 K$."""^^qudt:LatexString ; + qudt:plainTextDescription "\"Celsius Temperature\", the thermodynamic temperature T_0, is exactly 0.01 kelvin below the thermodynamic temperature of the triple point of water." ; + qudt:siExactMatch si-quantity:TEMC ; + rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Celsius sıcaklık"@tr ; + rdfs:label "Celsius temperature"@en ; + rdfs:label "Celsius-Temperatur"@de ; + rdfs:label "Suhu Celsius"@ms ; + rdfs:label "temperatura Celsius"@es ; + rdfs:label "temperatura Celsius"@it ; + rdfs:label "temperatura celsius"@pt ; + rdfs:label "temperatura"@pl ; + rdfs:label "temperatura"@sl ; + rdfs:label "temperatură Celsius"@ro ; + rdfs:label "température Celsius"@fr ; + rdfs:label "teplota"@cs ; + rdfs:label "Температура Цельсия"@ru ; + rdfs:label "צלזיוס"@he ; + rdfs:label "درجة الحرارة المئوية أو السيلسيوس"@ar ; + rdfs:label "دمای سلسیوس/سانتیگراد"@fa ; + rdfs:label "सेल्सियस तापमान"@hi ; + rdfs:label "温度"@ja ; + rdfs:label "温度"@zh ; + skos:broader quantitykind:ThermodynamicTemperature . + +quantitykind:CenterOfGravity_X + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the X axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CenterOfGravity_Y + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the Y axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CenterOfGravity_Z + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ; + qudt:symbol "cg" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Center of Gravity in the Z axis"@en ; + skos:broader quantitykind:Length . + +quantitykind:CharacteristicAcousticImpedance + a qudt:QuantityKind ; + dcterms:description "Characteristic impedance at a point in a non-dissipative medium and for a plane progressive wave, the quotient of the sound pressure $p$ by the component of the sound particle velocity $v$ in the direction of the wave propagation."^^qudt:LatexString ; + qudt:applicableUnit unit:PA-SEC-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acoustic_impedance#Characteristic_acoustic_impedance"^^xsd:anyURI ; + qudt:latexDefinition "$Z_c = pc$, where $p$ is the sound pressure and $c$ is the phase speed of sound."^^qudt:LatexString ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:AcousticImpedance" ; + rdfs:isDefinedBy ; + rdfs:label "Characteristic Acoustic Impedance"@en ; + skos:broader quantitykind:AcousticImpedance ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:CharacteristicNumber + a qudt:QuantityKind ; + dcterms:description "quantity of dimension one (as a result of measuring technology theory) which clarifies facts, states or developments and is used as a scale e.g. to represent causes and effects of events"@en ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Größe der Dimension 1 (als Ergebnis der metrisierenden Messtheorie), die Sachverhalte, Zustände oder Entwicklungen verdeutlicht und als Maßstab dient, um z. B. Ursache und Wirkung von Vorgängen in kausalem Zusammenhang darzustellen"@de ; + qudt:symbol "0173-1#Z4-BAJ279#002" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "characteristic number"@en-US ; + skos:broader quantitykind:Dimensionless . + +quantitykind:CharacteristicVelocity + a qudt:QuantityKind ; + dcterms:description "Characteristic velocity or $c^{*}$ is a measure of the combustion performance of a rocket engine independent of nozzle performance, and is used to compare different propellants and propulsion systems."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:latexSymbol "$c^{*}$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Characteristic Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:ChargeNumber + a qudt:QuantityKind ; + dcterms:description "The \"Charge Number\", or just valance of an ion is the coefficient that, when multiplied by the elementary charge, gives the ion's charge."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Charge Number\", or just valance of an ion is the coefficient that, when multiplied by the elementary charge, gives the ion's charge." ; + qudt:symbol "z" ; + rdfs:comment "Applicable units are those of quantitykind:ChargeNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Charge Number"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:ChemicalAffinity + a qudt:QuantityKind ; + dcterms:description "In chemical physics and physical chemistry, \"Chemical Affinity\" is the electronic property by which dissimilar chemical species are capable of forming chemical compounds. Chemical affinity can also refer to the tendency of an atom or compound to combine by chemical reaction with atoms or compounds of unlike composition."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_affinity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$A = -\\sum \\nu_b\\mu_B$, where $\\nu_b$ is the stoichiometric number of substance $B$ and $\\mu_B$ is the chemical potential of substance $B$."^^qudt:LatexString ; + qudt:plainTextDescription "In chemical physics and physical chemistry, \"Chemical Affinity\" is the electronic property by which dissimilar chemical species are capable of forming chemical compounds. Chemical affinity can also refer to the tendency of an atom or compound to combine by chemical reaction with atoms or compounds of unlike composition." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:ChemicalAffinity" ; + rdfs:isDefinedBy ; + rdfs:label "Chemical Affinity"@en . + +quantitykind:ChemicalConsumptionPerMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM3-PER-GM ; + qudt:applicableUnit unit:DeciL-PER-GM ; + qudt:applicableUnit unit:DeciM3-PER-KiloGM ; + qudt:applicableUnit unit:FT3-PER-LB ; + qudt:applicableUnit unit:IN3-PER-LB ; + qudt:applicableUnit unit:L-PER-KiloGM ; + qudt:applicableUnit unit:M3-PER-KiloGM ; + qudt:applicableUnit unit:MilliL-PER-GM ; + qudt:applicableUnit unit:MilliL-PER-KiloGM ; + qudt:applicableUnit unit:MilliM3-PER-GM ; + qudt:applicableUnit unit:MilliM3-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:plainTextDescription "In the context of a chemical durability test, this is measure of how much of a solution (often a corrosive or reactive one) is consumed or used up per unit mass of a material being tested. In other words, this the volume of solution needed to cause a certain level of chemical reaction or damage to a given mass of the material." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Chemical Consumption per Mass"@en ; + skos:broader quantitykind:SpecificVolume . + +quantitykind:ChemicalPotential + a qudt:QuantityKind ; + dcterms:description "\"Chemical Potential\", also known as partial molar free energy, is a form of potential energy that can be absorbed or released during a chemical reaction."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:applicableUnit unit:KiloCAL-PER-MOL ; + qudt:applicableUnit unit:KiloJ-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_potential"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_B = (\\frac{\\partial G}{\\partial n_B})_{T,p,n_i}$, where $G$ is Gibbs energy, and $n_B$ is the amount of substance $B$."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_B$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Chemical Potential\", also known as partial molar free energy, is a form of potential energy that can be absorbed or released during a chemical reaction." ; + rdfs:comment "Applicable units are those of quantitykind:MolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Chemický potenciál"@cs ; + rdfs:label "Keupayaan kimia"@ms ; + rdfs:label "Potencjał chemiczny"@pl ; + rdfs:label "Potențial chimic"@ro ; + rdfs:label "chemical potential"@en ; + rdfs:label "chemisches Potential des Stoffs B"@de ; + rdfs:label "kimyasal potansiyel"@tr ; + rdfs:label "potencial químico"@es ; + rdfs:label "potencial químico"@pt ; + rdfs:label "potential chimique"@fr ; + rdfs:label "potenziale chimico"@it ; + rdfs:label "Химический потенциал"@ru ; + rdfs:label "جهد كيميائي"@ar ; + rdfs:label "پتانسیل شیمیایی"@fa ; + rdfs:label "化学ポテンシャル"@ja ; + rdfs:label "化学势"@zh ; + skos:broader quantitykind:MolarEnergy . + +quantitykind:Chromaticity + a qudt:QuantityKind ; + dcterms:description "Chromaticity is an objective specification of the quality of a color regardless of its luminance"^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Chromaticity"^^xsd:anyURI ; + qudt:plainTextDescription "Chromaticity is an objective specification of the quality of a color regardless of its luminance" ; + rdfs:comment "Applicable units are those of quantitykind:Chromaticity" ; + rdfs:isDefinedBy ; + rdfs:label "Chromaticity"@en . + +quantitykind:Circulation + a qudt:QuantityKind ; + dcterms:description "In fluid dynamics, circulation is the line integral around a closed curve of the fluid velocity. It has dimensions of length squared over time."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-SEC ; + qudt:applicableUnit unit:FT2-PER-HR ; + qudt:applicableUnit unit:FT2-PER-SEC ; + qudt:applicableUnit unit:IN2-PER-SEC ; + qudt:applicableUnit unit:M2-HZ ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:applicableUnit unit:MilliM2-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Circulation_%28fluid_dynamics%29"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:latexSymbol "$\\Gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "In fluid dynamics, circulation is the line integral around a closed curve of the fluid velocity. It has dimensions of length squared over time." ; + rdfs:comment "Applicable units are those of quantitykind:AreaPerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Circulation"@en ; + skos:broader quantitykind:AreaPerTime . + +quantitykind:ClosestApproachRadius + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:symbol "r_o" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Closest Approach Radius"@en ; + skos:broader quantitykind:Radius . + +quantitykind:CoefficientOfHeatTransfer + a qudt:QuantityKind ; + dcterms:description "\"Coefficient of Heat Transfer\", in thermodynamics and in mechanical and chemical engineering, is used in calculating the heat transfer, typically by convection or phase transition between a fluid and a solid. The heat transfer coefficient is the proportionality coefficient between the heat flux, that is heat flow per unit area, q/A, and the thermodynamic driving force for the flow of heat (that is, the temperature difference, (Delta T). Areic heat flow rate divided by thermodynamic temperature difference. In building technology, the \"Coefficient of Heat Transfer\", is often called \"thermal transmittance}\" with the symbol \"U\". It has SI units in watts per squared meter kelvin."^^qudt:LatexString ; + qudt:applicableSIUnit unit:W-PER-M2-K ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_TH-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:CAL_TH-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:KiloGM-PER-SEC3-K ; + qudt:applicableUnit unit:KiloW-PER-M2-K ; + qudt:applicableUnit unit:W-PER-M2-K ; + qudt:expression "$heat-xfer-coeff$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_transfer_coefficient"^^xsd:anyURI ; + qudt:latexDefinition """"Coefficient of Heat Transfer", in thermodynamics and in mechanical and chemical engineering, is used in calculating the heat transfer, typically by convection or phase transition between a fluid and a solid. The heat transfer coefficient is the proportionality coefficient between the heat flux, that is heat flow per unit area, $q/A$, and the thermodynamic driving force for the flow of heat (that is, the temperature difference, $ \\bigtriangleup T $). Areic heat flow rate divided by thermodynamic temperature difference. In building technology, the $\\textit{Coefficient of Heat Transfer}$, is often called $\\textit{thermal transmittance}$, with the symbol $U$. $\\textit{Coefficient of Heat Transfer}$, has SI units in watts per squared meter kelvin: $W/(m^2 \\cdot K)$ . + +$K = \\frac{\\varphi}{T}$, where $\\varphi$ is areic heat flow rate and $T$ is thermodynamic temperature difference."""^^qudt:LatexString ; + qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Coefficient of Heat Transfer\", in thermodynamics and in mechanical and chemical engineering, is used in calculating the heat transfer, typically by convection or phase transition between a fluid and a solid. The heat transfer coefficient is the proportionality coefficient between the heat flux, that is heat flow per unit area, q/A, and the thermodynamic driving force for the flow of heat (that is, the temperature difference, (Delta T). Areic heat flow rate divided by thermodynamic temperature difference. In building technology, the \"Coefficient of Heat Transfer\", is often called \"thermal transmittance}\" with the symbol \"U\". It has SI units in watts per squared meter kelvin." ; + rdfs:comment "Applicable units are those of quantitykind:CoefficientOfHeatTransfer" ; + rdfs:isDefinedBy ; + rdfs:label "Coefficient of heat transfer"@en . + +quantitykind:CoefficientOfPerformance + a qudt:QuantityKind ; + dcterms:description "\"Coefficient of Performance\",is a measure of the efficiency of a heating or cooling system, defined as the ratio of useful heating or cooling output to the energy input required to achieve it."^^qudt:LatexString ; + qudt:applicableSIUnit unit:NUM ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Coefficient_of_performance#:~:text=The%20coefficient%20of%20performance%20or,and%20thus%20lower%20operating%20costs."^^xsd:anyURI ; + qudt:plainTextDescription "\"\"Coefficient of Performance\",is a measure of the efficiency of a heating or cooling system, defined as the ratio of useful heating or cooling output to the energy input required to achieve it." ; + qudt:symbol "COP" ; + rdfs:comment "Applicable units are those of quantitykind:CoefficientOfPerformance" ; + rdfs:isDefinedBy ; + rdfs:label "CoefficientOfPerformance"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Coercivity + a qudt:QuantityKind ; + dcterms:description "$\\textit{Coercivity}$, also referred to as $\\textit{Coercive Field Strength}$, is the magnetic field strength to be applied to bring the magnetic flux density in a substance from its remaining magnetic flux density to zero. This is defined as the coercive field strength in a substance when either the magnetic flux density or the magnetic polarization and magnetization is brought from its value at magnetic saturation to zero by monotonic reduction of the applied magnetic field strength. The quantity which is brought to zero should be stated, and the appropriate symbol used: $H_{cB}$, $H_{cJ}$ or $H_{cM}$ for the coercivity relating to the magnetic flux density, the magnetic polarization or the magnetization respectively, where $H_{cJ} = H_{cM}$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-M ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-69"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:symbol "H_{c,B}" ; + rdfs:comment "Applicable units are those of quantitykind:Coercivity" ; + rdfs:isDefinedBy ; + rdfs:label "Coercivity"@en ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H . + +quantitykind:CoherenceLength + a qudt:QuantityKind ; + dcterms:description "\"Coherence Length\" characterizes the distance in a superconductor over which the effect of a perturbation is appreciable."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Coherence_length"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Coherence Length\" characterizes the distance in a superconductor over which the effect of a perturbation is appreciable." ; + qudt:symbol "ξ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Coherence Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:ColdReceptorThreshold + a qudt:QuantityKind ; + dcterms:description "\"Cold Receptor Threshold\" is the threshold of cold-sensitive free nerve-ending."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_c}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Cold Receptor Threshold\" is the threshold of cold-sensitive free nerve-ending." ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Cold Receptor Threshold"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:CombinedNonEvaporativeHeatTransferCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Combined Non Evaporative Heat Transfer Coefficient\" is the "^^qudt:LatexString ; + qudt:applicableUnit unit:KiloW-PER-M2-K ; + qudt:applicableUnit unit:W-PER-M2-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$h = h_r + h_c + h_k$, where $h_r$ is the linear radiative heat transfer coefficient, $h_c$ is the convective heat transfer coefficient, and $h_k$ is the conductive heat transfer coefficient."^^qudt:LatexString ; + qudt:plainTextDescription "\"Combined Non Evaporative Heat Transfer Coefficient\" is the " ; + qudt:symbol "h" ; + rdfs:comment "Applicable units are those of quantitykind:CombinedNonEvaporativeHeatTransferCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Combined Non Evaporative Heat Transfer Coefficient"@en . + +quantitykind:CombustionChamberTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:symbol "T_c" ; + rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Combustion Chamber Temperature"@en ; + skos:broader quantitykind:ThermodynamicTemperature . + +quantitykind:ComplexFrequency_Real + a qudt:QuantityKind ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD199" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD199"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "real part of complex frequency" ; + skos:broader quantitykind:Frequency . + +quantitykind:ComplexPower + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Complex Power}$, under sinusoidal conditions, + is the product of the phasor $\\mathbf{U}$ representing the voltage between the terminals of a linear two-terminal element, + or two-terminal circuit and the complex conjugate of the phasor $I$ representing the electric current in the element or circuit. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ExaVA ; + qudt:applicableUnit unit:GigaVA ; + qudt:applicableUnit unit:KiloVA ; + qudt:applicableUnit unit:MegaVA ; + qudt:applicableUnit unit:MicroVA ; + qudt:applicableUnit unit:MilliVA ; + qudt:applicableUnit unit:NanoVA ; + qudt:applicableUnit unit:PetaVA ; + qudt:applicableUnit unit:PicoVA ; + qudt:applicableUnit unit:TeraVA ; + qudt:applicableUnit unit:VA ; + qudt:expression "$complex-power$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-39"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\underline{S} = \\underline{U}\\underline{I^*}$, where $\\underline{U}$ is voltage phasor and $\\underline{I^*}$ is the complex conjugate of the current phasor."^^qudt:LatexString ; + qudt:latexSymbol "$\\underline{S}$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ComplexPower" ; + rdfs:isDefinedBy ; + rdfs:label "Complex Power"@en ; + rdfs:seeAlso quantitykind:ElectricCurrentPhasor ; + rdfs:seeAlso quantitykind:VoltagePhasor ; + skos:broader quantitykind:ElectricPower . + +quantitykind:CompoundPlaneAngle + a qudt:QuantityKind ; + dcterms:description "A \"Compound Plane Angle\" is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifccompoundplaneanglemeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "A \"Compound Plane Angle\" is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc." ; + rdfs:comment "Applicable units are those of quantitykind:PlaneAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Compound Plane Angle"@en ; + skos:broader quantitykind:PlaneAngle . + +quantitykind:Compressibility + a qudt:QuantityKind ; + dcterms:description "Compressibility is a measure of the relative volume change of a fluid or solid as a response to a pressure (or mean stress) change."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-N ; + qudt:applicableUnit unit:PER-BAR ; + qudt:applicableUnit unit:PER-MILLE-PSI ; + qudt:applicableUnit unit:PER-MegaPA ; + qudt:applicableUnit unit:PER-PA ; + qudt:applicableUnit unit:PERCENT-PER-BAR ; + qudt:applicableUnit unit:PERCENT-PER-HectoBAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:iec61360Code "0112/2///62720#UAD024" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Compressibility"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD024"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\chi = -(\\frac{1}{V})\\frac{dV}{d\\rho}$, where $V$ is volume and $p$ is pressure."^^qudt:LatexString ; + qudt:latexSymbol "$\\chi$"^^qudt:LatexString ; + qudt:plainTextDescription "Compressibility is a measure of the relative volume change of a fluid or solid as a response to a pressure (or mean stress) change." ; + rdfs:comment "Applicable units are those of quantitykind:Compressibility" ; + rdfs:isDefinedBy ; + rdfs:label "Compressibility"@en . + +quantitykind:CompressibilityFactor + a qudt:QuantityKind ; + dcterms:description "The compressibility factor ($Z$) is a useful thermodynamic property for modifying the ideal gas law to account for the real gas behaviour. The closer a gas is to a phase change, the larger the deviations from ideal behavior. It is simply defined as the ratio of the molar volume of a gas to the molar volume of an ideal gas at the same temperature and pressure. Values for compressibility are calculated using equations of state (EOS), such as the virial equation and van der Waals equation. The compressibility factor for specific gases can be obtained, with out calculation, from compressibility charts. These charts are created by plotting Z as a function of pressure at constant temperature."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Compressibility Factor"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Concentration + a qudt:QuantityKind ; + dcterms:description "In chemistry, concentration is defined as the abundance of a constituent divided by the total volume of a mixture. Furthermore, in chemistry, four types of mathematical description can be distinguished: mass concentration, molar concentration, number concentration, and volume concentration. The term concentration can be applied to any kind of chemical mixture, but most frequently it refers to solutes in solutions."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Concentration"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Concentration"^^xsd:anyURI ; + qudt:plainTextDescription "In chemistry, concentration is defined as the abundance of a constituent divided by the total volume of a mixture. Furthermore, in chemistry, four types of mathematical description can be distinguished: mass concentration, molar concentration, number concentration, and volume concentration. The term concentration can be applied to any kind of chemical mixture, but most frequently it refers to solutes in solutions." ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Concentration"@en . + +quantitykind:Conductance + a qudt:QuantityKind ; + dcterms:description "$\\textit{Conductance}$, for a resistive two-terminal element or two-terminal circuit with terminals A and B, quotient of the electric current i in the element or circuit by the voltage $u_{AB}$ between the terminals: $G = \\frac{1}{R}$, where the electric current is taken as positive if its direction is from A to B and negative in the opposite case. The conductance of an element or circuit is the inverse of its resistance."^^qudt:LatexString ; + qudt:applicableUnit unit:DeciS ; + qudt:applicableUnit unit:KiloS ; + qudt:applicableUnit unit:MHO ; + qudt:applicableUnit unit:MegaS ; + qudt:applicableUnit unit:MicroMHO ; + qudt:applicableUnit unit:MicroS ; + qudt:applicableUnit unit:MilliS ; + qudt:applicableUnit unit:NanoS ; + qudt:applicableUnit unit:PicoS ; + qudt:applicableUnit unit:S ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-06"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition """$G = Re\\underline{Y}$, where $\\underline{Y}$ is admittance. + +Alternatively: + +$G = \\frac{1}{R}$, where $R$ is resistance."""^^qudt:LatexString ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:Conductance" ; + rdfs:isDefinedBy ; + rdfs:label "Conductance"@en ; + rdfs:seeAlso quantitykind:Admittance . + +quantitykind:ConductionSpeed + a qudt:QuantityKind ; + dcterms:description "\"Conduction Speed\" is the speed of impulses in nerve fibers."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:KiloHZ-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Conduction Speed\" is the speed of impulses in nerve fibers." ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:ConductionSpeed" ; + rdfs:isDefinedBy ; + rdfs:label "Conduction Speed"@en ; + skos:broader quantitykind:Speed . + +quantitykind:ConductiveHeatTransferRate + a qudt:QuantityKind ; + dcterms:description "\"Conductive Heat Transfer Rate\" is proportional to temperature gradient and area of contact."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-MIN ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:BTU_TH-PER-HR ; + qudt:applicableUnit unit:BTU_TH-PER-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloBTU_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloCAL_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL_TH-PER-MIN ; + qudt:applicableUnit unit:KiloCAL_TH-PER-SEC ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi_k$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Conductive Heat Transfer Rate\" is proportional to temperature gradient and area of contact." ; + rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Conductive Heat Transfer Rate"@en ; + skos:broader quantitykind:HeatFlowRate . + +quantitykind:Conductivity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Conductivity}$ is a scalar or tensor quantity the product of which by the electric field strength in a medium is equal to the electric current density. + For an isotropic medium the conductivity is a scalar quantity; for an anisotropic medium it is a tensor quantity. + $$\\mathbf{J} = \\sigma \\mathbf{E}$$ + Where $\\mathbf{J}$ is electric current density, and $\\mathbf{E}$ is electric field strength. + """^^qudt:LatexString ; + qudt:applicableUnit unit:DeciS-PER-M ; + qudt:applicableUnit unit:KiloS-PER-M ; + qudt:applicableUnit unit:MegaS-PER-M ; + qudt:applicableUnit unit:MicroS-PER-CentiM ; + qudt:applicableUnit unit:MicroS-PER-M ; + qudt:applicableUnit unit:MilliS-PER-CentiM ; + qudt:applicableUnit unit:MilliS-PER-M ; + qudt:applicableUnit unit:NanoS-PER-CentiM ; + qudt:applicableUnit unit:NanoS-PER-M ; + qudt:applicableUnit unit:PicoS-PER-M ; + qudt:applicableUnit unit:S-PER-CentiM ; + qudt:applicableUnit unit:S-PER-M ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD025" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-03"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD025"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{J} = \\sigma \\mathbf{E}$, where $\\mathbf{J}$ is electric current density, and $\\mathbf{E}$ is electric field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Conductivity\" is a scalar or tensor quantity the product of which by the electric field strength in a medium is equal to the electric current density. For an isotropic medium the conductivity is a scalar quantity; for an anisotropic medium it is a tensor quantity." ; + rdfs:comment "Applicable units are those of quantitykind:Conductivity" ; + rdfs:isDefinedBy ; + rdfs:label "Conductivity"@en ; + rdfs:seeAlso quantitykind:ElectricCurrentDensity ; + rdfs:seeAlso quantitykind:ElectricFieldStrength . + +quantitykind:ConductivityVariance_NEON + a qudt:QuantityKind ; + dcterms:description "Variance for NEON conductivity data measured in MicroS-PER-CM" ; + qudt:applicableUnit unit:MicroS2-PER-CentiM2 ; + qudt:hasDimensionVector qkdv:A0E4L-6I0M-2H0T6D0 ; + qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ; + qudt:plainTextDescription "Variance for NEON conductivity data measured in MicroS-PER-CM" ; + rdfs:comment "Applicable units are those of quantitykind:ConductivityVariance_NEON" ; + rdfs:isDefinedBy ; + rdfs:label "Conductivity Variance, NEON"@en . + +quantitykind:Constringence + a qudt:QuantityKind ; + dcterms:description "In optics and lens design, constringence of a transparent material, also known as the Abbe number or the V-number, is an approximate measure of the material's dispersion (change of refractive index versus wavelength), with high values of V indicating low dispersion."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Abbe_number"^^xsd:anyURI ; + qudt:symbol "V" ; + rdfs:comment "Applicable units are those of quantitykind:Constringence" ; + rdfs:isDefinedBy ; + rdfs:label "Constringence"@en ; + skos:altLabel "Abbe Number"@en ; + skos:altLabel "V-number"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:ConvectiveHeatTransfer + a qudt:QuantityKind ; + dcterms:description "\"Convective Heat Transfer\" is convective heat transfer coefficient multiplied by temperature difference and exchange area. "^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-MIN ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:BTU_TH-PER-HR ; + qudt:applicableUnit unit:BTU_TH-PER-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloBTU_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloCAL_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL_TH-PER-MIN ; + qudt:applicableUnit unit:KiloCAL_TH-PER-SEC ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_transfer#Convection"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi_c$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Convective Heat Transfer\" is convective heat transfer coefficient multiplied by temperature difference and exchange area. " ; + rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Convective Heat Transfer"@en ; + skos:broader quantitykind:HeatFlowRate . + +quantitykind:CorrelatedColorTemperature + a qudt:QuantityKind ; + dcterms:description "Correlated color temperature (CCT) is a measure of light source color appearance defined by the proximity of the light source's chromaticity coordinates to the blackbody locus, as a single number rather than the two required to specify a chromaticity."^^qudt:LatexString ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliK ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "https://www.lrc.rpi.edu/programs/NLPIP/lightingAnswers/pdf/print/lightSources.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Correlated color temperature (CCT) is a measure of light source color appearance defined by the proximity of the light source's chromaticity coordinates to the blackbody locus, as a single number rather than the two required to specify a chromaticity." ; + rdfs:comment "Applicable units are those of quantitykind:CorrelatedColorTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Correlated Color Temperature"@en-US ; + rdfs:label "Correlated Colour Temperature"@en ; + rdfs:seeAlso quantitykind:Duv ; + skos:broader quantitykind:ThermodynamicTemperature . + +quantitykind:CostPerArea + a qudt:QuantityKind ; + qudt:applicableUnit unit:CCY_EUR-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:informativeReference "https://www.designingbuildings.co.uk/wiki/Cost_per_m2_of_gross_internal_floor_area"^^xsd:anyURI ; + qudt:plainTextDescription "In the construction industry, cost per area is the unit rate which, when multiplied by the gross internal floor area (GIFA), gives the total building works estimate (i.e.works cost estimate less main contractor’s preliminaries and main contractor’s overheads and profit)." ; + rdfs:comment "Applicable units are those of quantitykind:CostPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Kosten pro Fläche"@de ; + rdfs:label "cost per area"@en . + +quantitykind:CostPerEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:CCY_EUR-PER-KiloW-HR ; + qudt:applicableUnit unit:CCY_EUR-PER-W-HR ; + qudt:applicableUnit unit:CCY_EUR-PER-W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Cost_of_electricity_by_source"^^xsd:anyURI ; + qudt:plainTextDescription "The monetary cost of a unit of energy" ; + rdfs:comment "Applicable units are those of quantitykind:CostPerEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Energiekosten"@de ; + rdfs:label "energy cost"@en . + +quantitykind:CostPerMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:CHF-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:plainTextDescription "Represents the cost associated with a unit mass of a substance or material. It is typically used in economic and engineering contexts to evaluate the expense incurred per kilogram, gram, or other units of mass. This measure helps in comparing the economic efficiency of different materials or substances based on their mass." ; + rdfs:comment "Applicable units are those of quantitykind:CostPerMass" ; + rdfs:isDefinedBy ; + rdfs:label "Kosten pro Masse"@de ; + rdfs:label "cost per mass"@en . + +quantitykind:CostPerPower + a qudt:QuantityKind ; + qudt:applicableUnit unit:CCY_EUR-PER-KiloW ; + qudt:applicableUnit unit:CCY_EUR-PER-W ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T3D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Photovoltaics"^^xsd:anyURI ; + qudt:plainTextDescription "In photovoltaics, cost per power of electricity produced measures the cost of installing the hardware relative to the power produced." ; + rdfs:comment "Applicable units are those of quantitykind:CostPerPower" ; + rdfs:isDefinedBy ; + rdfs:label "Anschaffungskosten pro Watt"@de ; + rdfs:label "cost per power"@en . + +quantitykind:Count + a qudt:QuantityKind ; + dcterms:description "\"Count\" is the value of a count of items."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "\"Count\" is the value of a count of items." ; + rdfs:comment "Applicable units are those of quantitykind:Count" ; + rdfs:isDefinedBy ; + rdfs:label "Count"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:CountRate + a qudt:QuantityKind ; + dcterms:description "A measure of a number of items counted per time period."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-MIN ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2/HTML/link/ifcintegercountratemeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "This measure may be used for measuring integer units per second or per hour. For example, it may be used to measure the number of books per hour passing along a part of a mechanical book handling system, the number of people per hour travelling along a moving walkway or the number of vehicles per hour travelling along a section of road. " ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:CountRate" ; + rdfs:isDefinedBy ; + rdfs:label "CountRate"@en ; + skos:broader quantitykind:Frequency . + +quantitykind:CouplingFactor + a qudt:QuantityKind ; + dcterms:description "\"Coupling Factor\" is the ratio of an electromagnetic quantity, usually voltage or current, appearing at a specified location of a given circuit to the corresponding quantity at a specified location in the circuit from which energy is transferred by coupling."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=161-03-18"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "For inductive coupling between two inductive elements, $k = \\frac{\\left | L_{mn} \\right |}{\\sqrt{L_m L_n}}$, where $L_m$ and $L_n$ are their self inductances, and $L_{mn}$ is their mutual inductance."^^qudt:LatexString ; + qudt:plainTextDescription "\"Coupling Factor\" is the ratio of an electromagnetic quantity, usually voltage or current, appearing at a specified location of a given circuit to the corresponding quantity at a specified location in the circuit from which energy is transferred by coupling." ; + qudt:symbol "k" ; + rdfs:comment "Applicable units are those of quantitykind:CouplingFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Constantă de cuplaj"@ro ; + rdfs:label "constante de acoplamiento"@es ; + rdfs:label "constante de couplage"@fr ; + rdfs:label "coupling factor"@en ; + rdfs:label "fattore di accoppiamento"@it ; + rdfs:label "stała sprzężenia"@pl ; + rdfs:label "Çiftlenim sabiti"@tr ; + rdfs:label "Константа взаимодействия"@ru ; + rdfs:label "結合定数"@ja ; + rdfs:label "耦合常數"@zh . + +quantitykind:CrossSection + a qudt:QuantityKind ; + dcterms:description "\"Cross-section\" is used to express the likelihood of interaction between particles. For a specified target particle and for a specified reaction or process produced by incident charged or uncharged particles of specified type and energy, it is the mean number of such reactions or processes divided by the incident-particle fluence."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD026" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD026"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Cross-section\" is used to express the likelihood of interaction between particles. For a specified target particle and for a specified reaction or process produced by incident charged or uncharged particles of specified type and energy, it is the mean number of such reactions or processes divided by the incident-particle fluence." ; + qudt:symbol "σ" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Cross-section"@en ; + skos:broader quantitykind:Area . + +quantitykind:CrossSectionalArea + a qudt:QuantityKind ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Cross-sectional Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:CubicExpansionCoefficient + a qudt:QuantityKind ; + qudt:applicableUnit unit:M-PER-DEG_C-M ; + qudt:applicableUnit unit:MilliM-PER-DEG_C-M ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:applicableUnit unit:PPM-PER-K ; + qudt:applicableUnit unit:PPTM-PER-K ; + qudt:expression "$cubic-exp-coef$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_V = \\frac{1}{V} \\; \\frac{dV}{dT}$, where $V$ is $volume$ and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_v$"^^qudt:LatexString ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H1T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ExpansionRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Hullámszám"@hu ; + rdfs:label "Volumenausdehnungskoeffizient"@de ; + rdfs:label "coefficient de dilatation volumique"@fr ; + rdfs:label "coefficiente di dilatazione volumica"@it ; + rdfs:label "coeficiente de dilatación cúbica"@es ; + rdfs:label "coeficiente de dilatação volúmica"@pt ; + rdfs:label "cubic expansion coefficient"@en ; + rdfs:label "kübik genleşme katsayısı"@tr ; + rdfs:label "współczynnik rozszerzalności objętościowej"@pl ; + rdfs:label "Κυματαριθμός"@el ; + rdfs:label "Вълново число"@bg ; + rdfs:label "Температурный коэффициент"@ru ; + rdfs:label "מספר גל"@he ; + rdfs:label "ضریب انبساط گرمایی"@fa ; + rdfs:label "معامل التمدد الحجمى"@ar ; + rdfs:label "体膨胀系数"@zh ; + rdfs:label "線膨張係数"@ja ; + skos:broader quantitykind:ExpansionRatio . + +quantitykind:CurieTemperature + a qudt:QuantityKind ; + dcterms:description "\"Curie Temperature\" is the critical thermodynamic temperature of a ferromagnet."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Curie_temperature"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Curie Temperature\" is the critical thermodynamic temperature of a ferromagnet." ; + qudt:symbol "T_C" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Curie sıcaklığı"@tr ; + rdfs:label "Curie temperature"@en ; + rdfs:label "Curie-Temperatur"@de ; + rdfs:label "Curieova teplota"@cs ; + rdfs:label "Punct Curie"@ro ; + rdfs:label "Suhu Curie"@ms ; + rdfs:label "punto di Curie"@it ; + rdfs:label "temperatura Curie"@pl ; + rdfs:label "temperatura de Curie"@es ; + rdfs:label "temperatura de Curie"@pt ; + rdfs:label "température de Curie"@fr ; + rdfs:label "Точка Кюри"@ru ; + rdfs:label "درجة حرارة كوري"@ar ; + rdfs:label "نقطه کوری"@fa ; + rdfs:label "क्यूरी ताप"@hi ; + rdfs:label "キュリー温度"@ja ; + rdfs:label "居里点"@zh ; + skos:broader quantitykind:Temperature ; + skos:closeMatch quantitykind:NeelTemperature ; + skos:closeMatch quantitykind:SuperconductionTransitionTemperature . + +quantitykind:Currency + a qudt:QuantityKind ; + qudt:applicableUnit unit:CCY_AED ; + qudt:applicableUnit unit:CCY_AFN ; + qudt:applicableUnit unit:CCY_ALL ; + qudt:applicableUnit unit:CCY_AMD ; + qudt:applicableUnit unit:CCY_ANG ; + qudt:applicableUnit unit:CCY_AOA ; + qudt:applicableUnit unit:CCY_ARS ; + qudt:applicableUnit unit:CCY_AUD ; + qudt:applicableUnit unit:CCY_AWG ; + qudt:applicableUnit unit:CCY_AZN ; + qudt:applicableUnit unit:CCY_BAM ; + qudt:applicableUnit unit:CCY_BBD ; + qudt:applicableUnit unit:CCY_BDT ; + qudt:applicableUnit unit:CCY_BGN ; + qudt:applicableUnit unit:CCY_BHD ; + qudt:applicableUnit unit:CCY_BIF ; + qudt:applicableUnit unit:CCY_BMD ; + qudt:applicableUnit unit:CCY_BND ; + qudt:applicableUnit unit:CCY_BOB ; + qudt:applicableUnit unit:CCY_BOV ; + qudt:applicableUnit unit:CCY_BRL ; + qudt:applicableUnit unit:CCY_BSD ; + qudt:applicableUnit unit:CCY_BTN ; + qudt:applicableUnit unit:CCY_BWP ; + qudt:applicableUnit unit:CCY_BYN ; + qudt:applicableUnit unit:CCY_BZD ; + qudt:applicableUnit unit:CCY_CAD ; + qudt:applicableUnit unit:CCY_CDF ; + qudt:applicableUnit unit:CCY_CHE ; + qudt:applicableUnit unit:CCY_CHF ; + qudt:applicableUnit unit:CCY_CHW ; + qudt:applicableUnit unit:CCY_CLF ; + qudt:applicableUnit unit:CCY_CLP ; + qudt:applicableUnit unit:CCY_CNY ; + qudt:applicableUnit unit:CCY_COP ; + qudt:applicableUnit unit:CCY_COU ; + qudt:applicableUnit unit:CCY_CRC ; + qudt:applicableUnit unit:CCY_CUP ; + qudt:applicableUnit unit:CCY_CVE ; + qudt:applicableUnit unit:CCY_CYP ; + qudt:applicableUnit unit:CCY_CZK ; + qudt:applicableUnit unit:CCY_DJF ; + qudt:applicableUnit unit:CCY_DKK ; + qudt:applicableUnit unit:CCY_DOP ; + qudt:applicableUnit unit:CCY_DZD ; + qudt:applicableUnit unit:CCY_EEK ; + qudt:applicableUnit unit:CCY_EGP ; + qudt:applicableUnit unit:CCY_ERN ; + qudt:applicableUnit unit:CCY_ETB ; + qudt:applicableUnit unit:CCY_EUR ; + qudt:applicableUnit unit:CCY_FJD ; + qudt:applicableUnit unit:CCY_FKP ; + qudt:applicableUnit unit:CCY_GBP ; + qudt:applicableUnit unit:CCY_GEL ; + qudt:applicableUnit unit:CCY_GHS ; + qudt:applicableUnit unit:CCY_GIP ; + qudt:applicableUnit unit:CCY_GMD ; + qudt:applicableUnit unit:CCY_GNF ; + qudt:applicableUnit unit:CCY_GTQ ; + qudt:applicableUnit unit:CCY_GYD ; + qudt:applicableUnit unit:CCY_HKD ; + qudt:applicableUnit unit:CCY_HNL ; + qudt:applicableUnit unit:CCY_HRK ; + qudt:applicableUnit unit:CCY_HTG ; + qudt:applicableUnit unit:CCY_HUF ; + qudt:applicableUnit unit:CCY_IDR ; + qudt:applicableUnit unit:CCY_ILS ; + qudt:applicableUnit unit:CCY_INR ; + qudt:applicableUnit unit:CCY_IQD ; + qudt:applicableUnit unit:CCY_IRR ; + qudt:applicableUnit unit:CCY_ISK ; + qudt:applicableUnit unit:CCY_JMD ; + qudt:applicableUnit unit:CCY_JOD ; + qudt:applicableUnit unit:CCY_JPY ; + qudt:applicableUnit unit:CCY_KES ; + qudt:applicableUnit unit:CCY_KGS ; + qudt:applicableUnit unit:CCY_KHR ; + qudt:applicableUnit unit:CCY_KMF ; + qudt:applicableUnit unit:CCY_KPW ; + qudt:applicableUnit unit:CCY_KRW ; + qudt:applicableUnit unit:CCY_KWD ; + qudt:applicableUnit unit:CCY_KYD ; + qudt:applicableUnit unit:CCY_KZT ; + qudt:applicableUnit unit:CCY_LAK ; + qudt:applicableUnit unit:CCY_LBP ; + qudt:applicableUnit unit:CCY_LKR ; + qudt:applicableUnit unit:CCY_LRD ; + qudt:applicableUnit unit:CCY_LSL ; + qudt:applicableUnit unit:CCY_LTL ; + qudt:applicableUnit unit:CCY_LVL ; + qudt:applicableUnit unit:CCY_LYD ; + qudt:applicableUnit unit:CCY_MAD ; + qudt:applicableUnit unit:CCY_MDL ; + qudt:applicableUnit unit:CCY_MGA ; + qudt:applicableUnit unit:CCY_MKD ; + qudt:applicableUnit unit:CCY_MMK ; + qudt:applicableUnit unit:CCY_MNT ; + qudt:applicableUnit unit:CCY_MOP ; + qudt:applicableUnit unit:CCY_MRU ; + qudt:applicableUnit unit:CCY_MTL ; + qudt:applicableUnit unit:CCY_MUR ; + qudt:applicableUnit unit:CCY_MVR ; + qudt:applicableUnit unit:CCY_MWK ; + qudt:applicableUnit unit:CCY_MXN ; + qudt:applicableUnit unit:CCY_MXV ; + qudt:applicableUnit unit:CCY_MYR ; + qudt:applicableUnit unit:CCY_MZN ; + qudt:applicableUnit unit:CCY_NAD ; + qudt:applicableUnit unit:CCY_NGN ; + qudt:applicableUnit unit:CCY_NIO ; + qudt:applicableUnit unit:CCY_NOK ; + qudt:applicableUnit unit:CCY_NPR ; + qudt:applicableUnit unit:CCY_NZD ; + qudt:applicableUnit unit:CCY_OMR ; + qudt:applicableUnit unit:CCY_PAB ; + qudt:applicableUnit unit:CCY_PEN ; + qudt:applicableUnit unit:CCY_PGK ; + qudt:applicableUnit unit:CCY_PHP ; + qudt:applicableUnit unit:CCY_PKR ; + qudt:applicableUnit unit:CCY_PLN ; + qudt:applicableUnit unit:CCY_PYG ; + qudt:applicableUnit unit:CCY_QAR ; + qudt:applicableUnit unit:CCY_RON ; + qudt:applicableUnit unit:CCY_RSD ; + qudt:applicableUnit unit:CCY_RUB ; + qudt:applicableUnit unit:CCY_RWF ; + qudt:applicableUnit unit:CCY_SAR ; + qudt:applicableUnit unit:CCY_SBD ; + qudt:applicableUnit unit:CCY_SCR ; + qudt:applicableUnit unit:CCY_SDG ; + qudt:applicableUnit unit:CCY_SEK ; + qudt:applicableUnit unit:CCY_SGD ; + qudt:applicableUnit unit:CCY_SHP ; + qudt:applicableUnit unit:CCY_SKK ; + qudt:applicableUnit unit:CCY_SLE ; + qudt:applicableUnit unit:CCY_SOS ; + qudt:applicableUnit unit:CCY_SRD ; + qudt:applicableUnit unit:CCY_STN ; + qudt:applicableUnit unit:CCY_SYP ; + qudt:applicableUnit unit:CCY_SZL ; + qudt:applicableUnit unit:CCY_THB ; + qudt:applicableUnit unit:CCY_TJS ; + qudt:applicableUnit unit:CCY_TMT ; + qudt:applicableUnit unit:CCY_TND ; + qudt:applicableUnit unit:CCY_TOP ; + qudt:applicableUnit unit:CCY_TRY ; + qudt:applicableUnit unit:CCY_TTD ; + qudt:applicableUnit unit:CCY_TWD ; + qudt:applicableUnit unit:CCY_TZS ; + qudt:applicableUnit unit:CCY_UAH ; + qudt:applicableUnit unit:CCY_UGX ; + qudt:applicableUnit unit:CCY_USD ; + qudt:applicableUnit unit:CCY_USN ; + qudt:applicableUnit unit:CCY_USS ; + qudt:applicableUnit unit:CCY_UYU ; + qudt:applicableUnit unit:CCY_UZS ; + qudt:applicableUnit unit:CCY_VES ; + qudt:applicableUnit unit:CCY_VND ; + qudt:applicableUnit unit:CCY_VUV ; + qudt:applicableUnit unit:CCY_WST ; + qudt:applicableUnit unit:CCY_XAF ; + qudt:applicableUnit unit:CCY_XAG ; + qudt:applicableUnit unit:CCY_XAU ; + qudt:applicableUnit unit:CCY_XBA ; + qudt:applicableUnit unit:CCY_XBB ; + qudt:applicableUnit unit:CCY_XBC ; + qudt:applicableUnit unit:CCY_XBD ; + qudt:applicableUnit unit:CCY_XCD ; + qudt:applicableUnit unit:CCY_XDR ; + qudt:applicableUnit unit:CCY_XFO ; + qudt:applicableUnit unit:CCY_XFU ; + qudt:applicableUnit unit:CCY_XOF ; + qudt:applicableUnit unit:CCY_XPD ; + qudt:applicableUnit unit:CCY_XPF ; + qudt:applicableUnit unit:CCY_XPT ; + qudt:applicableUnit unit:CCY_YER ; + qudt:applicableUnit unit:CCY_ZAR ; + qudt:applicableUnit unit:CCY_ZMW ; + qudt:applicableUnit unit:CCY_ZWL ; + qudt:applicableUnit unit:MegaCCY_USD ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Currency"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Currency"^^xsd:anyURI ; + qudt:plainTextDescription "In economics, currency is a generally accepted medium of exchange. These are usually the coins and banknotes of a particular government, which comprise the physical aspects of a nation's money supply. The other part of a nation's money supply consists of bank deposits (sometimes called deposit money), ownership of which can be transferred by means of cheques, debit cards, or other forms of money transfer. Deposit money and currency are money in the sense that both are acceptable as a means of payment." ; + rdfs:comment "Applicable units are those of quantitykind:Currency" ; + rdfs:isDefinedBy ; + rdfs:label "Currency"@en ; + skos:broader quantitykind:Asset . + +quantitykind:CurrencyPerFlight + a qudt:QuantityKind ; + qudt:applicableUnit unit:MegaCCY_USD-PER-FLIGHT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:CurrencyPerFlight" ; + rdfs:isDefinedBy ; + rdfs:label "Currency Per Flight"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:CurrentLinkage + a qudt:QuantityKind ; + dcterms:description "\"Current Linkage\" is the net electric current through a surface delimited by a closed loop."^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:expression "$current-linkage$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-60"^^xsd:anyURI ; + qudt:latexSymbol "$\\Theta$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Current Linkage\" is the net electric current through a surface delimited by a closed loop." ; + rdfs:comment "Applicable units are those of quantitykind:CurrentLinkage" ; + rdfs:isDefinedBy ; + rdfs:label "Current Linkage"@en . + +quantitykind:CurrentOfTheAmountOfSubstance + a qudt:QuantityKind ; + dcterms:description "ratio of the amount of substance divided by the related time"@en ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient Stoffmenge dividiert durch die zugehörige Zeit"@de ; + qudt:symbol "0173-1#Z4-BAJ384#002" ; + rdfs:isDefinedBy ; + rdfs:label "current of the amount of substance"@en-US . + +quantitykind:Curvature + a qudt:QuantityKind ; + dcterms:description "The canonical example of extrinsic curvature is that of a circle, which has curvature equal to the inverse of its radius everywhere. Smaller circles bend more sharply, and hence have higher curvature. The curvature of a smooth curve is defined as the curvature of its osculating circle at each point. The osculating circle of a sufficiently smooth plane curve at a given point on the curve is the circle whose center lies on the inner normal line and whose curvature is the same as that of the given curve at that point. This circle is tangent to the curve at the given point. The magnitude of curvature at points on physical curves can be measured in $diopters$ (also spelled $dioptre$) — this is the convention in optics."^^qudt:LatexString ; + qudt:applicableUnit unit:DIOPTER ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Curvature"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Curvature"^^xsd:anyURI ; + qudt:plainTextDescription """The canonical example of extrinsic curvature is that of a circle, which has curvature equal to the inverse of its radius everywhere. Smaller circles bend more sharply, and hence have higher curvature. The curvature of a smooth curve is defined as the curvature of its osculating circle at each point. The osculating circle of a sufficiently smooth plane curve at a given point on the curve is the circle whose center lies on the inner normal line and whose curvature is the same as that of the given curve at that point. This circle is tangent to the curve at the given point. +That is, given a point P on a smooth curve C, the curvature of C at P is defined to be 1/R where R is the radius of the osculating circle of C at P. The magnitude of curvature at points on physical curves can be measured in diopters (also spelled dioptre) — this is the convention in optics. [Wikipedia],""" ; + rdfs:comment "Applicable units are those of quantitykind:Curvature" ; + rdfs:isDefinedBy ; + rdfs:label "Curvature"@en ; + skos:broader quantitykind:InverseLength . + +quantitykind:CurvatureFromRadius + a qudt:QuantityKind ; + dcterms:description "In mathematics \"Curvature\" is the amount by which a geometric object deviates from being flat, or straight in the case of a line, but this is defined in different ways depending on the context."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Curvature"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\kappa = \\frac{1}{\\rho}$, where $\\rho$ is the radius of the curvature."^^qudt:LatexString ; + qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ; + qudt:plainTextDescription "In mathematics \"Curvature\" is the amount by which a geometric object deviates from being flat, or straight in the case of a line, but this is defined in different ways depending on the context." ; + rdfs:comment "Applicable units are those of quantitykind:CurvatureFromRadius" ; + rdfs:isDefinedBy ; + rdfs:label "Curvature"@en ; + skos:closeMatch quantitykind:Curvature . + +quantitykind:CutoffCurrentRating + a qudt:QuantityKind ; + dcterms:description "cut-off current parameter as rating for fuses and switches, derived from the so-called Joule integral"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Durchlassstrom-Kennwert als Bemessungsgröße für Sicherungen und Schalter, welcher abgeleitet ist aus dem sogenannten Joule-Integral"@de ; + qudt:symbol "0173-1#Z4-BAJ325#003" ; + rdfs:isDefinedBy ; + rdfs:label "I²t-value"@en-US . + +quantitykind:CyclotronAngularFrequency + a qudt:QuantityKind ; + dcterms:description "The \"Cyclotron Angular Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_cyclotron_resonance"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\omega_c = \\frac{\\left | q \\right |}{m}B$, where $q$ is the electric charge, $m$ is its mass, and $B$ is the magnetic flux density."^^qudt:LatexString ; + qudt:latexSymbol "$\\omega_c$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Cyclotron Angular Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency." ; + rdfs:comment "Applicable units are those of quantitykind:AngularFrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Larmor Angular Frequency"@en ; + skos:broader quantitykind:AngularFrequency . + +quantitykind:DELTA-V + a qudt:QuantityKind ; + dcterms:description "The change in translational velocity including all losses for a propulsive system or module. Delta-V losses include, but are not limited to, gravity losses and steering losses."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Delta-v"^^xsd:anyURI ; + qudt:latexSymbol "$\\bigtriangleup v$"^^qudt:LatexString ; + qudt:plainTextDescription "The change in translational velocity including all losses for a propulsive system or module. Delta-V losses include, but are not limited to, gravity losses and steering losses." ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Delta-V"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:DRY-MASS + a qudt:QuantityKind ; + dcterms:description "Mass of a system without the propellants, pressurants, reserve or residual fluids, personnel and personnel provisions, and cargo."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Mass of a system without the propellants, pressurants, reserve or residual fluids, personnel and personnel provisions, and cargo." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Dry Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:DataRate + a qudt:QuantityKind ; + dcterms:description "The frequency derived from the period of time required to transmit one bit. This represents the amount of data transferred per second by a communications channel or a computing or storage device. Data rate is measured in units of bits per second (written \"b/s\" or \"bps\"), bytes per second (Bps), or baud. When applied to data rate, the multiplier prefixes \"kilo-\", \"mega-\", \"giga-\", etc. (and their abbreviations, \"k\", \"M\", \"G\", etc.) always denote powers of 1000. For example, 64 kbps is 64,000 bits per second. This contrasts with units of storage which use different prefixes to denote multiplication by powers of 1024, for example 1 kibibit = 1024 bits."^^qudt:LatexString ; + qudt:applicableUnit unit:BIT-PER-SEC ; + qudt:applicableUnit unit:ExaBIT-PER-SEC ; + qudt:applicableUnit unit:GigaBIT-PER-SEC ; + qudt:applicableUnit unit:KiloBIT-PER-SEC ; + qudt:applicableUnit unit:KiloBYTE-PER-SEC ; + qudt:applicableUnit unit:MegaBIT-PER-SEC ; + qudt:applicableUnit unit:PetaBIT-PER-SEC ; + qudt:applicableUnit unit:TeraBIT-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Data_rate"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "The frequency derived from the period of time required to transmit one bit. This represents the amount of data transferred per second by a communications channel or a computing or storage device. Data rate is measured in units of bits per second (written \"b/s\" or \"bps\"), bytes per second (Bps), or baud. When applied to data rate, the multiplier prefixes \"kilo-\", \"mega-\", \"giga-\", etc. (and their abbreviations, \"k\", \"M\", \"G\", etc.) always denote powers of 1000. For example, 64 kbps is 64,000 bits per second. This contrasts with units of storage which use different prefixes to denote multiplication by powers of 1024, for example 1 kibibit = 1024 bits." ; + rdfs:comment "Applicable units are those of quantitykind:DataRate" ; + rdfs:isDefinedBy ; + rdfs:label "Data Rate"@en ; + skos:broader quantitykind:InformationFlowRate . + +quantitykind:DataTransmissionRate + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + rdfs:isDefinedBy ; + rdfs:label "data transmission rate"@en-US . + +quantitykind:DatasetOfBits + a qudt:QuantityKind ; + qudt:applicableUnit unit:GibiBIT ; + qudt:applicableUnit unit:GigaBIT ; + qudt:applicableUnit unit:KibiBIT ; + qudt:applicableUnit unit:KiloBIT ; + qudt:applicableUnit unit:MebiBIT ; + qudt:applicableUnit unit:MegaBIT ; + qudt:applicableUnit unit:OCTET ; + qudt:applicableUnit unit:PetaBIT ; + qudt:applicableUnit unit:TeraBIT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD027" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD027"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:DatasetOfBits" ; + rdfs:isDefinedBy ; + rdfs:label "dataset of bits" . + +quantitykind:DatasetOfBytes + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD028" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD028"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "dataset of bytes" . + +quantitykind:Debye-WallerFactor + a qudt:QuantityKind ; + dcterms:description "\"Debye-Waller Factor\" (DWF), named after Peter Debye and Ivar Waller, is used in condensed matter physics to describe the attenuation of x-ray scattering or coherent neutron scattering caused by thermal motion. Also, a factor by which the intensity of a diffraction line is reduced because of the lattice vibrations."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Debye–Waller_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$u = R - R_0$, where $R$ is the particle position vector and $R_0$ is the equilibrium position vector of a particle."^^qudt:LatexString ; + qudt:plainTextDescription "\"Debye-Waller Factor\" (DWF), named after Peter Debye and Ivar Waller, is used in condensed matter physics to describe the attenuation of x-ray scattering or coherent neutron scattering caused by thermal motion. Also, a factor by which the intensity of a diffraction line is reduced because of the lattice vibrations." ; + qudt:symbol "D, B" ; + rdfs:comment "Applicable units are those of quantitykind:Debye-WallerFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Debye-Waller Factor"@en . + +quantitykind:DebyeAngularFrequency + a qudt:QuantityKind ; + dcterms:description "\"Debye Angular Frequency\" is the cut-off angular frequency in the Debye model of the vibrational spectrum of a solid."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Debye_model#Debye_frequency"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\omega_b$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Debye Angular Frequency\" is the cut-off angular frequency in the Debye model of the vibrational spectrum of a solid." ; + rdfs:comment "Applicable units are those of quantitykind:AngularFrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Debye Angular Frequency"@en ; + skos:broader quantitykind:AngularFrequency . + +quantitykind:DebyeAngularWavenumber + a qudt:QuantityKind ; + dcterms:description "\"Debye Angular Wavenumber\" is the cut-off angular wavenumber in the Debye model of the vibrational spectrum of a solid."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-M ; + qudt:applicableUnit unit:RAD-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Debye Angular Wavenumber\" is the cut-off angular wavenumber in the Debye model of the vibrational spectrum of a solid." ; + qudt:symbol "q_D" ; + rdfs:comment "Applicable units are those of quantitykind:DebyeAngularWavenumber" ; + rdfs:isDefinedBy ; + rdfs:label "Debye Angular Wavenumber"@en ; + skos:broader quantitykind:InverseLength . + +quantitykind:DebyeTemperature + a qudt:QuantityKind ; + dcterms:description "\"Debye Temperature\" is the temperature at which the highest-frequency mode (and hence all modes) are excited."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Debye_model"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$\\Theta_D = \\frac{\\hbar\\omega_D}{k}$, where $k$ is the Boltzmann constant, $\\hbar$ is the reduced Planck constant, and $\\omega_D$ is the Debye angular frequency."^^qudt:LatexString ; + qudt:latexSymbol "$\\Theta_D$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Debye Temperature\" is the temperature at which the highest-frequency mode (and hence all modes) are excited." ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Debye Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:DecayConstant + a qudt:QuantityKind ; + dcterms:description "The \"Decay Constant\" is the proportionality between the size of a population of radioactive atoms and the rate at which the population decreases because of radioactive decay."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloCi ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Exponential_decay"^^xsd:anyURI ; + qudt:informativeReference "http://www.britannica.com/EBchecked/topic/154945/decay-constant"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "Relative variation $\\frac{dN}{N}$ of the number $N$ of atoms or nuclei in a system, due to spontaneous emission from these atoms or nuclei during an infinitesimal time interval, divided by its duration $dt$, thus $\\lambda = -\\frac{1}{N}\\frac{dN}{dt}$."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Decay Constant\" is the proportionality between the size of a population of radioactive atoms and the rate at which the population decreases because of radioactive decay." ; + rdfs:comment "Applicable units are those of quantitykind:DecayConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Decay Constant"@en ; + skos:broader quantitykind:InverseTime . + +quantitykind:DegreeOfDissociation + a qudt:QuantityKind ; + dcterms:description "The \"Degree of Dissociation\" is the fraction of original solute molecules that have dissociated."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Faraday_constant"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dissociation_(chemistry)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Degree of Dissociation\" is the fraction of original solute molecules that have dissociated." ; + rdfs:comment "Applicable units are those of quantitykind:DegreeOfDissociation" ; + rdfs:isDefinedBy ; + rdfs:label "Degree of Dissociation"@en . + +quantitykind:Density + a qudt:QuantityKind ; + dcterms:description """ + The mass density or density of a material is defined as its mass per unit volume. + The symbol most often used for density is $\\rho$. + Mathematically, density is defined as mass divided by volume: $\\rho = m/V$, + where $\\rho$ is the density, $m$ is the mass, and $V$ is the volume. + In some cases, density is also defined as its weight per unit volume, although this quantity is more properly called specific weight. + """^^qudt:LatexString ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Density"^^xsd:anyURI ; + qudt:exactMatch quantitykind:MassDensity ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD029" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Density"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD029"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = m/V$, where $\\rho$ is the density, $m$ is the mass, and $V$ is the volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:DENS ; + rdfs:comment "Applicable units are those of quantitykind:Density" ; + rdfs:isDefinedBy ; + rdfs:label "Density"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:DensityInCombustionChamber + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:latexSymbol "$\\rho_c$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MassDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Density In Combustion Chamber"@en ; + skos:broader quantitykind:MassDensity . + +quantitykind:DensityOfStates + a qudt:QuantityKind ; + dcterms:description "\"Density of States\" is the number of vibrational modes in an infinitesimal interval of angular frequency divided by the range of that interval and by volume."^^qudt:LatexString ; + qudt:applicableUnit unit:SEC-PER-RAD-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD030" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Density_of_states"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD030"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Density of States\" is the number of vibrational modes in an infinitesimal interval of angular frequency divided by the range of that interval and by volume." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:DensityOfStates" ; + rdfs:isDefinedBy ; + rdfs:label "Density of states"@en . + +quantitykind:DensityOfTheExhaustGases + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Density" ; + rdfs:isDefinedBy ; + rdfs:label "Density Of The Exhaust Gases"@en ; + skos:broader quantitykind:Density . + +quantitykind:Depth + a qudt:QuantityKind ; + dcterms:description "Depth typically refers to the vertical measure of length from the surface of a liquid."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Depth typically refers to the vertical measure of length from the surface of a liquid." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Depth"@en ; + skos:broader quantitykind:Length . + +quantitykind:DewPointTemperature + a qudt:QuantityKind ; + dcterms:description "\"Dew Point Temperature\" is the temperature at which vapour in air reaches saturation."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "\"Dew Point Temperature\" is the temperature at which vapour in air reaches saturation." ; + qudt:symbol "T_d" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Dew Point Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:Diameter + a qudt:QuantityKind ; + dcterms:description "In classical geometry, the \"Diameter\" of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circle. "^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Diameter"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Diameter"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$d = 2r$, where $r$ is the radius of the circle."^^qudt:LatexString ; + qudt:plainTextDescription "In classical geometry, the \"Diameter\" of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circle. " ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Durchmesser"@de ; + rdfs:label "diameter"@en ; + rdfs:label "diametro"@it ; + rdfs:label "diamètre"@fr ; + rdfs:label "diámetro"@es ; + rdfs:label "diâmetro"@pt ; + rdfs:label "premer"@sl ; + rdfs:label "průměr"@cs ; + rdfs:label "çap"@tr ; + rdfs:label "średnica"@pl ; + rdfs:label "диаметр"@ru ; + rdfs:label "قطر"@ar ; + rdfs:label "قطر"@fa ; + rdfs:label "直径"@ja ; + rdfs:label "直径"@zh ; + skos:broader quantitykind:Length . + +quantitykind:DiastolicBloodPressure + a qudt:QuantityKind ; + dcterms:description "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199549351.001.0001/acref-9780199549351-e-1162"^^xsd:anyURI ; + qudt:plainTextDescription "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Diastolic Blood Pressure"@en ; + rdfs:seeAlso quantitykind:SystolicBloodPressure ; + skos:broader quantitykind:Pressure . + +quantitykind:DiffusionArea + a qudt:QuantityKind ; + dcterms:description "\"Diffusion Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the point where a neutron enters a specified class and the point where it leaves that class."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/diffusion+area"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Diffusion Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the point where a neutron enters a specified class and the point where it leaves that class." ; + qudt:symbol "L^2" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusion Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:DiffusionCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Diffusion Coefficient\" is a proportionality constant between the molar flux due to molecular diffusion and the gradient in the concentration of the species (or the driving force for diffusion). Diffusivity is encountered in Fick's law and numerous other equations of physical chemistry."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD031" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_diffusivity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD031"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$C_B \\left \\langle \\nu_B \\right \\rangle = -D grad C_B$, where $C_B$ the local molecular concentration of substance $B$ in the mixture and $\\left \\langle \\nu_B \\right \\rangle$ is the local average velocity of the molecules of $B$."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Diffusion Coefficient\" is a proportionality constant between the molar flux due to molecular diffusion and the gradient in the concentration of the species (or the driving force for diffusion). Diffusivity is encountered in Fick's law and numerous other equations of physical chemistry." ; + qudt:symbol "D" ; + rdfs:comment "Applicable units are those of quantitykind:DiffusionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusionskoeffizient"@de ; + rdfs:label "coefficient de diffusion"@fr ; + rdfs:label "coefficiente di diffusione"@it ; + rdfs:label "coeficiente de difusión"@es ; + rdfs:label "coeficiente de difusão"@pt ; + rdfs:label "diffusion coefficient"@en ; + rdfs:label "difuzijski koeficient"@sl . + +quantitykind:DiffusionCoefficientForFluenceRate + a qudt:QuantityKind ; + dcterms:description "The \"Diffusion Coefficient for Fluence Rate\" is a proportionality constant between the ."^^qudt:LatexString ; + qudt:abbreviation "m" ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_diffusivity"^^xsd:anyURI ; + qudt:latexDefinition "$D_\\varphi = -\\frac{J_x}{\\frac{\\partial d\\varphi}{\\partial dx}}$, where $J_x$ is the $x-component$ of the particle current and $\\varphi$ is the particle fluence rate."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Diffusion Coefficient for Fluence Rate\" is a proportionality constant between the ." ; + qudt:symbol "Dᵩ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusion Coefficient for Fluence Rate"@en ; + skos:broader quantitykind:Length . + +quantitykind:DiffusionLength + a qudt:QuantityKind ; + dcterms:description "\"Diffusion Length\" is the average distance traveled by a particle, or a thermal neutron in a nuclear reactor, from the point at which it is formed to the point at which it is absorbed."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/diffusion+length"^^xsd:anyURI ; + qudt:latexDefinition "$L = \\sqrt{L^2}$, where $L^2$ is the diffusion area."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Diffusion Length\" is the average distance traveled by a particle, or a thermal neutron in a nuclear reactor, from the point at which it is formed to the point at which it is absorbed." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusion Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:DigitRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:BAUD ; + qudt:applicableUnit unit:KiloBAUD ; + qudt:applicableUnit unit:MegaBAUD ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD032" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD032"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:DigitRate" ; + rdfs:isDefinedBy ; + rdfs:label "digit rate" . + +quantitykind:Dimensionless + a qudt:QuantityKind ; + dcterms:description "In dimensional analysis, a dimensionless quantity or quantity of dimension one is a quantity without an associated physical dimension. It is thus a \"pure\" number, and as such always has a dimension of 1. Dimensionless quantities are widely used in mathematics, physics, engineering, economics, and in everyday life (such as in counting). Numerous well-known quantities, such as $\\pi$, $\\epsilon$, and $\\psi$, are dimensionless. By contrast, non-dimensionless quantities are measured in units of length, area, time, etc. Dimensionless quantities are often defined as products or ratios of quantities that are not dimensionless, but whose dimensions cancel out when their powers are multiplied."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dimensionless_quantity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensionless_quantity"^^xsd:anyURI ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Dimensionless"@en . + +quantitykind:DimensionlessRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Dimensionless Ratio"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:Displacement + a qudt:QuantityKind ; + dcterms:description "\"Displacement\" is the shortest distance from the initial to the final position of a point P."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Displacement_(vector)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\Delta r = R_f - R_i$, where $R_f$ is the final position and $R_i$ is the initial position."^^qudt:LatexString ; + qudt:latexSymbol "$\\Delta r$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Displacement\" is the shortest distance from the initial to the final position of a point P." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Displacement"@en ; + skos:broader quantitykind:Length . + +quantitykind:DisplacementCurrent + a qudt:QuantityKind ; + dcterms:description "\"Displacement Current\" is a quantity appearing in Maxwell's equations that is defined in terms of the rate of change of electric displacement field. Displacement current has the units of electric current density, and it has an associated magnetic field just as actual currents do. However it is not an electric current of moving charges, but a time-varying electric field. In materials, there is also a contribution from the slight motion of charges bound in atoms, dielectric polarization."^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Displacement_current"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$I_D= \\int_S J_D \\cdot e_n dA$, over a surface $S$, where $J_D$ is displacement current density and $e_n dA$ is the vector surface element."^^qudt:LatexString ; + qudt:plainTextDescription "\"Displacement Current\" is a quantity appearing in Maxwell's equations that is defined in terms of the rate of change of electric displacement field. Displacement current has the units of electric current density, and it has an associated magnetic field just as actual currents do. However it is not an electric current of moving charges, but a time-varying electric field. In materials, there is also a contribution from the slight motion of charges bound in atoms, dielectric polarization." ; + qudt:symbol "I_D" ; + rdfs:comment "Applicable units are those of quantitykind:DisplacementCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Displacement Current"@en ; + rdfs:seeAlso quantitykind:ElectricFluxDensity . + +quantitykind:DisplacementCurrentDensity + a qudt:QuantityKind ; + dcterms:description """ +$\\text{Displacement Current Density}$ is the time rate of change of the $\\textit{Electric Flux Density}$. + This is a measure of how quickly the electric field changes if we observe it as a function of time. + This is different than if we look at how the electric field changes spatially, that is, over a region of space for a fixed amount of time. + """^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-M2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_flux"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.maxwells-equations.com/math/partial-electric-flux.php"^^xsd:anyURI ; + qudt:latexDefinition "$J_D = \\frac{\\partial D}{\\partial t}$, where $D$ is electric flux density and $t$ is time."^^qudt:LatexString ; + qudt:latexSymbol "$J_D$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:DisplacementCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Displacement Current Density"@en ; + rdfs:seeAlso quantitykind:ElectricFluxDensity . + +quantitykind:DisplacementVectorOfIon + a qudt:QuantityKind ; + dcterms:description "\"Displacement Vector of Ion\" is the ."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Displacement"^^xsd:anyURI ; + qudt:latexDefinition "$u = R - R_0$, where $R$ is the particle position vector and $R_0$ is the equilibrium position vector of a particle."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Displacement Vector of Ion\" is the ." ; + qudt:symbol "u" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Displacement Vector of Ion"@en ; + skos:broader quantitykind:Length . + +quantitykind:Dissipance + a qudt:QuantityKind ; + dcterms:description "Dissipance, or dissipation factor for sound power, is the ratio of dissipated sound power to incident sound power. The dissipation factor (DF) is a measure of loss-rate of energy of a mode of oscillation (mechanical, electrical, or electromechanical) in a dissipative system. It is the reciprocal of quality factor, which represents the quality of oscillation."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dissipation_factor"^^xsd:anyURI ; + qudt:latexDefinition "$\\delta = \\frac{P_d}{P_i}$, where $P_d$ is the dissipated sound power, and $P_i$ is the incident sound power."^^qudt:LatexString ; + qudt:latexSymbol "$\\delta$"^^qudt:LatexString ; + qudt:plainTextDescription "Dissipance, or dissipation factor for sound power, is the ratio of dissipated sound power to incident sound power. The dissipation factor (DF) is a measure of loss-rate of energy of a mode of oscillation (mechanical, electrical, or electromechanical) in a dissipative system. It is the reciprocal of quality factor, which represents the quality of oscillation." ; + rdfs:comment "Applicable units are those of quantitykind:Dissipance" ; + rdfs:isDefinedBy ; + rdfs:label "Dissipance"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:Distance + a qudt:QuantityKind ; + dcterms:description "\"Distance\" is a numerical description of how far apart objects are. "^^qudt:LatexString ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:PT_BIG ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Distance"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Distance\" is a numerical description of how far apart objects are. " ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:Distance" ; + rdfs:isDefinedBy ; + rdfs:label "Entfernung"@de ; + rdfs:label "Jarak"@ms ; + rdfs:label "Vzdálenost"@cs ; + rdfs:label "distance"@en ; + rdfs:label "distance"@fr ; + rdfs:label "distancia"@es ; + rdfs:label "distanza"@it ; + rdfs:label "distância"@pt ; + rdfs:label "uzaklık"@tr ; + rdfs:label "مسافت"@fa ; + rdfs:label "距离"@zh ; + skos:broader quantitykind:Length . + +quantitykind:DistanceTraveledDuringBurn + a qudt:QuantityKind ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:PT_BIG ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:symbol "s" ; + rdfs:comment "Applicable units are those of quantitykind:Distance" ; + rdfs:isDefinedBy ; + rdfs:label "Distance Traveled During a Burn"@en ; + skos:broader quantitykind:Distance . + +quantitykind:DonorDensity + a qudt:QuantityKind ; + dcterms:description "\"Donor Density\" is the number per volume of donor levels."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Donor Density\" is the number per volume of donor levels." ; + qudt:symbol "n_d" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Donor Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:DonorIonizationEnergy + a qudt:QuantityKind ; + dcterms:description "\"Donor Ionization Energy\" is the ionization energy of a donor."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization_energy"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Donor Ionization Energy\" is the ionization energy of a donor." ; + qudt:symbol "E_d" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Donor Ionization Energy"@en ; + skos:broader quantitykind:IonizationEnergy ; + skos:closeMatch quantitykind:AcceptorIonizationEnergy . + +quantitykind:DoseEquivalent + a qudt:QuantityKind ; + dcterms:description "\"Dose Equivalent\" (former), or $\\textit{Equivalent Absorbed Radiation Dose}$, usually shortened to $\\textit{Equivalent Dose}$, is a computed average measure of the radiation absorbed by a fixed mass of biological tissue, that attempts to account for the different biological damage potential of different types of ionizing radiation. The equivalent dose to a tissue is found by multiplying the absorbed dose, in gray, by a dimensionless \"quality factor\" $Q$, dependent upon radiation type, and by another dimensionless factor $N$, dependent on all other pertinent factors. N depends upon the part of the body irradiated, the time and volume over which the dose was spread, even the species of the subject."^^qudt:LatexString ; + qudt:applicableUnit unit:MicroSV ; + qudt:applicableUnit unit:MilliR_man ; + qudt:applicableUnit unit:MilliSV ; + qudt:applicableUnit unit:NanoSV ; + qudt:applicableUnit unit:REM ; + qudt:applicableUnit unit:R_man ; + qudt:applicableUnit unit:SV ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Equivalent_dose"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD033" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Equivalent_dose"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD033"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "At the point of interest in tissue, $H = DQ$, where $D$ is the absorbed dose and $Q$ is the quality factor at that point."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:DOEQ ; + qudt:symbol "H" ; + rdfs:comment "Applicable units are those of quantitykind:DoseEquivalent" ; + rdfs:isDefinedBy ; + rdfs:label "Dose Equivalent"@en ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:DoseEquivalentQualityFactor + a qudt:QuantityKind ; + dcterms:description "\"Dose Equivalent Quality Factor\" is a factor in the caculation and measurement of dose equivalent, by which the absorbed dose is to be weighted in order to account for different biological effectiveness of radiations, for radiation protection purposes."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Equivalent_dose"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Dose Equivalent Quality Factor\" is a factor in the caculation and measurement of dose equivalent, by which the absorbed dose is to be weighted in order to account for different biological effectiveness of radiations, for radiation protection purposes." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:DoseEquivalentQualityFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Dose Equivalent Quality Factor"@en . + +quantitykind:DoseEquivalentRate + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD034" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD034"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "dose equivalent rate" . + +quantitykind:DotsPerInch + a qudt:QuantityKind ; + qudt:applicableUnit unit:DPI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD255" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD255"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:DotsPerInch" ; + rdfs:isDefinedBy ; + rdfs:label "dots per inch" ; + skos:broader quantitykind:InverseLength . + +quantitykind:DragCoefficient + a qudt:QuantityKind ; + dcterms:description "In fluid dynamics, the drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment such as air or water."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "In fluid dynamics, the drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment such as air or water." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:symbol "C_D" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Drag Coefficient"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:DragForce + a qudt:QuantityKind ; + dcterms:description """In fluid dynamics, drag refers to forces which act on a solid object in the direction of the relative fluid flow velocity. Unlike other resistive forces such as dry friction, which is nearly independent of velocity, drag forces depend on velocity. +Drag forces always decrease fluid velocity relative to the solid object in the fluid's path.""" ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:plainTextDescription """In fluid dynamics, drag refers to forces which act on a solid object in the direction of the relative fluid flow velocity. Unlike other resistive forces such as dry friction, which is nearly independent of velocity, drag forces depend on velocity. +Drag forces always decrease fluid velocity relative to the solid object in the fluid's path.""" ; + qudt:symbol "D or F_D" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Drag Force"@en ; + skos:broader quantitykind:Force . + +quantitykind:DryBulbTemperature + a qudt:QuantityKind ; + dcterms:description "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:plainTextDescription "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation." ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Dry Bulb Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:DryVolume + a qudt:QuantityKind ; + dcterms:description "Dry measures are units of volume used to measure bulk commodities which are not gas or liquid. They are typically used in agriculture, agronomy, and commodity markets to measure grain, dried beans, and dried and fresh fruit; formerly also salt pork and fish. They are also used in fishing for clams, crabs, etc. and formerly for many other substances (for example coal, cement, lime) which were typically shipped and delivered in a standardized container such as a barrel. In the original metric system, the unit of dry volume was the stere, but this is not part of the modern metric system; the liter and the cubic meter ($m^{3}$) are now used. However, the stere is still widely used for firewood."^^qudt:LatexString ; + qudt:applicableUnit unit:BBL_US_DRY ; + qudt:applicableUnit unit:BU_UK ; + qudt:applicableUnit unit:BU_US ; + qudt:applicableUnit unit:CORD ; + qudt:applicableUnit unit:GAL_US_DRY ; + qudt:applicableUnit unit:PINT_US_DRY ; + qudt:applicableUnit unit:PK_US_DRY ; + qudt:applicableUnit unit:QT_US_DRY ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dry_measure"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:DryVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Dry Volume"@en ; + skos:broader quantitykind:Volume . + +quantitykind:DutyCycle + a qudt:QuantityKind ; + dcterms:description "A duty cycle or power cycle is the fraction of one period in which a signal or system is active."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Duty_cycle"^^xsd:anyURI ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "A duty cycle or power cycle is the fraction of one period in which a signal or system is active." ; + qudt:symbol "α" ; + rdfs:comment "Applicable units are those of quantitykind:DutyCycle" ; + rdfs:isDefinedBy ; + rdfs:label "Duty Cycle"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Duv + a qudt:QuantityKind ; + dcterms:description "Duv is a metric that is short for Delta u,v (not to be confused with Delta u',v') and describes the distance of a light color point from the black body curve."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://www.waveformlighting.com/tech/calculate-duv-from-cie-1931-xy-coordinates"^^xsd:anyURI ; + qudt:informativeReference "https://www1.eere.energy.gov/buildings/publications/pdfs/ssl/led-color-characteristics-factsheet.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Duv is a metric that is short for Delta u,v (not to be confused with Delta u',v') and describes the distance of a light color point from the black body curve." ; + rdfs:comment "Applicable units are those of quantitykind:Duv" ; + rdfs:isDefinedBy ; + rdfs:label "Delta u,v"@en ; + rdfs:seeAlso quantitykind:CorrelatedColorTemperature . + +quantitykind:DynamicFriction + a qudt:QuantityKind ; + dcterms:description "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:plainTextDescription "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)." ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Dynamic Friction"@en ; + skos:broader quantitykind:Friction . + +quantitykind:DynamicFrictionCoefficient + a qudt:QuantityKind ; + dcterms:description "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\frac{F}{N}$, where $F$ is the tangential component of the contact force and $N$ is the normal component of the contact force between two sliding bodies."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:FrictionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Dynamic Friction Coefficient"@en ; + skos:broader quantitykind:FrictionCoefficient . + +quantitykind:DynamicPressure + a qudt:QuantityKind ; + dcterms:description "Dynamic Pressure (indicated with q, or Q, and sometimes called velocity pressure) is the quantity defined by: $q = 1/2 * \\rho v^{2}$, where (using SI units), $q$ is dynamic pressure in $pascals$, $\\rho$ is fluid density in $kg/m^{3}$ (for example, density of air) and $v $ is fluid velocity in $m/s$."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dynamic_pressure"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:symbol "q" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Dynamic Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:DynamicViscosity + a qudt:QuantityKind ; + dcterms:description "A measure of the molecular frictional resistance of a fluid as calculated using Newton's law."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiPOISE ; + qudt:applicableUnit unit:DecaPOISE ; + qudt:applicableUnit unit:GM-PER-CentiM-SEC ; + qudt:applicableUnit unit:KiloGM-PER-M-DAY ; + qudt:applicableUnit unit:KiloGM-PER-M-HR ; + qudt:applicableUnit unit:KiloGM-PER-M-MIN ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC ; + qudt:applicableUnit unit:LB-PER-FT-DAY ; + qudt:applicableUnit unit:LB-PER-FT-HR ; + qudt:applicableUnit unit:LB-PER-FT-MIN ; + qudt:applicableUnit unit:LB-PER-FT-SEC ; + qudt:applicableUnit unit:LB_F-SEC-PER-FT2 ; + qudt:applicableUnit unit:LB_F-SEC-PER-IN2 ; + qudt:applicableUnit unit:MicroPOISE ; + qudt:applicableUnit unit:MilliPA-SEC ; + qudt:applicableUnit unit:N-SEC-PER-M2 ; + qudt:applicableUnit unit:PA-SEC ; + qudt:applicableUnit unit:PDL-SEC-PER-FT2 ; + qudt:applicableUnit unit:PDL-SEC-PER-IN2 ; + qudt:applicableUnit unit:POISE ; + qudt:applicableUnit unit:SLUG-PER-FT-SEC ; + qudt:exactMatch quantitykind:Viscosity ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD035" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD035"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Viscosity#Dynamic_viscosity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\tau_{xz} = \\eta\\frac{dv_x}{dz}$, where $\\tau_{xz}$ is shear stress in a fluid moving with a velocity gradient $\\frac{dv_x}{dz}$ perpendicular to the plane of shear. "^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "A measure of the molecular frictional resistance of a fluid as calculated using Newton's law." ; + qudt:siExactMatch si-quantity:DYVI ; + rdfs:comment "Applicable units are those of quantitykind:DynamicViscosity" ; + rdfs:isDefinedBy ; + rdfs:label "Kelikatan dinamik"@ms ; + rdfs:label "Viscozitate dinamică"@ro ; + rdfs:label "dinamik akmazlık"@tr ; + rdfs:label "dinamična viskoznost"@sl ; + rdfs:label "dynamic viscosity"@en ; + rdfs:label "dynamische Viskosität"@de ; + rdfs:label "lepkość dynamiczna"@pl ; + rdfs:label "viscosidad dinámica"@es ; + rdfs:label "viscosidade dinâmica"@pt ; + rdfs:label "viscosità dinamica"@it ; + rdfs:label "viscosité dynamique"@fr ; + rdfs:label "viskozita"@cs ; + rdfs:label "динамическую вязкость"@ru ; + rdfs:label "لزوجة"@ar ; + rdfs:label "گرانروی دینامیکی/ویسکوزیته دینامیکی"@fa ; + rdfs:label "श्यानता"@hi ; + rdfs:label "动力粘度"@zh ; + rdfs:label "粘度"@ja ; + skos:altLabel "viscosità di taglio"@it . + +quantitykind:EarthClosestApproachVehicleVelocity + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:symbol "V_o" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Earth Closest Approach Vehicle Velocity"@en ; + skos:broader quantitykind:VehicleVelocity . + +quantitykind:EarthquakeMagnitude + a qudt:QuantityKind ; + qudt:applicableUnit unit:RichterMagnitude ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD365" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD365"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:EarthquakeMagnitude" ; + rdfs:isDefinedBy ; + rdfs:label "earthquake magnitude" . + +quantitykind:EccentricityOfOrbit + a qudt:QuantityKind ; + dcterms:description "The orbital eccentricity of an astronomical object is a parameter that determines the amount by which its orbit around another body deviates from a perfect circle. In a two-body problem with inverse-square-law force, every orbit is a Kepler orbit. The eccentricity of this Kepler orbit is a positive number that defines its shape."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\varepsilon$"^^qudt:LatexString ; + qudt:plainTextDescription "The orbital eccentricity of an astronomical object is a parameter that determines the amount by which its orbit around another body deviates from a perfect circle. In a two-body problem with inverse-square-law force, every orbit is a Kepler orbit. The eccentricity of this Kepler orbit is a positive number that defines its shape." ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Eccentricity Of Orbit"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:EffectiveExhaustVelocity + a qudt:QuantityKind ; + dcterms:description "The velocity of an exhaust stream after reduction by effects such as friction, non-axially directed flow, and pressure differences between the inside of the rocket and its surroundings. The effective exhaust velocity is one of two factors determining the thrust, or accelerating force, that a rocket can develop, the other factor being the quantity of reaction mass expelled from the rocket in unit time. In most cases, the effective exhaust velocity is close to the actual exhaust velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "The velocity of an exhaust stream after reduction by effects such as friction, non-axially directed flow, and pressure differences between the inside of the rocket and its surroundings. The effective exhaust velocity is one of two factors determining the thrust, or accelerating force, that a rocket can develop, the other factor being the quantity of reaction mass expelled from the rocket in unit time. In most cases, the effective exhaust velocity is close to the actual exhaust velocity." ; + qudt:symbol "v_{e}" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Effective Exhaustvelocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:EffectiveMass + a qudt:QuantityKind ; + dcterms:description "\"Effective Mass\" is used in the motional equation for electrons in solid state bodies, depending on the wavenumber and corresponding to its velocity and energy level."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Effective_mass_(solid-state_physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$m^* = \\hbar^2k(\\frac{d\\varepsilon}{dk})$, where $\\hbar$ is the reduced Planck constant, $k$ is the wavenumber, and $\\varepsilon$ is the energy of the electron."^^qudt:LatexString ; + qudt:plainTextDescription "\"Effective Mass\" is used in the motional equation for electrons in solid state bodies, depending on the wavenumber and corresponding to its velocity and energy level." ; + qudt:symbol "m^*" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Effective Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:EffectiveMultiplicationFactor + a qudt:QuantityKind ; + dcterms:description "The \"Effective Multiplication Factor\" is the multiplication factor for a finite medium."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_chain_reaction#Effective_neutron_multiplication_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Effective Multiplication Factor\" is the multiplication factor for a finite medium." ; + qudt:symbol "k_{eff}" ; + rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Effective Multiplication Factor"@en ; + skos:broader quantitykind:MultiplicationFactor ; + skos:closeMatch quantitykind:InfiniteMultiplicationFactor . + +quantitykind:Efficiency + a qudt:QuantityKind ; + dcterms:description "Efficiency is the ratio of output power to input power."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\eta = \\frac{P_{out}}{P_{in}}$, where $P_{out}$ is the output power and $P_{in}$ is the input power."^^qudt:LatexString ; + qudt:latexSymbol "$\\eta$"^^qudt:LatexString ; + qudt:plainTextDescription "Efficiency is the ratio of output power to input power." ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Wirkungsgrad"@de ; + rdfs:label "efficiency"@en ; + rdfs:label "efficienza"@it ; + rdfs:label "eficiência"@pt ; + rdfs:label "rendement"@fr ; + rdfs:label "rendimiento"@es ; + rdfs:label "sprawność"@pl ; + rdfs:label "коэффициент полезного действия"@ru ; + rdfs:label "كفاءة"@ar ; + rdfs:label "効率"@ja ; + rdfs:label "效率"@zh ; + skos:altLabel "rendimento"@it ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:EinsteinCoefficients + a qudt:QuantityKind ; + qudt:applicableUnit unit:SEC-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD036" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD036"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:EinsteinCoefficients" ; + rdfs:isDefinedBy ; + rdfs:label "Einstein coefficients" . + +quantitykind:EinsteinTransitionProbability + a qudt:QuantityKind ; + dcterms:description "Given two atomic states of energy $E_j$ and $E_k$. Let $E_j > E_k$. Assume the atom is bathed in radiation of energy density $u(w)$. Transitions between these states can take place in three different ways. Spontaneous, induced/stimulated emission, and induced absorption. $A_jk$ represents the Einstein transition probability for spontaneous emission."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://electron6.phys.utk.edu/qm2/modules/m10/einstein.htm"^^xsd:anyURI ; + qudt:latexDefinition "$\\frac{-dN_j}{dt} = A_jkN_j$, where $-dN_j$ is the number of molecules spontaneously leaving the state j for the state k during a time interval of duration $dt$, $N_j$ is the number of molecules in the state j, and $E_j > E_k$."^^qudt:LatexString ; + qudt:symbol "A_jkN_j" ; + rdfs:comment "Applicable units are those of quantitykind:EinsteinTransitionProbability" ; + rdfs:isDefinedBy ; + rdfs:label "Einstein Transition Probability"@en . + +quantitykind:EinsteinTransitionProbabilityForSpontaneousOrInducedEmissionAndAbsorption + a qudt:QuantityKind ; + dcterms:description "nuclear constant for the special transition where the probability of the absorption, spontaneous emission or induced emission of energy depends on the number of existing quantums of light, expressed as energy density in the wave model of light: energy divided by volume and frequency"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ; + qudt:plainTextDescription "atomare Konstante für den speziellen Übergang, wobei die Wahrscheinlichkeit der Absorption, der spontanen Emission und der induzierte Emission von Energie abhängig ist von der Zahl der vorhandenen Lichtquanten, ausgedrückt als Energiedichte im Wellenmodell des Lichtes: Energie durch Volumen und Frequenz"@de ; + qudt:symbol "0173-1#Z4-BAJ456#001" ; + rdfs:isDefinedBy ; + rdfs:label "Einstein transition probability for spontaneous or induced emission and absorption"@en-US . + +quantitykind:ElectricCharge + a qudt:QuantityKind ; + dcterms:description "\"Electric Charge\" is a fundamental conserved property of some subatomic particles, which determines their electromagnetic interaction. Electrically charged matter is influenced by, and produces, electromagnetic fields. The electric charge on a body may be positive or negative. Two positively charged bodies experience a mutual repulsive force, as do two negatively charged bodies. A positively charged body and a negatively charged body experience an attractive force. Electric charge is carried by discrete particles and can be positive or negative. The sign convention is such that the elementary electric charge $e$, that is, the charge of the proton, is positive. The SI derived unit of electric charge is the coulomb."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR ; + qudt:applicableUnit unit:A-SEC ; + qudt:applicableUnit unit:AttoC ; + qudt:applicableUnit unit:C ; + qudt:applicableUnit unit:C_Ab ; + qudt:applicableUnit unit:C_Stat ; + qudt:applicableUnit unit:CentiC ; + qudt:applicableUnit unit:DecaC ; + qudt:applicableUnit unit:DeciC ; + qudt:applicableUnit unit:E ; + qudt:applicableUnit unit:ElementaryCharge ; + qudt:applicableUnit unit:ExaC ; + qudt:applicableUnit unit:F ; + qudt:applicableUnit unit:FR ; + qudt:applicableUnit unit:FemtoC ; + qudt:applicableUnit unit:GigaC ; + qudt:applicableUnit unit:HectoC ; + qudt:applicableUnit unit:KiloA-HR ; + qudt:applicableUnit unit:KiloC ; + qudt:applicableUnit unit:KiloJ-PER-KiloV ; + qudt:applicableUnit unit:MegaC ; + qudt:applicableUnit unit:MicroC ; + qudt:applicableUnit unit:MilliA-HR ; + qudt:applicableUnit unit:MilliA-SEC ; + qudt:applicableUnit unit:MilliC ; + qudt:applicableUnit unit:NanoC ; + qudt:applicableUnit unit:PetaC ; + qudt:applicableUnit unit:PicoC ; + qudt:applicableUnit unit:PlanckCharge ; + qudt:applicableUnit unit:TeraC ; + qudt:applicableUnit unit:YoctoC ; + qudt:applicableUnit unit:YottaC ; + qudt:applicableUnit unit:ZeptoC ; + qudt:applicableUnit unit:ZettaC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD037" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_charge?oldid=492961669"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_charge"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD037"^^xsd:anyURI ; + qudt:latexDefinition "$dQ = Idt$, where $I$ is electric current."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:ELCH ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Cas elektrik"@ms ; + rdfs:label "Charge électrique"@fr ; + rdfs:label "Elektrický náboj"@cs ; + rdfs:label "carga eléctrica"@es ; + rdfs:label "carga elétrica"@pt ; + rdfs:label "carica elettrica"@it ; + rdfs:label "electric charge"@en ; + rdfs:label "elektrik yükü"@tr ; + rdfs:label "elektrische Ladung"@de ; + rdfs:label "električni naboj"@sl ; + rdfs:label "elektromos töltés"@hu ; + rdfs:label "onus electricum"@la ; + rdfs:label "sarcină electrică"@ro ; + rdfs:label "ładunek elektryczny"@pl ; + rdfs:label "Ηλεκτρικό φορτίο"@el ; + rdfs:label "Електрически заряд"@bg ; + rdfs:label "Электрический заряд"@ru ; + rdfs:label "מטען חשמלי"@he ; + rdfs:label "الشحنة الكهربائية"@ar ; + rdfs:label "بار الکتریکی"@fa ; + rdfs:label "विद्युत आवेग या विद्युत बहाव"@hi ; + rdfs:label "电荷"@zh ; + rdfs:label "電荷"@ja ; + rdfs:seeAlso quantitykind:ElectricCurrent ; + skos:altLabel "cantitate de electricitate"@ro . + +quantitykind:ElectricChargeDensity + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-DeciM3 ; + qudt:applicableUnit unit:A-HR-PER-M3 ; + qudt:applicableUnit unit:C-PER-M3 ; + qudt:applicableUnit unit:MegaC-PER-M3 ; + qudt:applicableUnit unit:MicroC-PER-M3 ; + qudt:expression "$charge-density$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.maxwells-equations.com/pho/charge-density.php"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = \\frac{dQ}{dV}$, where $Q$ is electric charge and $V$ is Volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively." ; + qudt:siExactMatch si-quantity:ELCD ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargeDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Density"@en ; + rdfs:seeAlso quantitykind:ElectricChargeSurfaceDensity . + +quantitykind:ElectricChargeLineDensity + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively. The respective SI units are $C \\cdot $, $m^{-1}$, $C \\cdot m^{-2}$ or $C \\cdot m^{-3}$."^^qudt:LatexString ; + qudt:applicableUnit unit:C-PER-M ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargeLineDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Line Density"@en . + +quantitykind:ElectricChargeLinearDensity + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively."^^qudt:LatexString ; + qudt:applicableUnit unit:C-PER-M ; + qudt:expression "$linear-charge-density$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_l = \\frac{dQ}{dl}$, where $Q$ is electric charge and $l$ is length."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_l$"^^qudt:LatexString ; + qudt:latexSymbol "$\\tau$"^^qudt:LatexString ; + qudt:plainTextDescription "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargeLinearDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Linear Density"@en ; + rdfs:seeAlso quantitykind:ElectricChargeDensity . + +quantitykind:ElectricChargePerAmountOfSubstance + a qudt:QuantityKind ; + dcterms:description "\"Electric Charge Per Amount Of Substance\" is the charge assocated with a given amount of substance. Un the ISO and SI systems this is $1 mol$."^^qudt:LatexString ; + qudt:applicableUnit unit:C-PER-MOL ; + qudt:applicableUnit unit:C_Stat-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerAmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Electric charge per amount of substance"@en . + +quantitykind:ElectricChargePerArea + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively. The respective SI units are $C \\cdot m^{-1}$, $C \\cdot m^{-2}$ or $C \\cdot m^{-3}$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Electric charge per area"@en . + +quantitykind:ElectricChargePerMass + a qudt:QuantityKind ; + dcterms:description "\"Electric Charge Per Mass\" is the charge associated with a specific mass of a substance. In the SI and ISO systems this is $1 kg$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-KiloGM ; + qudt:applicableUnit unit:A-M2-PER-J-SEC ; + qudt:applicableUnit unit:C-PER-KiloGM ; + qudt:applicableUnit unit:HZ-PER-T ; + qudt:applicableUnit unit:KiloR ; + qudt:applicableUnit unit:MegaHZ-PER-T ; + qudt:applicableUnit unit:MilliC-PER-KiloGM ; + qudt:applicableUnit unit:MilliR ; + qudt:applicableUnit unit:PER-T-SEC ; + qudt:applicableUnit unit:R ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerMass" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Per Mass"@en . + +quantitykind:ElectricChargeSurfaceDensity + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:expression "$surface-charge-density$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_A = \\frac{dQ}{dA}$, where $Q$ is electric charge and $A$ is Area."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_A$"^^qudt:LatexString ; + qudt:plainTextDescription "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargeSurfaceDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Surface Density"@en ; + rdfs:seeAlso quantitykind:ElectricChargeDensity ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:ElectricChargeVolumeDensity + a qudt:QuantityKind ; + dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively. The respective SI units are $C \\cdot m^{-1}$, $C \\cdot m^{-2}$ or $C \\cdot m^{-3}$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-DeciM3 ; + qudt:applicableUnit unit:A-HR-PER-M3 ; + qudt:applicableUnit unit:C-PER-CentiM3 ; + qudt:applicableUnit unit:C-PER-M3 ; + qudt:applicableUnit unit:C-PER-MilliM3 ; + qudt:applicableUnit unit:GigaC-PER-M3 ; + qudt:applicableUnit unit:KiloC-PER-M3 ; + qudt:applicableUnit unit:MilliC-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargeVolumeDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Charge Volume Density"@en . + +quantitykind:ElectricConductivity + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Electric Conductivity}$ or $\\textit{Specific Conductance}$ is a measure of a material's ability to conduct an electric current. + When an electrical potential difference is placed across a conductor, its movable charges flow, giving rise to an electric current. + The conductivity $\\sigma$ is defined as the ratio of the electric current density $J$ to the electric field, $E$: $J = \\sigma E$. + In isotropic materials, conductivity is scalar-valued, however in general, conductivity is a tensor-valued quantity. + """^^qudt:LatexString ; + qudt:applicableUnit unit:MHO_Stat ; + qudt:applicableUnit unit:S_Ab ; + qudt:applicableUnit unit:S_Stat ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ElectricConductivity" ; + rdfs:isDefinedBy ; + rdfs:label "Kekonduksian elektrik"@ms ; + rdfs:label "conducibilità elettrica"@it ; + rdfs:label "conductividad eléctrica"@es ; + rdfs:label "conductivité électrique"@fr ; + rdfs:label "condutividade elétrica"@pt ; + rdfs:label "electric conductivity"@en ; + rdfs:label "elektrik iletkenliği"@tr ; + rdfs:label "elektrische Leitfähigkeit"@de ; + rdfs:label "električna prevodnost"@sl ; + rdfs:label "رسانايى الکتريکى/هدایت الکتریکی"@fa ; + rdfs:label "电导率"@zh . + +quantitykind:ElectricCurrent + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Electric Current}$ is the flow (movement) of electric charge. + The amount of electric current through some surface, for example, a section through a copper conductor, + is defined as the amount of electric charge flowing through that surface over time. + Current is a scalar-valued quantity. + Electric current is one of the base quantities in the International System of Quantities, ISQ, + on which the International System of Units, SI, is based. + """^^rdf:HTML ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:A_Ab ; + qudt:applicableUnit unit:A_Stat ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:BIOT ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:KiloA ; + qudt:applicableUnit unit:MegaA ; + qudt:applicableUnit unit:MicroA ; + qudt:applicableUnit unit:MilliA ; + qudt:applicableUnit unit:NanoA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:PicoA ; + qudt:applicableUnit unit:PlanckCurrent ; + qudt:applicableUnit unit:TeraA ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_current"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD039" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD039"^^xsd:anyURI ; + qudt:plainTextDescription "\"Electric Current\" is the flow (movement) of electric charge. The amount of electric current through some surface, for example, a section through a copper conductor, is defined as the amount of electric charge flowing through that surface over time. Current is a scalar-valued quantity. Electric current is one of the base quantities in the International System of Quantities, ISQ, on which the International System of Units, SI, is based. " ; + qudt:siExactMatch si-quantity:ELCU ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Arus elektrik"@ms ; + rdfs:label "Elektrický proud"@cs ; + rdfs:label "corrente elettrica"@it ; + rdfs:label "corrente elétrica"@pt ; + rdfs:label "corriente eléctrica"@es ; + rdfs:label "curent electric"@ro ; + rdfs:label "electric current"@en ; + rdfs:label "elektrik akımı"@tr ; + rdfs:label "elektrische Stromstärke"@de ; + rdfs:label "električni tok"@sl ; + rdfs:label "elektromos áramerősség"@hu ; + rdfs:label "fluxio electrica"@la ; + rdfs:label "intensité de courant électrique"@fr ; + rdfs:label "prąd elektryczny"@pl ; + rdfs:label "Ένταση ηλεκτρικού ρεύματος"@el ; + rdfs:label "Електрически ток"@bg ; + rdfs:label "Сила электрического тока"@ru ; + rdfs:label "זרם חשמלי"@he ; + rdfs:label "تيار كهربائي"@ar ; + rdfs:label "جریان الکتریکی"@fa ; + rdfs:label "विद्युत धारा"@hi ; + rdfs:label "电流"@zh ; + rdfs:label "電流"@ja . + +quantitykind:ElectricCurrentDensity + a qudt:QuantityKind ; + dcterms:description "\"Electric Current Density\" is a measure of the density of flow of electric charge; it is the electric current per unit area of cross section. Electric current density is a vector-valued quantity. Electric current, $I$, through a surface $S$ is defined as $I = \\int_S J \\cdot e_n dA$, where $e_ndA$ is the vector surface element."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM2 ; + qudt:applicableUnit unit:A-PER-M2 ; + qudt:applicableUnit unit:A-PER-MilliM2 ; + qudt:applicableUnit unit:A_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:A_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloA-PER-M2 ; + qudt:applicableUnit unit:MegaA-PER-M2 ; + qudt:applicableUnit unit:PlanckCurrentDensity ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Current_density"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD040" ; + qudt:informativeReference "http://maxwells-equations.com/density/current.php"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD040"^^xsd:anyURI ; + qudt:latexDefinition "$J = \\rho v$, where $\\rho$ is electric current density and $v$ is volume."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:CUDE ; + qudt:symbol "J" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Akım yoğunluğu"@tr ; + rdfs:label "Densitate de curent"@ro ; + rdfs:label "Gęstość prądu elektrycznego"@pl ; + rdfs:label "Hustota elektrického proudu"@cs ; + rdfs:label "Ketumpatan arus elektrik"@ms ; + rdfs:label "densidad de corriente"@es ; + rdfs:label "densidade de corrente elétrica"@pt ; + rdfs:label "densità di corrente elettrica"@it ; + rdfs:label "densité de courant"@fr ; + rdfs:label "electric current density"@en ; + rdfs:label "elektrische Stromdichte"@de ; + rdfs:label "gostota električnega toka"@sl ; + rdfs:label "плотность тока"@ru ; + rdfs:label "كثافة التيار"@ar ; + rdfs:label "چگالی جریان الکتریکی"@fa ; + rdfs:label "धारा घनत्व"@hi ; + rdfs:label "电流密度"@zh ; + rdfs:label "電流密度"@ja ; + skos:altLabel "areic electric current"@en ; + skos:altLabel "keluasan arus elektrik"@ms . + +quantitykind:ElectricCurrentPerAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentPerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Current per Angle"@en . + +quantitykind:ElectricCurrentPerEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-PER-J ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + qudt:qkdvDenominator qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E1L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentPerEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Current per Energy"@en . + +quantitykind:ElectricCurrentPerLength + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E1L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Current per Length"@en ; + skos:broader quantitykind:LinearElectricCurrentDensity . + +quantitykind:ElectricCurrentPerTemperature + a qudt:QuantityKind ; + dcterms:description "\"Electric Current per Unit Temperature\" is used to express how a current is subject to temperature. Originally used in Wien's Law to describe phenomena related to filaments. One use today is to express how a current generator derates with temperature."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-DEG_C ; + qudt:applicableUnit unit:A-PER-K ; + qudt:applicableUnit unit:KiloA-PER-K ; + qudt:applicableUnit unit:MicroA-PER-K ; + qudt:applicableUnit unit:MilliA-PER-K ; + qudt:applicableUnit unit:NanoA-PER-K ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:plainTextDescription "\"Electric Current per Temperature\" is used to express how a current is subject to temperature. Originally used in Wien's Law to describe phenomena related to filaments. One use today is to express how a current generator derates with temperature." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H1T0D0 ; + qudt:qkdvNumerator qkdv:A0E1L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentPerTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Current per Temperature"@en . + +quantitykind:ElectricCurrentPhasor + a qudt:QuantityKind ; + dcterms:description "\"Electric Current Phasor\" is a representation of current as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one."^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Phasor_(electronics)"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-26"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "When $i = \\hat{I} \\cos{(\\omega t + \\alpha)}$, where $i$ is the electric current, $\\omega$ is angular frequence, $t$ is time, and $\\alpha$ is initial phase, then $\\underline{I} = Ie^{ja}$."^^qudt:LatexString ; + qudt:latexSymbol "$\\underline{I}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Current Phasor\" is a representation of current as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentPhasor" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Current Phasor"@en . + +quantitykind:ElectricDipoleMoment + a qudt:QuantityKind ; + dcterms:description "\"Electric Dipole Moment\" is a measure of the separation of positive and negative electrical charges in a system of (discrete or continuous) charges. It is a vector-valued quantity. If the system of charges is neutral, that is if the sum of all charges is zero, then the dipole moment of the system is independent of the choice of a reference frame; however in a non-neutral system, such as the dipole moment of a single proton, a dependence on the choice of reference point arises. In such cases it is conventional to choose the reference point to be the center of mass of the system or the center of charge, not some arbitrary origin. This convention ensures that the dipole moment is an intrinsic property of the system. The electric dipole moment of a substance within a domain is the vector sum of electric dipole moments of all electric dipoles included in the domain."^^qudt:LatexString ; + qudt:applicableUnit unit:C-M ; + qudt:applicableUnit unit:DEBYE ; + qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD041" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_dipole_moment"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD041"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition """$E_p = -p \\cdot E$, where $E_p$ is the interaction energy of the molecule with electric dipole moment $p$ and an electric field with electric field strength $E$. + +$p = q(r_+ - r_i)$, where $r_+$ and $r_-$ are the position vectors to carriers of electric charge $a$ and $-q$, respectively."""^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Dipole Moment\" is a measure of the separation of positive and negative electrical charges in a system of (discrete or continuous) charges. It is a vector-valued quantity. If the system of charges is neutral, that is if the sum of all charges is zero, then the dipole moment of the system is independent of the choice of a reference frame; however in a non-neutral system, such as the dipole moment of a single proton, a dependence on the choice of reference point arises. In such cases it is conventional to choose the reference point to be the center of mass of the system or the center of charge, not some arbitrary origin. This convention ensures that the dipole moment is an intrinsic property of the system. The electric dipole moment of a substance within a domain is the vector sum of electric dipole moments of all electric dipoles included in the domain." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricDipoleMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Dipólový moment"@cs ; + rdfs:label "Momen dwikutub elektrik"@ms ; + rdfs:label "electric dipole moment"@en ; + rdfs:label "elektrik dipol momenti"@tr ; + rdfs:label "elektrisches Dipolmoment"@de ; + rdfs:label "elektryczny moment dipolowy"@pl ; + rdfs:label "moment dipolaire"@fr ; + rdfs:label "moment electric dipolar"@ro ; + rdfs:label "momento de dipolo eléctrico"@es ; + rdfs:label "momento di dipolo elettrico"@it ; + rdfs:label "momento do dipolo elétrico"@pt ; + rdfs:label "Электрический дипольный момент"@ru ; + rdfs:label "عزم ثنائي قطب"@ar ; + rdfs:label "گشتاور دوقطبی الکتریکی"@fa ; + rdfs:label "विद्युत द्विध्रुव आघूर्ण"@hi ; + rdfs:label "电偶极矩"@zh ; + rdfs:label "電気双極子"@ja . + +quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:C3-M-PER-J2 ; + qudt:hasDimensionVector qkdv:A0E3L-3I0M-2H0T7D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Electric Dipole Moment per Square Energy"@en . + +quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic + a qudt:QuantityKind ; + qudt:applicableUnit unit:C4-M4-PER-J3 ; + qudt:hasDimensionVector qkdv:A0E4L-2I0M-3H0T10D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic" ; + rdfs:isDefinedBy ; + rdfs:label "Quartic Electric Dipole Moment per Cubic Energy"@en . + +quantitykind:ElectricDisplacement + a qudt:QuantityKind ; + dcterms:description "In a dielectric material the presence of an electric field E causes the bound charges in the material (atomic nuclei and their electrons) to slightly separate, inducing a local electric dipole moment. The Electric Displacement Field, $D$, is a vector field that accounts for the effects of free charges within such dielectric materials. This describes also the charge density on an extended surface that could be causing the field."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:exactMatch quantitykind:ElectricFluxDensity ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-895"^^xsd:anyURI ; + qudt:latexDefinition "$D = \\epsilon_0 E + P$, where $\\epsilon_0$ is the electric constant, $E$ is electric field strength, and $P$ is electric polarization."^^qudt:LatexString ; + qudt:symbol "D" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Displacement"@en ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:ElectricDisplacementField + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:symbol "D" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Displacement Field"@en ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:ElectricField + a qudt:QuantityKind ; + dcterms:description "The space surrounding an electric charge or in the presence of a time-varying magnetic field has a property called an electric field. This electric field exerts a force on other electrically charged objects. In the idealized case, the force exerted between two point charges is inversely proportional to the square of the distance between them. (Coulomb's Law)."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-M ; + qudt:applicableUnit unit:V_Ab-PER-CentiM ; + qudt:applicableUnit unit:V_Stat-PER-CentiM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_field"^^xsd:anyURI ; + qudt:expression "$E$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_field"^^xsd:anyURI ; + qudt:plainTextDescription "The space surrounding an electric charge or in the presence of a time-varying magnetic field has a property called an electric field. This electric field exerts a force on other electrically charged objects. In the idealized case, the force exerted between two point charges is inversely proportional to the square of the distance between them. (Coulomb's Law)." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricField" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Field"@en . + +quantitykind:ElectricFieldStrength + a qudt:QuantityKind ; + dcterms:description "$\\textit{Electric Field Strength}$ is the magnitude and direction of an electric field, expressed by the value of $E$, also referred to as $\\color{indigo} {\\textit{electric field intensity}}$ or simply the electric field."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloV-PER-M ; + qudt:applicableUnit unit:MegaV-PER-M ; + qudt:applicableUnit unit:MicroV-PER-M ; + qudt:applicableUnit unit:MilliV-PER-M ; + qudt:applicableUnit unit:V-PER-CentiM ; + qudt:applicableUnit unit:V-PER-IN ; + qudt:applicableUnit unit:V-PER-M ; + qudt:applicableUnit unit:V-PER-MilliM ; + qudt:applicableUnit unit:V_Ab-PER-CentiM ; + qudt:applicableUnit unit:V_Stat-PER-CentiM ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD042" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD042"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{E} = \\mathbf{F}/q$, where $\\mathbf{F}$ is force and $q$ is electric charge, of a test particle at rest."^^qudt:LatexString ; + qudt:latexSymbol "$\\mathbf{E} $"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:ELFS ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricFieldStrength" ; + rdfs:isDefinedBy ; + rdfs:label "Elektromos mező"@hu ; + rdfs:label "Kekuatan medan elektrik"@ms ; + rdfs:label "câmp electric"@ro ; + rdfs:label "electric field strength"@en ; + rdfs:label "elektrické pole"@cs ; + rdfs:label "elektriksel alan kuvveti"@tr ; + rdfs:label "elektrische Feldstärke"@de ; + rdfs:label "intensidad de campo eléctrico"@es ; + rdfs:label "intensidade de campo elétrico"@pt ; + rdfs:label "intensità di campo elettrico"@it ; + rdfs:label "intensité de champ électrique"@fr ; + rdfs:label "jakost električnega polja"@sl ; + rdfs:label "natężenie pola elektrycznego"@pl ; + rdfs:label "Ηλεκτρικό πεδίο"@el ; + rdfs:label "Електрично поле"@bg ; + rdfs:label "Напряженность электрического поля"@ru ; + rdfs:label "שדה חשמלי"@he ; + rdfs:label "شدة المجال الكهربائي"@ar ; + rdfs:label "شدت میدان الکتریکی"@fa ; + rdfs:label "विद्युत्-क्षेत्र"@hi ; + rdfs:label "電場"@zh ; + rdfs:label "電界強度"@ja . + +quantitykind:ElectricFlux + a qudt:QuantityKind ; + dcterms:description "\"Electric Flux\" through an area is defined as the electric field multiplied by the area of the surface projected in a plane perpendicular to the field. Electric Flux is a scalar-valued quantity."^^qudt:LatexString ; + qudt:applicableUnit unit:V-M ; + qudt:applicableUnit unit:V_Stat-CentiM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_flux"^^xsd:anyURI ; + qudt:expression "$electirc-flux$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-3D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\Psi = \\int_S D \\cdot e_n dA$, over a surface $S$, where $D$ is electric flux density and $e_n dA$ is the vector surface element."^^qudt:LatexString ; + qudt:latexSymbol "$\\Psi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Flux\" through an area is defined as the electric field multiplied by the area of the surface projected in a plane perpendicular to the field. Electric Flux is a scalar-valued quantity." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Flux"@en ; + rdfs:seeAlso quantitykind:ElectricFluxDensity . + +quantitykind:ElectricFluxDensity + a qudt:QuantityKind ; + dcterms:description "$\\textit{Electric Flux Density}$, also referred to as $\\textit{Electric Displacement}$, is related to electric charge density by the following equation: $\\text{div} \\; D = \\rho$, where $\\text{div}$ denotes the divergence."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_flux"^^xsd:anyURI ; + qudt:exactMatch quantitykind:ElectricDisplacement ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD043" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD043"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{D} = \\epsilon_0 E + P$, where $\\epsilon_0$ is the electric constant, $\\mathbf{E} $ is electric field strength, and $P$ is electric polarization."^^qudt:LatexString ; + qudt:latexSymbol "$\\mathbf{D}$"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:ELFD ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Densidad de flujo eléctrico"@es ; + rdfs:label "Elektrická indukce"@cs ; + rdfs:label "Induction électrique"@fr ; + rdfs:label "Inducție electrică"@ro ; + rdfs:label "Indukcja elektryczna"@pl ; + rdfs:label "Ketumpatan fluks elektrik"@ms ; + rdfs:label "campo de deslocamento elétrico"@pt ; + rdfs:label "electric flux density"@en ; + rdfs:label "elektrik akı yoğunluğu"@tr ; + rdfs:label "elektrische Flussdichte"@de ; + rdfs:label "spostamento elettrico"@it ; + rdfs:label "Электрическая индукция"@ru ; + rdfs:label "إزاحة كهربائية"@ar ; + rdfs:label "چگالی شار الکتریکی"@fa ; + rdfs:label "電位移"@zh ; + rdfs:label "電束密度"@ja ; + skos:altLabel "anjakan"@ms ; + skos:altLabel "densité de flux électrique"@fr ; + skos:altLabel "displacement"@en ; + skos:altLabel "elektrische Induktion"@de ; + skos:altLabel "elektrische Verschiebung"@de ; + skos:altLabel "induzione elettrica"@it ; + skos:altLabel "yer değiştirme"@tr ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:ElectricPolarizability + a qudt:QuantityKind ; + dcterms:description "\"Electric Polarizability\" is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which is applied typically by inserting the molecule in a charged parallel-plate capacitor, but may also be caused by the presence of a nearby ion or dipole."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Polarizability"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_{i,j} = \\frac{\\partial p_i}{\\partial E_j}$, where $p_i$ is the cartesian component along the $i-axis$ of the electric dipole moment induced by the applied electric field strength acting on the molecule, and $E_j$ is the component along the $j-axis$ of this electric field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Polarizability\" is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which is applied typically by inserting the molecule in a charged parallel-plate capacitor, but may also be caused by the presence of a nearby ion or dipole." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricPolarizability" ; + rdfs:isDefinedBy ; + rdfs:label "Kepengkutuban elektrik"@ms ; + rdfs:label "Kutuplanabilirlik"@tr ; + rdfs:label "Polarisabilité"@fr ; + rdfs:label "Polarizabilidad"@es ; + rdfs:label "Polarizovatelnost"@cs ; + rdfs:label "Polaryzowalność"@pl ; + rdfs:label "electric polarizability"@en ; + rdfs:label "elektrische Polarisierbarkeit"@de ; + rdfs:label "polarizabilidade"@pt ; + rdfs:label "polarizzabilità elettrica"@it ; + rdfs:label "Поляризуемость"@ru ; + rdfs:label "قابلية استقطاب"@ar ; + rdfs:label "قطبیت پذیری الکتریکی"@fa ; + rdfs:label "分極率"@ja ; + rdfs:label "極化性"@zh . + +quantitykind:ElectricPolarization + a qudt:QuantityKind ; + dcterms:description "\"Electric Polarization\" is the relative shift of positive and negative electric charge in opposite directions within an insulator, or dielectric, induced by an external electric field. Polarization occurs when an electric field distorts the negative cloud of electrons around positive atomic nuclei in a direction opposite the field. This slight separation of charge makes one side of the atom somewhat positive and the opposite side somewhat negative. In some materials whose molecules are permanently polarized by chemical forces, such as water molecules, some of the polarization is caused by molecules rotating into the same alignment under the influence of the electric field. One of the measures of polarization is electric dipole moment, which equals the distance between the slightly shifted centres of positive and negative charge multiplied by the amount of one of the charges. Polarization P in its quantitative meaning is the amount of dipole moment p per unit volume V of a polarized material, P = p/V."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD044" ; + qudt:informativeReference "http://www.britannica.com/EBchecked/topic/182690/electric-polarization"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD044"^^xsd:anyURI ; + qudt:latexDefinition "$P =\\frac{dp}{dV}$, where $p$ is electic charge density and $V$ is volume."^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Polarization\" is the relative shift of positive and negative electric charge in opposite directions within an insulator, or dielectric, induced by an external electric field. Polarization occurs when an electric field distorts the negative cloud of electrons around positive atomic nuclei in a direction opposite the field. This slight separation of charge makes one side of the atom somewhat positive and the opposite side somewhat negative. In some materials whose molecules are permanently polarized by chemical forces, such as water molecules, some of the polarization is caused by molecules rotating into the same alignment under the influence of the electric field. One of the measures of polarization is electric dipole moment, which equals the distance between the slightly shifted centres of positive and negative charge multiplied by the amount of one of the charges. Polarization P in its quantitative meaning is the amount of dipole moment p per unit volume V of a polarized material, P = p/V." ; + qudt:symbol "P" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricPolarization" ; + rdfs:isDefinedBy ; + rdfs:label "electric polarization"@en ; + rdfs:label "elektrische Polarisation"@de ; + rdfs:label "polarisation électrique"@fr ; + rdfs:label "polarización eléctrica"@es ; + rdfs:label "polarização eléctrica"@pt ; + rdfs:label "polarizzazione elettrica"@it ; + rdfs:label "polaryzacja elektryczna"@pl ; + rdfs:label "электрическая поляризация"@ru ; + rdfs:label "إستقطاب كهربائي"@ar ; + rdfs:label "電気分極"@ja ; + rdfs:seeAlso quantitykind:ElectricChargeDensity ; + rdfs:seeAlso quantitykind:ElectricDipoleMoment . + +quantitykind:ElectricPotential + a qudt:QuantityKind ; + dcterms:description "The Electric Potential is a scalar valued quantity associated with an electric field. The electric potential $\\phi(x)$ at a point, $x$, is formally defined as the line integral of the electric field taken along a path from x to the point at infinity. If the electric field is static, that is time independent, then the choice of the path is arbitrary; however if the electric field is time dependent, taking the integral a different paths will produce different results."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:exactMatch quantitykind:ElectricPotentialDifference ; + qudt:exactMatch quantitykind:EnergyPerElectricCharge ; + qudt:exactMatch quantitykind:Voltage ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$-\\text{grad} \\; V = E + \\frac{\\partial A}{\\partial t}$, where $E$ is electric field strength, $A$ is magentic vector potential and $t$ is time."^^qudt:LatexString ; + qudt:latexSymbol "$\\phi$"^^qudt:LatexString ; + qudt:symbol "V" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricPotential" ; + rdfs:isDefinedBy ; + rdfs:label "Keupayaan elektrik"@ms ; + rdfs:label "electric potential"@en ; + rdfs:label "elektrický potenciál"@cs ; + rdfs:label "elektrik potansiyeli"@tr ; + rdfs:label "elektrisches Potenzial"@de ; + rdfs:label "električni potencial"@sl ; + rdfs:label "elektromos feszültség , elektromos potenciálkülönbség"@hu ; + rdfs:label "potencial eléctrico"@es ; + rdfs:label "potencial elétrico"@pt ; + rdfs:label "potencjał elektryczny"@pl ; + rdfs:label "potentiel électrique"@fr ; + rdfs:label "potenziale elettrico"@it ; + rdfs:label "potențial electric"@ro ; + rdfs:label "tensio electrica"@la ; + rdfs:label "Електрически потенциал"@bg ; + rdfs:label "электростатический потенциал"@ru ; + rdfs:label "מתח חשמלי (הפרש פוטנציאלים)"@he ; + rdfs:label "كمون كهربائي"@ar ; + rdfs:label "پتانسیل الکتریکی"@fa ; + rdfs:label "विद्युत विभव"@hi ; + rdfs:label "電位"@ja ; + rdfs:label "電勢"@zh ; + skos:altLabel "vis electromotrix"@la . + +quantitykind:ElectricPotentialDifference + a qudt:QuantityKind ; + dcterms:description "\"Electric Potential Difference\" is a scalar valued quantity associated with an electric field."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:exactMatch quantitykind:ElectricPotential ; + qudt:exactMatch quantitykind:EnergyPerElectricCharge ; + qudt:exactMatch quantitykind:Voltage ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$V_{ab} = \\int_{r_a(C)}^{r_b} (E +\\frac{\\partial A}{\\partial t}) $, where $E$ is electric field strength, $A$ is magentic vector potential, $t$ is time, and $r$ is position vector along a curve C from a point $a$ to $b$."^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Potential Difference\" is a scalar valued quantity associated with an electric field." ; + qudt:siExactMatch si-quantity:ELPD ; + qudt:symbol "V_{ab}" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricPotentialDifference" ; + rdfs:isDefinedBy ; + rdfs:label "Voltan Perbezaan keupayaan elektrik"@ms ; + rdfs:label "diferență de potențial electric"@ro ; + rdfs:label "differenza di potenziale elettrico"@it ; + rdfs:label "electric potential difference"@en ; + rdfs:label "elektrické napětí"@cs ; + rdfs:label "elektrische Spannung"@de ; + rdfs:label "električna napetost"@sl ; + rdfs:label "gerilim"@tr ; + rdfs:label "napięcie elektryczne"@pl ; + rdfs:label "tension électrique"@fr ; + rdfs:label "tensión eléctrica"@es ; + rdfs:label "tensão elétrica (diferença de potencial)"@pt ; + rdfs:label "электрическое напряжение"@ru ; + rdfs:label "جهد كهربائي"@ar ; + rdfs:label "ولتاژ/ اختلاف پتانسیل"@fa ; + rdfs:label "विभवांतर"@hi ; + rdfs:label "電圧"@ja ; + rdfs:label "電壓"@zh ; + skos:altLabel "ketegangan"@ms ; + skos:altLabel "tension"@en ; + skos:altLabel "tensione elettrica"@it ; + skos:altLabel "tensiune"@ro . + +quantitykind:ElectricPower + a qudt:QuantityKind ; + dcterms:description "\"Electric Power\" is the rate at which electrical energy is transferred by an electric circuit. In the simple case of direct current circuits, electric power can be calculated as the product of the potential difference in the circuit (V) and the amount of current flowing in the circuit (I): $P = VI$, where $P$ is the power, $V$ is the potential difference, and $I$ is the current. However, in general electric power is calculated by taking the integral of the vector cross-product of the electrical and magnetic fields over a specified area."^^qudt:LatexString ; + qudt:applicableSIUnit unit:KiloW ; + qudt:applicableSIUnit unit:MegaW ; + qudt:applicableSIUnit unit:MilliW ; + qudt:applicableSIUnit unit:W ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:latexDefinition "$p = ui$, where $u$ is instantaneous voltage and $i$ is instantaneous electric current."^^qudt:LatexString ; + qudt:symbol "P_E" ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Wirkleistung"@de ; + rdfs:label "electric power"@en ; + rdfs:label "moc czynna"@pl ; + rdfs:label "potencia activa"@es ; + rdfs:label "potenza attiva"@it ; + rdfs:label "potência activa"@pt ; + rdfs:label "puissance active"@fr ; + rdfs:label "القدرة الفعالة"@ar ; + rdfs:label "有功功率"@zh ; + rdfs:label "有効電力"@ja ; + skos:broader quantitykind:Power . + +quantitykind:ElectricPropulsionPropellantMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_P" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Propulsion Propellant Mass"@en ; + skos:broader quantitykind:PropellantMass . + +quantitykind:ElectricQuadrupoleMoment + a qudt:QuantityKind ; + dcterms:description "The Electric Quadrupole Moment is a quantity which describes the effective shape of the ellipsoid of nuclear charge distribution. A non-zero quadrupole moment Q indicates that the charge distribution is not spherically symmetric. By convention, the value of Q is taken to be positive if the ellipsoid is prolate and negative if it is oblate. In general, the electric quadrupole moment is tensor-valued."^^qudt:LatexString ; + qudt:applicableUnit unit:C-M2 ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T1D0 ; + qudt:plainTextDescription "The Electric Quadrupole Moment is a quantity which describes the effective shape of the ellipsoid of nuclear charge distribution. A non-zero quadrupole moment Q indicates that the charge distribution is not spherically symmetric. By convention, the value of Q is taken to be positive if the ellipsoid is prolate and negative if it is oblate. In general, the electric quadrupole moment is tensor-valued." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricQuadrupoleMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Momen kuadrupol elektrik"@ms ; + rdfs:label "electric quadrupole moment"@en ; + rdfs:label "elektrik kuadrupol momenti"@tr ; + rdfs:label "elektrisches Quadrupolmoment"@de ; + rdfs:label "elektryczny moment kwadrupolowy"@pl ; + rdfs:label "moment quadrupolaire électrique"@fr ; + rdfs:label "momento de cuadrupolo eléctrico"@es ; + rdfs:label "momento de quadrupolo elétrico"@pt ; + rdfs:label "momento di quadrupolo elettrico"@it ; + rdfs:label "Электрический квадрупольный момент"@ru ; + rdfs:label "گشتاور چهار قطبی الکتریکی"@fa ; + rdfs:label "四極子"@ja ; + rdfs:label "电四极矩"@zh . + +quantitykind:ElectricSusceptibility + a qudt:QuantityKind ; + dcterms:description "\"Electric Susceptibility\" is the ratio of electric polarization to electric field strength, normalized to the electric constant. The definition applies to an isotropic medium. For an anisotropic medium, electric susceptibility is a second order tensor."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ; + qudt:expression "$e-susceptibility$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\chi = \\frac{P}{(\\epsilon_0 E)}$, where $P$ is electric polorization, $\\epsilon_0$ is the electric constant, and $E$ is electric field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\chi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Electric Susceptibility\" is the ratio of electric polarization to electric field strength, normalized to the electric constant. The definition applies to an isotropic medium. For an anisotropic medium, electric susceptibility is a second order tensor." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricSusceptibility" ; + rdfs:isDefinedBy ; + rdfs:label "electric susceptibility"@en ; + rdfs:label "elektrische Suszeptibilität"@de ; + rdfs:label "podatność elektryczna"@pl ; + rdfs:label "susceptibilidad eléctrica"@es ; + rdfs:label "susceptibilidade eléctrica"@pt ; + rdfs:label "susceptibilité électrique"@fr ; + rdfs:label "suscettività elettrica"@it ; + rdfs:label "электрическая восприимчивость"@ru ; + rdfs:label "المتأثرية الكهربائية، سرعة التأثر الكهربائية"@ar ; + rdfs:label "電気感受率"@ja ; + rdfs:seeAlso quantitykind:ElectricFieldStrength ; + rdfs:seeAlso quantitykind:ElectricPolarization ; + skos:altLabel "susceptywność elektryczna"@pl ; + skos:altLabel "диэлектрическая восприимчивость"@ru . + +quantitykind:ElectricalConductance + a qudt:QuantityKind ; + dcterms:description "measure of the capability of a material to conduct electric current, the value of which is defined as the reciprocal of the electrical resistance"@en ; + qudt:applicableUnit unit:PicoS ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD038" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD038"^^xsd:anyURI ; + qudt:plainTextDescription "Maß für die Fähigkeit eines Stoffes, den elektrischen Strom zu leiten, das wertmäßig definiert ist als Kehrwert des elektrischen Widerstandes"@de ; + qudt:siExactMatch si-quantity:ELCO ; + qudt:symbol "0173-1#Z4-BAJ223#002" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricalConductance" ; + rdfs:isDefinedBy ; + rdfs:label "electrical conductance" ; + rdfs:label "electrical conductance"@en-US . + +quantitykind:ElectricalPowerToMassRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:ERG-PER-GM-SEC ; + qudt:applicableUnit unit:GRAY-PER-HR ; + qudt:applicableUnit unit:GRAY-PER-MIN ; + qudt:applicableUnit unit:GRAY-PER-SEC ; + qudt:applicableUnit unit:MicroGRAY-PER-HR ; + qudt:applicableUnit unit:MicroGRAY-PER-MIN ; + qudt:applicableUnit unit:MicroGRAY-PER-SEC ; + qudt:applicableUnit unit:MicroSV-PER-MIN ; + qudt:applicableUnit unit:MicroSV-PER-SEC ; + qudt:applicableUnit unit:MilliGRAY-PER-HR ; + qudt:applicableUnit unit:MilliGRAY-PER-MIN ; + qudt:applicableUnit unit:MilliGRAY-PER-SEC ; + qudt:applicableUnit unit:MilliRAD_R-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-MIN ; + qudt:applicableUnit unit:MilliSV-PER-SEC ; + qudt:applicableUnit unit:MilliW-PER-MilliGM ; + qudt:applicableUnit unit:NanoGRAY-PER-HR ; + qudt:applicableUnit unit:NanoGRAY-PER-MIN ; + qudt:applicableUnit unit:NanoGRAY-PER-SEC ; + qudt:applicableUnit unit:NanoSV-PER-HR ; + qudt:applicableUnit unit:NanoSV-PER-MIN ; + qudt:applicableUnit unit:NanoSV-PER-SEC ; + qudt:applicableUnit unit:REM-PER-SEC ; + qudt:applicableUnit unit:SV-PER-HR ; + qudt:applicableUnit unit:SV-PER-MIN ; + qudt:applicableUnit unit:SV-PER-SEC ; + qudt:applicableUnit unit:W-PER-GM ; + qudt:applicableUnit unit:W-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:latexSymbol "$\\xi$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:SpecificPower" ; + rdfs:isDefinedBy ; + rdfs:label "Electrical Power To Mass Ratio"@en ; + skos:broader quantitykind:SpecificPower . + +quantitykind:ElectricalResistance + a qudt:QuantityKind ; + dcterms:description "different properties of materials which impede the electrical current in its movement when the free charged particles in these materials are set in motion by electrical fields and/or electrical potentials "@en ; + dcterms:description "unterschiedlich ausgeprägte Eigenschaft von Stoffen, den elektrischen Strom in seiner Bewegung zu hemmen, wenn die freien Ladungsträger in diesen Stoffen durch elektrische Felder und/oder elektrische Potentiale in Bewegung gesetzt werden"@de ; + qudt:applicableUnit unit:NanoOHM ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD045" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD045"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:ELRE ; + qudt:symbol "0173-1#Z4-BAJ215#003" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricalResistance" ; + rdfs:isDefinedBy ; + rdfs:label "electrical resistance"@en-US . + +quantitykind:ElectrolyticConductivity + a qudt:QuantityKind ; + dcterms:description "\"Electrolytic Conductivity\" of an electrolyte solution is a measure of its ability to conduct electricity."^^qudt:LatexString ; + qudt:applicableUnit unit:MicroS-PER-CentiM ; + qudt:applicableUnit unit:S-PER-M ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Conductivity_(electrolytic)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$x = \\frac{J}{E}$, where $J$ is the electrolytic current density and $E$ is the electric field strength."^^qudt:LatexString ; + qudt:plainTextDescription "\"Electrolytic Conductivity\" of an electrolyte solution is a measure of its ability to conduct electricity." ; + qudt:symbol "x" ; + rdfs:comment "Applicable units are those of quantitykind:ElectrolyticConductivity" ; + rdfs:isDefinedBy ; + rdfs:label "Electrolytic Conductivity"@en . + +quantitykind:ElectromagneticEnergyDensity + a qudt:QuantityKind ; + dcterms:description """ +$\\textit{Electromagnetic Energy Density}$, also known as the $\\color{indigo} {\\text{Volumic Electromagnetic Energy}}$, is the energy associated with an electromagnetic field, per unit volume of the field. + """^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:exactMatch quantitykind:VolumicElectromagneticEnergy ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-64"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$w = (1/2) ( \\mathbf{E} \\cdot \\mathbf{D} + \\mathbf{B} \\cdot \\mathbf{H})$, where $\\mathbf{E}$ is electric field strength, $\\mathbf{D}$ is electric flux density, $\\mathbf{M}$ is magnetic flux density, and $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ; + qudt:symbol "w" ; + rdfs:comment "Applicable units are those of quantitykind:ElectromagneticEnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electromagnetic Energy Density"@en ; + rdfs:seeAlso quantitykind:ElectricFieldStrength ; + rdfs:seeAlso quantitykind:ElectricFluxDensity ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H ; + rdfs:seeAlso quantitykind:MagneticFluxDensity . + +quantitykind:ElectromagneticPermeability + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Permeability}$ is the degree of magnetization of a material that responds linearly to an applied magnetic field. + In general permeability is a tensor-valued quantity. + The definition given applies to an isotropic medium. + For an anisotropic medium permeability is a second order tensor. + In electromagnetism, permeability is the measure of the ability of a material to support the formation of a magnetic field within itself. + In other words, it is the degree of magnetization that a material obtains in response to an applied magnetic field. + Magnetic permeability is typically represented by the Greek letter $\\mu$. + The term was coined in September, 1885 by Oliver Heaviside. + The reciprocal of magnetic permeability is $\\textit{Magnetic Reluctivity}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:H-PER-M ; + qudt:applicableUnit unit:H_Stat-PER-CentiM ; + qudt:applicableUnit unit:MicroH-PER-M ; + qudt:applicableUnit unit:NanoH-PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permeability"^^xsd:anyURI ; + qudt:exactMatch quantitykind:Permeability ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Permeability_(electromagnetism)"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\frac{B}{H}$, where $B$ is magnetic flux density, and $H$ is magnetic field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ElectromagneticPermeability" ; + rdfs:isDefinedBy ; + rdfs:label "Permeability"@en ; + rdfs:seeAlso constant:ElectromagneticPermeabilityOfVacuum ; + rdfs:seeAlso constant:MagneticConstant ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H ; + rdfs:seeAlso quantitykind:MagneticFluxDensity . + +quantitykind:ElectromagneticPermeabilityRatio + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electromagnetic Permeability Ratio}$ is the ratio of the electromagnetic permeability of a specific medium to the electromagnetic permeability of free space. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PERMEABILITY_EM_REL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:plainTextDescription "The ratio of the electromagnetic permeability of a specific medium to the electromagnetic permeability of free space." ; + qudt:qkdvDenominator qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E-2L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ElectromagneticPermeabilityRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Electromagnetic Permeability Ratio"@en . + +quantitykind:ElectromagneticWavePhaseSpeed + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electromagnetic Wave Phase Speed}$ is the ratio of angular velocity and wavenumber. + """^^qudt:LatexString ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-66"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$c = w/k$ where $w$ is angular velocity and $k$ is angular wavenumber."^^qudt:LatexString ; + qudt:plainTextDescription "\"Electromagnetic Wave Phase Speed\" is the ratio of angular velocity and wavenumber." ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:ElectromagneticWavePhaseSpeed" ; + rdfs:isDefinedBy ; + rdfs:label "Electromagnetic Wave Phase Speed"@en . + +quantitykind:ElectromotiveForce + a qudt:QuantityKind ; + dcterms:description """ + In physics, $\\textit{Electromotive Force}$, or most commonly $emf$ (seldom capitalized), or (occasionally) electromotance is that which tends to cause current (actual electrons and ions) to flow. + More formally, $emf$ is the external work expended per unit of charge to produce an electric potential difference across two open-circuited terminals. + $\\textit{Electromotive Force}$ is deprecated in the ISO System of Quantities. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electromotive_force"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Daya gerak elektrik"@ms ; + rdfs:label "Elektromotor kuvvet"@tr ; + rdfs:label "Elektromotorické napětí"@cs ; + rdfs:label "electromotive force"@en ; + rdfs:label "elektromotorische Kraft"@de ; + rdfs:label "elektromotorna sila"@sl ; + rdfs:label "force électromotrice"@fr ; + rdfs:label "forza elettromotrice"@it ; + rdfs:label "força eletromotriz"@pt ; + rdfs:label "forță electromotoare"@ro ; + rdfs:label "fuerza electromotriz"@es ; + rdfs:label "siła elektromotoryczna"@pl ; + rdfs:label "электродвижущая сила"@ru ; + rdfs:label "قوة محركة كهربائية"@ar ; + rdfs:label "نیروی محرک الکتریکی"@fa ; + rdfs:label "विद्युतवाहक बल"@hi ; + rdfs:label "起電力"@ja ; + rdfs:label "電動勢"@zh ; + skos:broader quantitykind:EnergyPerElectricCharge . + +quantitykind:ElectronAffinity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electron Affinity}$ is the energy difference between an electron at rest at infinity and an electron at the lowest level of the conduction band in an insulator or semiconductor. + The amount of energy released when an electron is added to a neutral atom or molecule to form a negative ion. + """^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_affinity"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Electron Affinity\" is the energy difference between an electron at rest at infinity and an electron at the lowest level of the conduction band in an insulator or semiconductor. The the amount of energy released when an electron is added to a neutral atom or molecule to form a negative ion." ; + qudt:symbol "χ" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Electron Affinity"@en ; + skos:broader quantitykind:Energy . + +quantitykind:ElectronDensity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electron Density}$ is the number of electrons per volume in conduction bands. + It is the measure of the probability of an electron being present at a specific location. + """^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_density"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Electron Density\" is the number of electrons per volume in conduction bands. It is the measure of the probability of an electron being present at a specific location." ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Electron Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:ElectronMeanFreePath + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electron Mean Free Path}$ is the mean free path of electrons. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Electron Mean Free Path\" is the mean free path of electrons." ; + qudt:symbol "l_e" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Electron Mean Free Path"@en ; + skos:broader quantitykind:Length . + +quantitykind:ElectronMobility + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM2-PER-V-SEC ; + qudt:applicableUnit unit:M2-PER-V-SEC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T2D0 ; + qudt:iec61360Code "0112/2///62720#UAD119" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD119"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Mobility" ; + rdfs:isDefinedBy ; + rdfs:label "electron mobility" ; + skos:broader quantitykind:Mobility . + +quantitykind:ElectronRadius + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Electron Radius}$, also known as the Lorentz radius or the Thomson scattering length, is based on a classical (i.e., non-quantum) relativistic model of the electron. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Classical_electron_radius"^^xsd:anyURI ; + qudt:latexDefinition "$r_e = \\frac{e^2}{4\\pi m_e c_0^2}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, item $m_e$ is the rest mass of electrons, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Electron Radius\", also known as the Lorentz radius or the Thomson scattering length, is based on a classical (i.e., non-quantum) relativistic model of the electron." ; + qudt:symbol "r_e" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Electron Radius"@en ; + skos:broader quantitykind:Length . + +quantitykind:ElevationRelativeToNAP + a qudt:QuantityKind ; + prov:wasDerivedFrom ; + prov:wasInfluencedBy ; + qudt:applicableUnit unit:M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Height measurement relative to the Normaal Amsterdams Peil (NAP) (en: Amsterdam Ordnance System). Being a form of gravity related height" ; + qudt:symbol "mNAP" ; + rdfs:comment "Applicable units are those of quantitykind:ElevationRelativeToNAP" ; + rdfs:comment "Height measurement relative to the Normaal Amsterdams Peil (NAP) (en: Amsterdam Ordnance System). Being a form of gravity related height" ; + rdfs:isDefinedBy ; + rdfs:label "Elevation relative to NAP"@en ; + rdfs:label "Hoogte ten opzichte van NAP"@nl ; + skos:broader quantitykind:Altitude ; + skos:prefLabel "Elevation relative to NAP"@en ; + skos:prefLabel "Hoogte ten opzichte van NAP"@nl . + +quantitykind:EllipticalOrbitApogeeVelocity + a qudt:QuantityKind ; + dcterms:description "Velocity at apogee for an elliptical orbit velocity"^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Velocity at apogee for an elliptical orbit velocity" ; + qudt:symbol "V_a" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Elliptical Orbit Apogee Velocity"@en ; + skos:broader quantitykind:VehicleVelocity . + +quantitykind:EllipticalOrbitPerigeeVelocity + a qudt:QuantityKind ; + dcterms:description "Velocity at apogee for an elliptical orbit velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Velocity at apogee for an elliptical orbit velocity." ; + qudt:symbol "V_p" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Elliptical Orbit Perigee Velocity"@en ; + skos:broader quantitykind:VehicleVelocity . + +quantitykind:Emissivity + a qudt:QuantityKind ; + dcterms:description "Emissivity of a material (usually written $\\varepsilon$ or e) is the relative ability of its surface to emit energy by radiation."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Emissivity"^^xsd:anyURI ; + qudt:latexDefinition "$\\varepsilon = \\frac{M}{M_b}$, where $M$ is the radiant exitance of a thermal radiator and $M_b$ is the radiant exitance of a blackbody at the same temperature."^^qudt:LatexString ; + qudt:latexSymbol "$\\varepsilon$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Emissivity" ; + rdfs:isDefinedBy ; + rdfs:label "Emissivity"@en . + +quantitykind:Energy + a qudt:QuantityKind ; + dcterms:description "Energy is the quantity characterizing the ability of a system to do work."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "Energy is the quantity characterizing the ability of a system to do work." ; + qudt:siExactMatch si-quantity:ENGY ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energie"@cs ; + rdfs:label "Energie"@de ; + rdfs:label "Tenaga"@ms ; + rdfs:label "energia , munka , hő"@hu ; + rdfs:label "energia"@es ; + rdfs:label "energia"@it ; + rdfs:label "energia"@la ; + rdfs:label "energia"@pl ; + rdfs:label "energia"@pt ; + rdfs:label "energie"@ro ; + rdfs:label "energija"@sl ; + rdfs:label "energy"@en ; + rdfs:label "enerji"@tr ; + rdfs:label "énergie"@fr ; + rdfs:label "Έργο - Ενέργεια"@el ; + rdfs:label "Енергия"@bg ; + rdfs:label "Энергия"@ru ; + rdfs:label "אנרגיה ועבודה"@he ; + rdfs:label "الطاقة"@ar ; + rdfs:label "انرژی"@fa ; + rdfs:label "ऊर्जा"@hi ; + rdfs:label "エネルギー"@ja ; + rdfs:label "能量"@zh ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:Entropy ; + rdfs:seeAlso quantitykind:GibbsEnergy ; + rdfs:seeAlso quantitykind:HelmholtzEnergy ; + rdfs:seeAlso quantitykind:InternalEnergy ; + rdfs:seeAlso quantitykind:Work . + +quantitykind:EnergyContent + a qudt:QuantityKind ; + dcterms:description "saved quantity of energy which can be used physically or chemically"@en ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD046" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD046"^^xsd:anyURI ; + qudt:plainTextDescription "gespeicherte Energiemenge, die physikalisch oder chemisch nutzbar ist"@de ; + qudt:symbol "0173-1#Z4-BAJ319#002" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "energy content" ; + rdfs:label "energy content"@en-US ; + skos:broader quantitykind:Energy . + +quantitykind:EnergyDensity + a qudt:QuantityKind ; + dcterms:description """ + Energy density is defined as energy per unit volume. + The SI unit for energy density is the joule per cubic meter. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT3 ; + qudt:applicableUnit unit:BTU_TH-PER-FT3 ; + qudt:applicableUnit unit:ERG-PER-CentiM3 ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:applicableUnit unit:MegaJ-PER-M3 ; + qudt:applicableUnit unit:W-HR-PER-M3 ; + qudt:baseISOUnitDimensions "$m^{-1} \\cdot kg \\cdot s^{-2}$" ; + qudt:baseImperialUnitDimensions "$ft^{-1} \\cdot lb \\cdot s^{-2}$"^^qudt:LatexString ; + qudt:baseSIUnitDimensions "$m^{-1} \\cdot kg \\cdot s^{-2}$"^^qudt:LatexString ; + qudt:baseUSCustomaryUnitDimensions "$L^{-1} \\cdot M \\cdot T^{-2}$"^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Energy_density"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD047" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Energy_density"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD047"^^xsd:anyURI ; + qudt:plainTextDescription "Energy density is defined as energy per unit volume. The SI unit for energy density is the joule per cubic meter." ; + qudt:siExactMatch si-quantity:ENGD ; + rdfs:comment "Applicable units are those of quantitykind:EnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Density"@en . + +quantitykind:EnergyDensityOfStates + a qudt:QuantityKind ; + dcterms:description "\"Energy Density of States\" refers to electrons or other entities, e.g. phonons. It can, for example, refer to amount of substance instead of volume."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-EV-M3 ; + qudt:applicableUnit unit:PER-J-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-5I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Density_of_states"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho(E) = n_E(E) = \\frac{dN(E)}{dE}\\frac{1}{V}$, where $N(E)$ is the total number of states with energy less than $E$, and $V$ is the volume."^^qudt:LatexString ; + qudt:plainTextDescription "\"Energy Density of States\" refers to electrons or other entities, e.g. phonons. It can, for example, refer to amount of substance instead of volume." ; + qudt:symbol "n_E" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyDensityOfStates" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Density of States"@en . + +quantitykind:EnergyExpenditure + a qudt:QuantityKind ; + dcterms:description """Energy expenditure is dependent on a person's sex, metabolic rate, body-mass composition, the thermic effects of food, and activity level. The approximate energy expenditure of a man lying in bed is $1.0\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$. For slow walking (just over two miles per hour), $3.0\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$. For fast steady running (about 10 miles per hour), $16.3\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$. +Females expend about 10 per cent less energy than males of the same size doing a comparable activity. For people weighing the same, individuals with a high percentage of body fat usually expend less energy than lean people, because fat is not as metabolically active as muscle."""^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780198631477.001.0001/acref-9780198631477-e-594"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Energy Expenditure"@en . + +quantitykind:EnergyFluence + a qudt:QuantityKind ; + dcterms:description "\"Energy Fluence\" can be used to describe the energy delivered per unit area"^^qudt:LatexString ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:LANGLEY ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fluence"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\Psi = \\frac{dR}{dA}$, where $dR$ describes the sum of radiant energies, exclusive of rest energy, of all particles incident on a small spherical domain, and $dA$ describes the cross-sectional area of that domain."^^qudt:LatexString ; + qudt:latexSymbol "$\\Psi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Energy Fluence\" can be used to describe the energy delivered per unit area" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyFluence" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Fluence"@en . + +quantitykind:EnergyFluenceRate + a qudt:QuantityKind ; + dcterms:description "\"Energy Fluence Rate\" can be used to describe the energy fluence delivered per unit time."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fluence"^^xsd:anyURI ; + qudt:latexDefinition "$\\Psi = \\frac{d\\Psi}{dt}$, where $d\\Psi$ is the increment of the energy fluence during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Energy Fluence Rate\" can be used to describe the energy fluence delivered per unit time." ; + qudt:symbol "Ψ" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Fluence Rate"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:EnergyImparted + a qudt:QuantityKind ; + dcterms:description "The \"Energy Imparted\", is a physical quantity associated with the energy delivered to a particular volume of matter by all the directly and indirectly ionizing particles (i.e. charged and uncharged) entering that volume."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ; + qudt:latexDefinition "For ionizing radiation in the matter in a given 3D domain, $\\varepsilon = \\sum_i \\varepsilon_i$, where the energy deposit, $\\varepsilon_i$ is the energy deposited in a single interaction $i$, and is given by $\\varepsilon_i = \\varepsilon_{in} - \\varepsilon_{out} + Q$, where $\\varepsilon_{in}$ is the energy of the incident ionizing particle, excluding rest energy, $\\varepsilon_{out}$ is the sum of the energies of all ionizing particles leaving the interaction, excluding rest energy, and $Q$ is the change in the rest energies of the nucleus and of all particles involved in the interaction."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Energy Imparted\", is a physical quantity associated with the energy delivered to a particular volume of matter by all the directly and indirectly ionizing particles (i.e. charged and uncharged) entering that volume." ; + qudt:symbol "ε" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Imparted"@en ; + skos:broader quantitykind:Energy . + +quantitykind:EnergyInternal + a qudt:QuantityKind ; + dcterms:description "The internal energy is the total energy contained by a thermodynamic system. It is the energy needed to create the system, but excludes the energy to displace the system's surroundings, any energy associated with a move as a whole, or due to external force fields. Internal energy has two major components, kinetic energy and potential energy. The internal energy (U) is the sum of all forms of energy (Ei) intrinsic to a thermodynamic system: $ U = \\sum_i E_i $"^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Internal_energy"^^xsd:anyURI ; + qudt:exactMatch quantitykind:InternalEnergy ; + qudt:exactMatch quantitykind:ThermodynamicEnergy ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Internal_energy"^^xsd:anyURI ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Notranja energija"@sl ; + rdfs:label "Tenaga dalaman"@ms ; + rdfs:label "energia interna"@it ; + rdfs:label "energia interna"@pt ; + rdfs:label "energia wewnętrzna"@pl ; + rdfs:label "energie internă"@ro ; + rdfs:label "energía interna"@es ; + rdfs:label "innere Energie"@de ; + rdfs:label "internal energy"@en ; + rdfs:label "vnitřní energie"@cs ; + rdfs:label "énergie interne"@fr ; + rdfs:label "İç enerji"@tr ; + rdfs:label "внутренняя энергия"@ru ; + rdfs:label "انرژی درونی"@fa ; + rdfs:label "طاقة داخلية"@ar ; + rdfs:label "आन्तरिक ऊर्जा"@hi ; + rdfs:label "内能"@zh ; + rdfs:label "内部エネルギー"@ja ; + skos:altLabel "energia termodinamica"@it ; + skos:altLabel "tenaga termodinamik"@ms ; + skos:altLabel "thermodynamic energy"@en ; + skos:altLabel "thermodynamische Energie"@de ; + skos:altLabel "énergie thermodynamique"@fr ; + skos:broader quantitykind:Energy . + +quantitykind:EnergyKinetic + a qudt:QuantityKind ; + dcterms:description "The kinetic energy of an object is the energy which it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kinetic_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kinetic_energy"^^xsd:anyURI ; + qudt:plainTextDescription "The kinetic energy of an object is the energy which it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity." ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energie cinetică"@ro ; + rdfs:label "Kinetik enerji"@tr ; + rdfs:label "Tenaga kinetik"@ms ; + rdfs:label "energia cinetica"@it ; + rdfs:label "energia cinética"@pt ; + rdfs:label "energia kinetyczna"@pl ; + rdfs:label "energía cinética"@es ; + rdfs:label "kinetic energy"@en ; + rdfs:label "kinetická energie"@cs ; + rdfs:label "kinetische Energie"@de ; + rdfs:label "énergie cinétique"@fr ; + rdfs:label "кинетическая энергия"@ru ; + rdfs:label "انرژی جنبشی"@fa ; + rdfs:label "طاقة حركية"@ar ; + rdfs:label "गतिज ऊर्जा"@hi ; + rdfs:label "动能"@zh ; + rdfs:label "運動エネルギー"@ja ; + skos:broader quantitykind:Energy . + +quantitykind:EnergyLevel + a qudt:QuantityKind ; + dcterms:description "\"Energy Level\" is the ionization energy for an electron at the Fermi energy in the interior of a substance."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Energy Level\" is the ionization energy for an electron at the Fermi energy in the interior of a substance." ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Level"@en ; + skos:broader quantitykind:Energy . + +quantitykind:EnergyPerArea + a qudt:QuantityKind ; + dcterms:description "Energy per unit area is a measure of the energy either impinging upon or generated from a given unit of area. This can be a measure of the \"toughness\" of a material, being the amount of energy that needs to be applied per unit area of a crack to cause it to fracture. This is a constant for a given material.."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2 ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2 ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:ERG-PER-CentiM2 ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2 ; + qudt:applicableUnit unit:FT-LB_F-PER-M2 ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:J-PER-CentiM2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:KiloBTU_IT-PER-FT2 ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-SEC2 ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloW-HR-PER-M2 ; + qudt:applicableUnit unit:LANGLEY ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:MegaJ-PER-M2 ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:W-HR-PER-M2 ; + qudt:applicableUnit unit:W-SEC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:informativeReference "http://www.calculator.org/property.aspx?name=energy%20per%20unit%20area"^^xsd:anyURI ; + qudt:plainTextDescription "Energy per unit area is a measure of the energy either impinging upon or generated from a given unit of area. This can be a measure of the \"toughness\" of a material, being the amount of energy that needs to be applied per unit area of a crack to cause it to fracture. This is a constant for a given material.." ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Energy per Area"@en . + +quantitykind:EnergyPerAreaElectricCharge + a qudt:QuantityKind ; + dcterms:description "\"Energy Per Area Electric Charge\" is the amount of electric energy associated with a unit of area."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-3D0 ; + qudt:plainTextDescription "\"Energy Per Area Electric Charge\" is the amount of electric energy associated with a unit of area." ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerAreaElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Per Area Electric Charge"@en . + +quantitykind:EnergyPerElectricCharge + a qudt:QuantityKind ; + dcterms:description "Voltage is a representation of the electric potential energy per unit charge. If a unit of electrical charge were placed in a location, the voltage indicates the potential energy of it at that point. In other words, it is a measurement of the energy contained within an electric field, or an electric circuit, at a given point. Voltage is a scalar quantity. The SI unit of voltage is the volt, such that $1 volt = 1 joule/coulomb$."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:exactMatch quantitykind:ElectricPotential ; + qudt:exactMatch quantitykind:ElectricPotentialDifference ; + qudt:exactMatch quantitykind:Voltage ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://physics.about.com/od/glossary/g/voltage.htm"^^xsd:anyURI ; + qudt:symbol "V" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Energy per electric charge"@en . + +quantitykind:EnergyPerMagneticFluxDensity_Squared + a qudt:QuantityKind ; + dcterms:description "\"Energy Per Square Magnetic Flux Density\" is a measure of energy for a unit of magnetic flux density."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-T2 ; + qudt:hasDimensionVector qkdv:A0E2L2I0M-1H0T2D0 ; + qudt:plainTextDescription "\"Energy Per Square Magnetic Flux Density\" is a measure of energy for a unit of magnetic flux density." ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerMagneticFluxDensity_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Energy Per Square Magnetic Flux Density"@en . + +quantitykind:EnergyPerMassAmountOfSubstance + a qudt:QuantityKind ; + qudt:applicableUnit unit:BTU_IT-PER-MOL_LB ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerMassAmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Energy and work per mass amount of substance"@en . + +quantitykind:EnergyPerTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloJ-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Energy per temperature"@en . + +quantitykind:Energy_Squared + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L4I0M2H0T-4D0 ; + rdfs:isDefinedBy ; + rdfs:label "Square Energy"@en . + +quantitykind:Enthalpy + a qudt:QuantityKind ; + dcterms:description "In thermodynamics, $\\textit{enthalpy}$ is the sum of the internal energy $U$ and the product of pressure $p$ and volume $V$ of a system. The characteristic function (also known as thermodynamic potential) $\\textit{enthalpy}$ used to be called $\\textit{heat content}$, which is why it is conventionally indicated by $H$. The specific enthalpy of a working mass is a property of that mass used in thermodynamics, defined as $h=u+p \\cdot v$, where $u$ is the specific internal energy, $p$ is the pressure, and $v$ is specific volume. In other words, $h = H / m$ where $m$ is the mass of the system. The SI unit for $\\textit{Specific Enthalpy}$ is $\\textit{joules per kilogram}$"^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Enthalpy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:latexDefinition "$H = U + pV$, where $U$ is internal energy, $p$ is pressure and $V$ is volume."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:symbol "H" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Entalpi"@ms ; + rdfs:label "Entalpi"@tr ; + rdfs:label "Entalpie"@ro ; + rdfs:label "Enthalpie"@de ; + rdfs:label "entalpia"@it ; + rdfs:label "entalpia"@pl ; + rdfs:label "entalpia"@pt ; + rdfs:label "entalpie"@cs ; + rdfs:label "entalpija"@sl ; + rdfs:label "entalpía"@es ; + rdfs:label "enthalpie"@fr ; + rdfs:label "enthalpy"@en ; + rdfs:label "энтальпия"@ru ; + rdfs:label "آنتالپی"@fa ; + rdfs:label "محتوى حراري"@ar ; + rdfs:label "पूर्ण ऊष्मा"@hi ; + rdfs:label "エンタルピー"@ja ; + rdfs:label "焓"@zh ; + rdfs:seeAlso quantitykind:InternalEnergy ; + skos:broader quantitykind:Energy . + +quantitykind:Entropy + a qudt:QuantityKind ; + dcterms:description "When a small amount of heat $dQ$ is received by a system whose thermodynamic temperature is $T$, the entropy of the system increases by $dQ/T$, provided that no irreversible change takes place in the system."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Entropy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:symbol "S" ; + rdfs:comment "Applicable units are those of quantitykind:Entropy" ; + rdfs:isDefinedBy ; + rdfs:label "Entropi"@ms ; + rdfs:label "Entropie"@de ; + rdfs:label "entropi"@tr ; + rdfs:label "entropia"@it ; + rdfs:label "entropia"@pl ; + rdfs:label "entropia"@pt ; + rdfs:label "entropie"@cs ; + rdfs:label "entropie"@fr ; + rdfs:label "entropie"@ro ; + rdfs:label "entropija"@sl ; + rdfs:label "entropy"@en ; + rdfs:label "entropía"@es ; + rdfs:label "Энтропия"@ru ; + rdfs:label "آنتروپی"@fa ; + rdfs:label "إنتروبيا"@ar ; + rdfs:label "एन्ट्रॉपी"@hi ; + rdfs:label "エントロピー"@ja ; + rdfs:label "熵"@zh . + +quantitykind:EquilibriumConstant + a qudt:QuantityKind ; + dcterms:description "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$K^\\Theta = \\Pi_B(\\lambda_B^\\Theta)^{-\\nu_B}$, where $\\Pi_B$ denotes the product for all substances $B$, $\\lambda_B^\\Theta$ is the standard absolute activity of substance $B$, and $\\nu_B$ is the stoichiometric number of the substance $B$."^^qudt:LatexString ; + qudt:latexSymbol "$K^\\Theta$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit." ; + rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Equilibrium Constant"@en ; + rdfs:seeAlso quantitykind:EquilibriumConstantOnConcentrationBasis ; + rdfs:seeAlso quantitykind:EquilibriumConstantOnPressureBasis . + +quantitykind:EquilibriumConstantBasedOnConcentration + a qudt:QuantityKind ; + dcterms:description "Kc = ΠB(cB)νB for solutions"@en ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:plainTextDescription "Kc = ΠB(cB)νB für Lösungen"@de ; + qudt:symbol "0173-1#Z4-BAJ458#001" ; + rdfs:isDefinedBy ; + rdfs:label "equilibrium constant based on concentration"@en-US . + +quantitykind:EquilibriumConstantBasedOnPressure + a qudt:QuantityKind ; + dcterms:description "Kp = ΠB(pB)νB for gases"@en ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "Kp = ΠB(pB)νB für Gase"@de ; + qudt:symbol "0173-1#Z4-BAJ459#001" ; + rdfs:isDefinedBy ; + rdfs:label "equilibrium constant based on pressure"@en-US . + +quantitykind:EquilibriumConstantOnConcentrationBasis + a qudt:QuantityKind ; + dcterms:description "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD048" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD048"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$K_c = \\Pi_B(c_B)^{-\\nu_B}$, for solutions"^^qudt:LatexString ; + qudt:latexSymbol "$K_c$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit." ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant" ; + rdfs:comment "The unit is unit:MOL-PER-M3 raised to the N where N is the summation of stoichiometric numbers. I don't know what to do with this." ; + rdfs:isDefinedBy ; + rdfs:label "Equilibrium Constant on Concentration Basis"@en ; + skos:broader quantitykind:EquilibriumConstant . + +quantitykind:EquilibriumConstantOnPressureBasis + a qudt:QuantityKind ; + dcterms:description "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD049" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD049"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$K_p = \\Pi_B(p_B)^{-\\nu_B}$, for gases"^^qudt:LatexString ; + qudt:latexSymbol "$K_p$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit." ; + qudt:qkdvDenominator qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L-2I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Equilibrium Constant on Pressure Basis"@en ; + skos:broader quantitykind:EquilibriumConstant . + +quantitykind:EquilibriumPositionVectorOfIon + a qudt:QuantityKind ; + dcterms:description "\"Equilibrium Position Vector of Ion\" is the position vector of a particle in equilibrium."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Position_(vector)"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Equilibrium Position Vector of Ion\" is the position vector of a particle in equilibrium." ; + qudt:symbol "R_0" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Equilibrium Position Vector of Ion"@en ; + skos:broader quantitykind:Length . + +quantitykind:EquivalenceDoseOutput + a qudt:QuantityKind ; + dcterms:description "ratio of equivalence dose within an appropriately small interval to this interval, calculated as the differential quotient: q • D = q • ∂D/∂t as a measure of the current radiation exposure"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:plainTextDescription "Quotient aus der Äquivalenzdosis in einer angemessenen kleinen Zeitspanne und dieser Zeitspanne, berechenbar als Differentialquotient: q • D = q • ∂D/∂t als Maß für die aktuelle Strahlenbelastung"@de ; + qudt:symbol "0173-1#Z4-BAJ450#001" ; + rdfs:isDefinedBy ; + rdfs:label "equivalence dose output"@en-US . + +quantitykind:EquivalentAbsorptionArea + a qudt:QuantityKind ; + dcterms:description "In a diffuse sound field, the Equivalent Absorption Area is that area of a surface having an absorption factor equal to 1, which, if diffraction effects are neglected, would, in the same diffuse sound field, absorb the same power."^^qudt:LatexString ; + qudt:abbreviation "m2" ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "https://www.acoustic-glossary.co.uk/sound-absorption.htm#:~:text=Equivalent%20Sound%20Absorption%20Area%20(A,reverberation%20time%20in%20a%20room."^^xsd:anyURI ; + qudt:plainTextDescription "In a diffuse sound field, the Equivalent Absorption Area is that area of a surface having an absorption factor equal to 1, which, if diffraction effects are neglected, would, in the same diffuse sound field, absorb the same power." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Equivalent absorption area"@en ; + skos:broader quantitykind:Area ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:EquivalentConcentration + a qudt:QuantityKind ; + dcterms:description """"Equivalent Concentration" is the amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of +another substance in a given chemical reaction, per volume."""^^rdf:HTML ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Equivalent_(chemistry)"^^xsd:anyURI ; + qudt:plainTextDescription "The amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of another substance in a given chemical reaction, per volume." ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Equivalent Concentration"@en ; + skos:broader quantitykind:Concentration . + +quantitykind:EquivalentDensity + a qudt:QuantityKind ; + dcterms:description """"Equivalent Density" is the mass of a substance that reacts with (or is equivalent to) an arbitrary mass of +another substance in a given chemical reaction, per volume."""^^rdf:HTML ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Density" ; + rdfs:isDefinedBy ; + rdfs:label "Equivalent Density"@en ; + skos:broader quantitykind:Density . + +quantitykind:Equivalent_Mass + a qudt:QuantityKind ; + dcterms:description """"Mass Equivalent" is the mass of a substance that reacts with (or is equivalent to) an arbitrary mass of +another substance in a given chemical reaction."""^^rdf:HTML ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Equivalent" ; + skos:broader quantitykind:Mass . + +quantitykind:Equivalent_Molar + a qudt:QuantityKind ; + dcterms:description """"Molar Equivalent" is the amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of +another substance in a given chemical reaction."""^^rdf:HTML ; + qudt:applicableUnit unit:CentiMOL ; + qudt:applicableUnit unit:FemtoMOL ; + qudt:applicableUnit unit:IU ; + qudt:applicableUnit unit:KiloMOL ; + qudt:applicableUnit unit:MOL ; + qudt:applicableUnit unit:MOL_LB ; + qudt:applicableUnit unit:MicroMOL ; + qudt:applicableUnit unit:MilliMOL ; + qudt:applicableUnit unit:MilliOSM ; + qudt:applicableUnit unit:NanoMOL ; + qudt:applicableUnit unit:OSM ; + qudt:applicableUnit unit:PicoMOL ; + qudt:applicableUnit unit:SCF ; + qudt:applicableUnit unit:SCM ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Equivalent_(chemistry)"^^xsd:anyURI ; + qudt:symbol "equiv" ; + rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Equivalent"@en ; + skos:broader quantitykind:AmountOfSubstance . + +quantitykind:EvaporativeHeatTransfer + a qudt:QuantityKind ; + dcterms:description "\"Evaporative Heat Transfer\" is "^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi_e$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Evaporative Heat Transfer\" is " ; + rdfs:isDefinedBy ; + rdfs:label "Evaporative Heat Transfer"@en . + +quantitykind:EvaporativeHeatTransferCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Evaporative Heat Transfer Coefficient\" is the areic heat transfer coefficient multiplied by the water vapor pressure difference between skind and the environment, and by the exchange area."^^qudt:LatexString ; + qudt:applicableUnit unit:W-PER-M2-PA ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Evaporative Heat Transfer Coefficient\" is the areic heat transfer coefficient multiplied by the water vapor pressure difference between skind and the environment, and by the exchange area." ; + qudt:symbol "h_e" ; + rdfs:comment "Applicable units are those of quantitykind:EvaporativeHeatTransferCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Combined Non Evaporative Heat Transfer Coefficient"@en . + +quantitykind:ExchangeIntegral + a qudt:QuantityKind ; + dcterms:description "\"Exchange Integral\" is the constituent of the interaction energy between the spins of adjacent electrons in matter arising from the overlap of electron state functions."^^qudt:LatexString ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Exchange_interaction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Exchange Integral\" is the constituent of the interaction energy between the spins of adjacent electrons in matter arising from the overlap of electron state functions." ; + qudt:symbol "K" ; + rdfs:comment "Applicable units are those of quantitykind:ExchangeIntegral" ; + rdfs:isDefinedBy ; + rdfs:label "Exchange Integral"@en . + +quantitykind:ExhaustGasMeanMolecularWeight + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:isDefinedBy ; + rdfs:label "Exhaust Gas Mean Molecular Weight"@en . + +quantitykind:ExhaustGasesSpecificHeat + a qudt:QuantityKind ; + dcterms:description "Specific heat of exhaust gases at constant pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_R ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:applicableUnit unit:M2-PER-SEC2-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:plainTextDescription "Specific heat of exhaust gases at constant pressure." ; + qudt:symbol "c_p" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "Exhaust Gases Specific Heat"@en ; + skos:broader quantitykind:SpecificHeatCapacity . + +quantitykind:ExhaustStreamPower + a qudt:QuantityKind ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Exhaust Stream Power"@en ; + skos:broader quantitykind:Power . + +quantitykind:ExitPlaneCrossSectionalArea + a qudt:QuantityKind ; + dcterms:description "Cross-sectional area at exit plane of nozzle"^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:plainTextDescription "Cross-sectional area at exit plane of nozzle" ; + qudt:symbol "A_{e}" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Exit Plane Cross-sectional Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:ExitPlanePressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:symbol "p_{e}" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Exit Plane Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:ExitPlaneTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:symbol "T_e" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Exit Plane Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:ExpansionRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:M-PER-DEG_C-M ; + qudt:applicableUnit unit:MilliM-PER-DEG_C-M ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:applicableUnit unit:PPM-PER-K ; + qudt:applicableUnit unit:PPTM-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ExpansionRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Expansion Ratio"@en . + +quantitykind:Exposure + a qudt:QuantityKind ; + dcterms:description "\"Exposure\" reflects the extent of ionization events taking place when air is irradiated by ionizing photons (gamma radiation and/or x rays). In photography, exposure is the amount of light allowed to fall on each area unit of a photographic medium (photographic film or image sensor) during the process of taking a photograph. Exposure is measured in lux seconds, and can be computed from exposure value (EV) and scene luminance in a specified region."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-KiloGM ; + qudt:applicableUnit unit:A-M2-PER-J-SEC ; + qudt:applicableUnit unit:C-PER-KiloGM ; + qudt:applicableUnit unit:HZ-PER-T ; + qudt:applicableUnit unit:KiloR ; + qudt:applicableUnit unit:MegaHZ-PER-T ; + qudt:applicableUnit unit:MilliC-PER-KiloGM ; + qudt:applicableUnit unit:MilliR ; + qudt:applicableUnit unit:PER-T-SEC ; + qudt:applicableUnit unit:R ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Exposure"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Exposure_%28photography%29"^^xsd:anyURI ; + qudt:informativeReference "http://hps.org/publicinformation/ate/faqs/gammaandexposure.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "For X-or gamma radiation, $X = \\frac{dQ}{dm}$, where $dQ$ is the absolute value of the mean total electric charge of the ions of the same sign produced in dry air when all the electrons and positrons liberated or created by photons in an element of air are completely stopped in air, and $dm$ is the mass of that element."^^qudt:LatexString ; + qudt:plainTextDescription "\"Exposure\" reflects the extent of ionization events taking place when air is irradiated by ionizing photons (gamma radiation and/or x rays). In photography, exposure is the amount of light allowed to fall on each area unit of a photographic medium (photographic film or image sensor) during the process of taking a photograph. Exposure is measured in lux seconds, and can be computed from exposure value (EV) and scene luminance in a specified region." ; + qudt:siExactMatch si-quantity:XPOS ; + qudt:symbol "X" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerMass" ; + rdfs:isDefinedBy ; + rdfs:label "Exposure"@en ; + skos:broader quantitykind:ElectricChargePerMass . + +quantitykind:ExposureOfIonizingRadiation + a qudt:QuantityKind ; + dcterms:description "measure of an electromagnetic radiation field to which a material is exposed in terms of ionization, which the radiation produces as reference material air, expressed as ratio of ∂Q and ∂m, where ∂Q is the absolute value of the total charge of the ions of one sign produced in the air of mass ∂m when all of the electrons (and positrons) liberated by photons in this mass element are completely stopped"@en ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:plainTextDescription "Maß für die Wirkung eines elektromagnetischen Feldes auf Materie in Form der Ionisation, die die Strahlung im Referenzmaterial Luft erzeugt, ausgedrückt als Quotient aus ∂Q und ∂m, wobei ∂Q der Absolutwert der gesamten elektrischen Ladung der Ionen eines Vorzeichens ist, die in Luft der Masse ∂m gebildet wird, wenn in diesem Massenelement alle Elektronen (und Positronen), die durch die Photonen freigesetzt werden, komplett gestoppt werden"@de ; + qudt:symbol "0173-1#Z4-BAJ326#002" ; + rdfs:isDefinedBy ; + rdfs:label "exposure of ionizing radiation"@en-US . + +quantitykind:ExposureRate + a qudt:QuantityKind ; + dcterms:description "\"Exposure Rate\" expresses the rate of charge production per unit mass of air and is commonly expressed in roentgens per hour (R/h) or milliroentgens per hour (mR/h)."^^qudt:LatexString ; + qudt:applicableUnit unit:C-PER-KiloGM-SEC ; + qudt:applicableUnit unit:R-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD050" ; + qudt:informativeReference "http://hps.org/publicinformation/ate/faqs/gammaandexposure.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD050"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\dot{X} = \\frac{dX}{dt}$, where $X$ is the increment of exposure during time interval with duration $t$."^^qudt:LatexString ; + qudt:latexSymbol "$\\dot{X}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Exposure Rate\" expresses the rate of charge production per unit mass of air and is commonly expressed in roentgens per hour (R/h) or milliroentgens per hour (mR/h)." ; + rdfs:comment "Applicable units are those of quantitykind:ExposureRate" ; + rdfs:isDefinedBy ; + rdfs:label "Exposure Rate"@en . + +quantitykind:ExposureRateOfIonizingRadiation + a qudt:QuantityKind ; + dcterms:description "ratio between the exposure of ionizing radiation dJ in a time interval and the duration dt of this interval"@en ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:plainTextDescription "Quotient Ionendosis dJ in einem Zeitintervall durch Dauer dt dieses Zeitintervalls"@de ; + qudt:symbol "0173-1#Z4-BAJ327#002" ; + rdfs:isDefinedBy ; + rdfs:label "exposure rate of ionizing radiation"@en-US . + +quantitykind:ExtentOfReaction + a qudt:QuantityKind ; + dcterms:description "In physical chemistry, the \"Extent of Reaction\" is a quantity that measures the extent in which the reaction proceeds."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL ; + qudt:applicableUnit unit:FemtoMOL ; + qudt:applicableUnit unit:MOL ; + qudt:applicableUnit unit:NanoMOL ; + qudt:applicableUnit unit:PicoMOL ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Extent_of_reaction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$dn_B = \\nu_B d\\xi$, where $n_B$ is the amount of substance $B$ and $\\nu_B$ is the stoichiometric number of substance $B$."^^qudt:LatexString ; + qudt:latexSymbol "$\\xi$"^^qudt:LatexString ; + qudt:plainTextDescription "In physical chemistry, the \"Extent of Reaction\" is a quantity that measures the extent in which the reaction proceeds." ; + rdfs:comment "Applicable units are those of quantitykind:ExtentOfReaction" ; + rdfs:isDefinedBy ; + rdfs:label "Extent of Reaction"@en . + +quantitykind:FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS + a qudt:QuantityKind ; + dcterms:description "A quantity of propellant, at a nominal mixture ratio, along with fuel bias that is set aside from total propellant loaded to cover for statistical variations of flight hardware characteristics and environment conditions on the day of launch. The launch vehicle is designed to accommodate the maximum FPR loading."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "A quantity of propellant, at a nominal mixture ratio, along with fuel bias that is set aside from total propellant loaded to cover for statistical variations of flight hardware characteristics and environment conditions on the day of launch. The launch vehicle is designed to accommodate the maximum FPR loading." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Flight Performance Reserve Propellant Mass"@en ; + skos:altLabel "FPR" ; + skos:broader quantitykind:Mass . + +quantitykind:FUEL-BIAS + a qudt:QuantityKind ; + dcterms:description "An additional quantity of fuel to ensure depletion of high-weight oxidizer before fuel for systems with high-oxidizer mixing ratios (e.g., 6:1). This practice allows for more efficient propellant utilization. Denoted as a percentage."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "An additional quantity of fuel to ensure depletion of high-weight oxidizer before fuel for systems with high-oxidizer mixing ratios (e.g., 6:1). This practice allows for more efficient propellant utilization. Denoted as a percentage." ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Fuel Bias"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:FahrenheitTemperature + a qudt:QuantityKind ; + dcterms:description "quantity whose zero point is defined by the temperature of a mixture of ice, water and ammonium chloride (-17.8 °C) and its fixed points on the Fahrenheit scale are 32 °F (melting point of ice) and 212 °F (boiling point of water)"@en ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD263" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD263"^^xsd:anyURI ; + qudt:plainTextDescription "Größe, deren Nullpunkt durch die Mischungstemperatur von Eis, Wasser und Salmiak (Ammoniumchlorid) definiert ist (-17,8 °C) und deren Fixpunkte auf der Fahrenheit-Skala 32 °F (Schmelztemperatur von Eis) und 212 °F (Siedetemperatur des Wassers) sind"@de ; + qudt:symbol "0173-1#Z4-BAJ278#002" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Fahrenheit temperature" ; + rdfs:label "Fahrenheit temperature"@en-US ; + skos:broader quantitykind:Temperature . + +quantitykind:FailureRate + a qudt:QuantityKind ; + dcterms:description "limiting value - if it exists - of the ratio between the conditional probability that the fault time t of a resource will fall within a defined interval (t, t + Δt), and the duration of this interval if Δt approaches zero and the unit is in an operational state at the beginning of the interval"@en ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD051" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD051"^^xsd:anyURI ; + qudt:plainTextDescription "Grenzwert - falls er existiert - des Quotienten aus der bedingten Wahrscheinlichkeit, dass der Ausfallzeitpunkt t eines Betriebsmittels in ein gegebenes Zeitintervall (t, t + Δt) fällt, und der Dauer dieses Zeitintervalls, wenn Δt gegen null geht und das Betriebsmittel sich zu Beginn des Zeitintervalls im betriebsfähigen Zustand befindet"@de ; + qudt:symbol "0173-1#Z4-BAJ466#003" ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "failure rate" ; + rdfs:label "failure rate"@en-US ; + skos:broader quantitykind:Incidence . + +quantitykind:FastFissionFactor + a qudt:QuantityKind ; + dcterms:description "\"Fast Fission Factor\" in an infinite medium, is the ratio of the mean number of neutrons produced by fission due to neutrons of all energies to the mean number of neutrons produced by fissions due to thermal neutrons only."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Fast Fission Factor\" in an infinite medium, is the ratio of the mean number of neutrons produced by fission due to neutrons of all energies to the mean number of neutrons produced by fissions due to thermal neutrons only." ; + rdfs:comment "Applicable units are those of quantitykind:FastFissionFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Fast Fission Factor"@en . + +quantitykind:FermiAngularWavenumber + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG-PER-M ; + qudt:applicableUnit unit:RAD-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heavy_fermion"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:symbol "k_F" ; + rdfs:comment "Applicable units are those of quantitykind:FermiAngularWavenumber" ; + rdfs:isDefinedBy ; + rdfs:label "Fermi Angular Wavenumber"@en ; + skos:broader quantitykind:InverseLength . + +quantitykind:FermiEnergy + a qudt:QuantityKind ; + dcterms:description "\"Fermi Energy\" in a metal is the highest occupied energy level at zero thermodynamic temperature."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Fermi Energy\" in a metal is the highest occupied energy level at zero thermodynamic temperature." ; + qudt:symbol "E_F" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Fermi Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:FermiTemperature + a qudt:QuantityKind ; + dcterms:description "\"Fermi Temperature\" is the temperature associated with the Fermi energy."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$T_F = \\frac{E_F}{k}$, where $E_F$ is the Fermi energy and $k$ is the Boltzmann constant."^^qudt:LatexString ; + qudt:plainTextDescription "\"Fermi Temperature\" is the temperature associated with the Fermi energy." ; + qudt:symbol "T_F" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Fermi Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:FinalOrCurrentVehicleMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Final Or Current Vehicle Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:FirstMomentOfArea + a qudt:QuantityKind ; + dcterms:description "The first moment of area is the summation of area times distance to an axis. It is a measure of the distribution of the area of a shape in relationship to an axis."^^qudt:LatexString ; + qudt:applicableUnit unit:AC-FT ; + qudt:applicableUnit unit:AC-FT_US ; + qudt:applicableUnit unit:ANGSTROM3 ; + qudt:applicableUnit unit:BBL ; + qudt:applicableUnit unit:BBL_UK_PET ; + qudt:applicableUnit unit:BU_US_DRY ; + qudt:applicableUnit unit:CentiM3 ; + qudt:applicableUnit unit:DecaL ; + qudt:applicableUnit unit:DecaM3 ; + qudt:applicableUnit unit:DeciL ; + qudt:applicableUnit unit:DeciM3 ; + qudt:applicableUnit unit:FBM ; + qudt:applicableUnit unit:FT3 ; + qudt:applicableUnit unit:FemtoL ; + qudt:applicableUnit unit:GI_UK ; + qudt:applicableUnit unit:GI_US ; + qudt:applicableUnit unit:GT ; + qudt:applicableUnit unit:HectoL ; + qudt:applicableUnit unit:IN3 ; + qudt:applicableUnit unit:KiloCubicFT ; + qudt:applicableUnit unit:KiloL ; + qudt:applicableUnit unit:L ; + qudt:applicableUnit unit:M3 ; + qudt:applicableUnit unit:MI3 ; + qudt:applicableUnit unit:MI_UK3 ; + qudt:applicableUnit unit:MegaL ; + qudt:applicableUnit unit:MicroL ; + qudt:applicableUnit unit:MicroM3 ; + qudt:applicableUnit unit:MilliL ; + qudt:applicableUnit unit:MilliM3 ; + qudt:applicableUnit unit:NT ; + qudt:applicableUnit unit:NanoL ; + qudt:applicableUnit unit:OZ_VOL_UK ; + qudt:applicableUnit unit:PINT ; + qudt:applicableUnit unit:PINT_UK ; + qudt:applicableUnit unit:PK_UK ; + qudt:applicableUnit unit:PicoL ; + qudt:applicableUnit unit:PlanckVolume ; + qudt:applicableUnit unit:QT_UK ; + qudt:applicableUnit unit:QT_US ; + qudt:applicableUnit unit:STANDARD ; + qudt:applicableUnit unit:STR ; + qudt:applicableUnit unit:TBSP ; + qudt:applicableUnit unit:TON_Register ; + qudt:applicableUnit unit:TON_SHIPPING_UK ; + qudt:applicableUnit unit:TON_SHIPPING_US ; + qudt:applicableUnit unit:TSP ; + qudt:applicableUnit unit:YD3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:plainTextDescription "The first moment of area is the summation of area times distance to an axis. It is a measure of the distribution of the area of a shape in relationship to an axis." ; + rdfs:comment "Applicable units are those of quantitykind:Volume" ; + rdfs:isDefinedBy ; + rdfs:label "First Moment of Area"@en ; + skos:broader quantitykind:Volume . + +quantitykind:FirstStageMassRatio + a qudt:QuantityKind ; + dcterms:description "Mass ratio for the first stage of a multistage launcher."^^qudt:LatexString ; + qudt:applicableUnit unit:FemtoGM-PER-KiloGM ; + qudt:applicableUnit unit:GM-PER-GM ; + qudt:applicableUnit unit:GM-PER-HectoGM ; + qudt:applicableUnit unit:GM-PER-KiloGM ; + qudt:applicableUnit unit:KiloGM-PER-KiloGM ; + qudt:applicableUnit unit:LB-PER-LB ; + qudt:applicableUnit unit:MicroGM-PER-GM ; + qudt:applicableUnit unit:MicroGM-PER-KiloGM ; + qudt:applicableUnit unit:MicroGM-PER-MilliGM ; + qudt:applicableUnit unit:MilliGM-PER-GM ; + qudt:applicableUnit unit:MilliGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-MilliGM ; + qudt:applicableUnit unit:PicoGM-PER-GM ; + qudt:applicableUnit unit:PicoGM-PER-KiloGM ; + qudt:applicableUnit unit:PicoGM-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Mass ratio for the first stage of a multistage launcher." ; + qudt:symbol "R_1" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatio" ; + rdfs:isDefinedBy ; + rdfs:label "First Stage Mass Ratio"@en ; + skos:broader quantitykind:MassRatio . + +quantitykind:FishBiotransformationHalfLife + a qudt:QuantityKind ; + dcterms:description "A time that quantifies how long its takes to transform 50% of a substance's total concentration from any concentration point in time in fish via whole body metabolic reactions."^^qudt:LatexString ; + qudt:applicableUnit unit:DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:plainTextDescription "A time that quantifies how long its takes to transform 50% of a substance's total concentration from any concentration point in time in fish via whole body metabolic reactions." ; + rdfs:comment "Applicable units are those of quantitykind:FishBiotransformationHalfLife" ; + rdfs:isDefinedBy ; + rdfs:label "Fish Biotransformation Half Life"@en ; + skos:broader quantitykind:Time . + +quantitykind:FissionCoreRadiusToHeightRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:symbol "R/H" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Fission Core Radius To Height Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:FissionFuelUtilizationFactor + a qudt:QuantityKind ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Fission Fuel Utilization Factor"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:FissionMultiplicationFactor + a qudt:QuantityKind ; + dcterms:description "The number of fission neutrons produced per absorption in the fuel."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "The number of fission neutrons produced per absorption in the fuel." ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Fission Multiplication Factor"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:FlashPoint + a qudt:QuantityKind ; + dcterms:description "A temperature that is the lowest one at which the vapors of a volatile material will ignite if exposed to an ignition source. It is frequently used to characterize fire hazards and distinguish different flammable fuels."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:plainTextDescription "A temperature that is the lowest one at which the vapors of a volatile material will ignite if exposed to an ignition source. It is frequently used to characterize fire hazards and distinguish different flammable fuels." ; + rdfs:comment "Applicable units are those of quantitykind:FlashPoint" ; + rdfs:isDefinedBy ; + rdfs:label "Flash Point Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:FlightPathAngle + a qudt:QuantityKind ; + dcterms:description "Flight path angle is defined in two different ways. To the aerodynamicist, it is the angle between the flight path vector (where the airplane is going) and the local atmosphere. To the flight crew, it is normally known as the angle between the flight path vector and the horizon, also known as the climb (or descent) angle."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "Flight path angle is defined in two different ways. To the aerodynamicist, it is the angle between the flight path vector (where the airplane is going) and the local atmosphere. To the flight crew, it is normally known as the angle between the flight path vector and the horizon, also known as the climb (or descent) angle." ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Flight Path Angle"@en ; + skos:broader quantitykind:Angle . + +quantitykind:FloatingPointCalculationCapability + a qudt:QuantityKind ; + qudt:applicableUnit unit:GigaFLOPS ; + qudt:applicableUnit unit:MegaFLOPS ; + qudt:applicableUnit unit:PetaFLOPS ; + qudt:applicableUnit unit:TeraFLOPS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD363" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD363"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:FloatingPointCalculationCapability" ; + rdfs:isDefinedBy ; + rdfs:label "floating point calculation capability" . + +quantitykind:Fluidity + a qudt:QuantityKind ; + dcterms:description "fluidity of a material as complement of the dynamic viscosity"@en ; + qudt:applicableUnit unit:PERCENT-FT2-PER-LB_F-SEC ; + qudt:applicableUnit unit:PERCENT-IN2-PER-LB_F-SEC ; + qudt:applicableUnit unit:RHE ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD264" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD264"^^xsd:anyURI ; + qudt:plainTextDescription "Fließvermögen eines Stoffes als Kehrwert der dynamischen Viskosität"@de ; + qudt:symbol "0173-1#Z4-BAJ447#001" ; + rdfs:comment "Applicable units are those of quantitykind:Fluidity" ; + rdfs:isDefinedBy ; + rdfs:label "fluidity" ; + rdfs:label "fluidity"@en-US . + +quantitykind:Flux + a qudt:QuantityKind ; + dcterms:description "Flux describes any effect that appears to pass or travel (whether it actually moves or not) through a surface or substance. [Wikipedia]"^^qudt:LatexString ; + qudt:applicableUnit unit:MicroM-PER-L-DAY ; + qudt:applicableUnit unit:NUM-PER-HA-YR ; + qudt:applicableUnit unit:NUM-PER-M2-DAY ; + qudt:applicableUnit unit:PER-M2-SEC ; + qudt:applicableUnit unit:PER-SEC-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Flux"^^xsd:anyURI ; + qudt:plainTextDescription "Flux describes any effect that appears to pass or travel (whether it actually moves or not) through a surface or substance. [Wikipedia]" ; + rdfs:comment "Applicable units are those of quantitykind:Flux" ; + rdfs:isDefinedBy ; + rdfs:label "Flux"@en . + +quantitykind:Force + a qudt:QuantityKind ; + dcterms:description "\"Force\" is an influence that causes mass to accelerate. It may be experienced as a lift, a push, or a pull. Force is defined by Newton's Second Law as $F = m \\times a $, where $F$ is force, $m$ is mass and $a$ is acceleration. Net force is mathematically equal to the time rate of change of the momentum of the body on which it acts. Since momentum is a vector quantity (has both a magnitude and direction), force also is a vector quantity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Force"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD054" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Force"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD054"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$F = \\frac{dp}{dt}$, where $F$ is the resultant force acting on a body, $p$ is momentum of a body, and $t$ is time."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:FORC ; + qudt:symbol "F" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Daya"@ms ; + rdfs:label "Kraft"@de ; + rdfs:label "Síla"@cs ; + rdfs:label "erő"@hu ; + rdfs:label "force"@en ; + rdfs:label "force"@fr ; + rdfs:label "forza"@it ; + rdfs:label "força"@pt ; + rdfs:label "forță"@ro ; + rdfs:label "fuerza"@es ; + rdfs:label "kuvvet"@tr ; + rdfs:label "sila"@sl ; + rdfs:label "siła"@pl ; + rdfs:label "vis"@la ; + rdfs:label "Δύναμη"@el ; + rdfs:label "Сила"@ru ; + rdfs:label "сила"@bg ; + rdfs:label "כוח"@he ; + rdfs:label "نیرو"@fa ; + rdfs:label "وحدة القوة في نظام متر كيلوغرام ثانية"@ar ; + rdfs:label "बल"@hi ; + rdfs:label "力"@ja ; + rdfs:label "力"@zh ; + skos:altLabel "भार"@hi . + +quantitykind:ForceConstant + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD055" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD055"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "force constant" . + +quantitykind:ForceMagnitude + a qudt:QuantityKind ; + dcterms:description "The 'magnitude' of a force is its 'size' or 'strength', regardless of the direction in which it acts."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://wiki.answers.com/Q/What_is_magnitude_of_force"^^xsd:anyURI ; + qudt:plainTextDescription "The 'magnitude' of a force is its 'size' or 'strength', regardless of the direction in which it acts." ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Force Magnitude"@en ; + skos:broader quantitykind:Force . + +quantitykind:ForcePerAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:N-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Force per Angle"@en . + +quantitykind:ForcePerArea + a qudt:QuantityKind ; + dcterms:description "The force applied to a unit area of surface; measured in pascals (SI unit) or in dynes (cgs unit)"^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pressure"^^xsd:anyURI ; + qudt:informativeReference "http://www.thefreedictionary.com/force+per+unit+area"^^xsd:anyURI ; + qudt:plainTextDescription "The force applied to a unit area of surface; measured in pascals (SI unit) or in dynes (cgs unit)" ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Force Per Area"@en . + +quantitykind:ForcePerAreaTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:DeciBAR-PER-YR ; + qudt:applicableUnit unit:HectoPA-PER-HR ; + qudt:applicableUnit unit:LB_F-PER-IN2-SEC ; + qudt:applicableUnit unit:MilliW-PER-M2-NanoM ; + qudt:applicableUnit unit:PA-PER-HR ; + qudt:applicableUnit unit:PA-PER-MIN ; + qudt:applicableUnit unit:PA-PER-SEC ; + qudt:applicableUnit unit:W-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerAreaTime" ; + rdfs:isDefinedBy ; + rdfs:label "Force Per Area Time"@en . + +quantitykind:ForcePerElectricCharge + a qudt:QuantityKind ; + dcterms:description "The electric field depicts the force exerted on other electrically charged objects by the electrically charged particle the field is surrounding. The electric field is a vector field with SI units of newtons per coulomb ($N C^{-1}$) or, equivalently, volts per metre ($V m^{-1}$ ). The SI base units of the electric field are $kg m s^{-3} A^{-1}$. The strength or magnitude of the field at a given point is defined as the force that would be exerted on a positive test charge of 1 coulomb placed at that point"^^qudt:LatexString ; + qudt:applicableUnit unit:N-PER-C ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_field"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Force per Electric Charge"@en . + +quantitykind:ForcePerLength + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:DYN-PER-CentiM ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-M-PER-CentiM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-FT ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloN-PER-M ; + qudt:applicableUnit unit:LB_F-PER-FT ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:LB_F-PER-YD ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-PER-M ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:N-PER-CentiM ; + qudt:applicableUnit unit:N-PER-M ; + qudt:applicableUnit unit:N-PER-MilliM ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:PDL-PER-IN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Force per Length"@en . + +quantitykind:Frequency + a qudt:QuantityKind ; + dcterms:description "\"Frequency\" is the number of occurrences of a repeating event per unit time. The repetition of the events may be periodic (that is. the length of time between event repetitions is fixed) or aperiodic (i.e. the length of time between event repetitions varies). Therefore, we distinguish between periodic and aperiodic frequencies. In the SI system, periodic frequency is measured in hertz (Hz) or multiples of hertz, while aperiodic frequency is measured in becquerel (Bq). In spectroscopy, $\\nu$ is mostly used. Light passing through different media keeps its frequency, but not its wavelength or wavenumber."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Frequency"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD056" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD056"^^xsd:anyURI ; + qudt:latexDefinition """$f = 1/T$, where $T$ is a period. + +Alternatively, + +$\\nu = 1/T$"""^^qudt:LatexString ; + qudt:latexSymbol "$\\nu, f$"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:FREQ ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Frekuensi"@ms ; + rdfs:label "Frekvence"@cs ; + rdfs:label "Frequenz"@de ; + rdfs:label "częstotliwość"@pl ; + rdfs:label "frecuencia"@es ; + rdfs:label "frecvență"@ro ; + rdfs:label "frekans"@tr ; + rdfs:label "frekvenca"@sl ; + rdfs:label "frekvencia"@hu ; + rdfs:label "frequency"@en ; + rdfs:label "frequentia"@la ; + rdfs:label "frequenza"@it ; + rdfs:label "frequência"@pt ; + rdfs:label "fréquence"@fr ; + rdfs:label "Συχνότητα"@el ; + rdfs:label "Частота"@ru ; + rdfs:label "Честота"@bg ; + rdfs:label "תדירות"@he ; + rdfs:label "التردد لدى نظام الوحدات الدولي"@ar ; + rdfs:label "بسامد"@fa ; + rdfs:label "आवृत्ति"@hi ; + rdfs:label "周波数"@ja ; + rdfs:label "频率"@zh ; + skos:broader quantitykind:InverseTime . + +quantitykind:Friction + a qudt:QuantityKind ; + dcterms:description "\"Friction\" is the force of two surfaces In contact, or the force of a medium acting on a moving object (that is air on an aircraft). When contacting surfaces move relative to each other, the friction between the two objects converts kinetic energy into thermal energy."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:informativeReference "http://wiki.answers.com/Q/What_is_the_symbol_of_friction"^^xsd:anyURI ; + qudt:plainTextDescription "\"Friction\" is the force of two surfaces In contact, or the force of a medium acting on a moving object (that is air on an aircraft). When contacting surfaces move relative to each other, the friction between the two objects converts kinetic energy into thermal energy." ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Friction"@en ; + skos:broader quantitykind:Force . + +quantitykind:FrictionCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Friction Coefficient\" is the ratio of the force of friction between two bodies and the force pressing them together"^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:informativeReference "http://wiki.answers.com/Q/What_is_the_symbol_of_friction"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Friction Coefficient\" is the ratio of the force of friction between two bodies and the force pressing them together" ; + qudt:qkdvDenominator qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:FrictionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Friction Coefficient"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Fugacity + a qudt:QuantityKind ; + dcterms:description "\"Fugacity\" of a real gas is an effective pressure which replaces the true mechanical pressure in accurate chemical equilibrium calculations. It is equal to the pressure of an ideal gas which has the same chemical potential as the real gas."^^qudt:LatexString ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PicoPA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fugacity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$\\tilde{p}_B$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Fugacity\" of a real gas is an effective pressure which replaces the true mechanical pressure in accurate chemical equilibrium calculations. It is equal to the pressure of an ideal gas which has the same chemical potential as the real gas." ; + rdfs:comment "Applicable units are those of quantitykind:Fugacity" ; + rdfs:isDefinedBy ; + rdfs:label "Fugasiti"@ms ; + rdfs:label "Fugazität"@de ; + rdfs:label "Lotność"@pl ; + rdfs:label "fugacidad"@es ; + rdfs:label "fugacidade"@pt ; + rdfs:label "fugacita"@cs ; + rdfs:label "fugacitate"@ro ; + rdfs:label "fugacity"@en ; + rdfs:label "fugacità"@it ; + rdfs:label "fugacité"@fr ; + rdfs:label "fügasite"@tr ; + rdfs:label "انفلاتية"@ar ; + rdfs:label "بی‌دوامی"@fa ; + rdfs:label "フガシティー"@ja ; + rdfs:label "逸度"@zh . + +quantitykind:FundamentalLatticeVector + a qudt:QuantityKind ; + dcterms:description "\"Fundamental Lattice vector\" are fundamental translation vectors for the crystal lattice."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Fundamental Lattice vector\" are fundamental translation vectors for the crystal lattice." ; + qudt:symbol "a_1, a_2, a_3" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Fundamental Lattice vector"@en ; + skos:broader quantitykind:LatticeVector . + +quantitykind:FundamentalReciprocalLatticeVector + a qudt:QuantityKind ; + dcterms:description "\"Fundamental Reciprocal Lattice Vector\" are fundamental, or primary, translation vectors the reciprocal lattice."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reciprocal_lattice"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Fundamental Reciprocal Lattice Vector\" are fundamental, or primary, translation vectors the reciprocal lattice." ; + qudt:symbol "b_1, b_2, b_3" ; + rdfs:comment "Applicable units are those of quantitykind:AngularReciprocalLatticeVector" ; + rdfs:isDefinedBy ; + rdfs:label "Fundamental Reciprocal Lattice Vector"@en ; + skos:broader quantitykind:AngularReciprocalLatticeVector . + +quantitykind:GFactorOfNucleus + a qudt:QuantityKind ; + dcterms:description "The \"g-Factor of Nucleus\" is associated with the spin and magnetic moments of protons, neutrons, and many nuclei."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Landé_g-factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$g = \\frac{\\mu}{I\\mu_B}$, where $\\mu$ is the magnitude of magnetic dipole moment, $I$ is the nuclear angular momentum quantum number, and $\\mu_B$ is the Bohr magneton."^^qudt:LatexString ; + qudt:plainTextDescription "The \"g-Factor of Nucleus\" is associated with the spin and magnetic moments of protons, neutrons, and many nuclei." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:GFactorOfNucleus" ; + rdfs:isDefinedBy ; + rdfs:label "g-Factor of Nucleus"@en . + +quantitykind:GROSS-LIFT-OFF-WEIGHT + a qudt:QuantityKind ; + dcterms:description "The sum of a rocket's inert mass and usable fluids and gases at sea level."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maximum_Takeoff_Weight"^^xsd:anyURI ; + qudt:plainTextDescription "The sum of a rocket's inert mass and usable fluids and gases at sea level." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Gross Lift-Off Weight"@en ; + skos:broader quantitykind:Mass . + +quantitykind:Gain + a qudt:QuantityKind ; + dcterms:description "A general term used to denote an increase in signal power or signal strength in transmission from one point to another. Gain is usually expressed in decibels and is widely used to denote transducer gain. An increase or amplification. In radar there are two general usages of the term: (a) antenna gain, or gain factor, is the ratio of the power transmitted along the beam axis to that of an isotropic radiator transmitting the same total power; (b) receiver gain, or video gain, is the amplification given a signal by the receiver."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gain"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "A general term used to denote an increase in signal power or signal strength in transmission from one point to another. Gain is usually expressed in decibels and is widely used to denote transducer gain. An increase or amplification. In radar there are two general usages of the term: (a) antenna gain, or gain factor, is the ratio of the power transmitted along the beam axis to that of an isotropic radiator transmitting the same total power; (b) receiver gain, or video gain, is the amplification given a signal by the receiver." ; + qudt:qkdvDenominator qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Gain"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:GapEnergy + a qudt:QuantityKind ; + dcterms:description "\"Gap Energy\" is the difference in energy between the lowest level of conduction band and the highest level of valence band. It is an energy range in a solid where no electron states can exist."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Band_gap"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Gap Energy\" is the difference in energy between the lowest level of conduction band and the highest level of valence band. It is an energy range in a solid where no electron states can exist." ; + qudt:symbol "E_g" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Gap Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:GasLeakRate + a qudt:QuantityKind ; + dcterms:description "ratio of the pV value of a gas (product of pressure and volume of a given quantity of gas at the respective temperature) flowing through a pipe cross-section during a time interval and the related interval"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD057" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD057"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient aus dem pV-Wert eines Gases (Produkt aus Druck und Volumen einer bestimmten Menge eines Gases bei der jeweils herrschenden Temperatur), das während einer Zeitspanne durch einen Leitungsquerschnitt strömt, und der zugehörigen Zeitspanne"@de ; + qudt:symbol "0173-1#Z4-BAJ324#002" ; + rdfs:isDefinedBy ; + rdfs:label "gas leak rate" ; + rdfs:label "gas leak rate"@en-US . + +quantitykind:GaugePressure + a qudt:QuantityKind ; + dcterms:description """Gauge Pressure is the pressure of a system relative to the pressure of the surrounding atmosphere. +It is the difference between the absolute pressure and the atmospheric pressure. Gauge pressure is positive for pressures +above atmospheric pressure and negative for pressures below it. A Quantity in QUDT having a QuantityKind of GaugePressure +would typically also assert the value of qudt:isDeltaQuantity to be true, indicating that the value is a difference between +two pressures."""^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Gauge Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:GeneFamilyAbundance + a qudt:QuantityKind ; + dcterms:description "The abundance of each gene family in the community. Gene families are groups of evolutionarily-related protein-coding sequences that often perform similar functions. Gene family abundance is reported in RPK (reads per kilobase) units to normalize for gene length."^^qudt:LatexString ; + qudt:applicableUnit unit:RPK ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://learn.gencore.bio.nyu.edu/"^^xsd:anyURI ; + qudt:plainTextDescription "The abundance of each gene family in the community. Gene families are groups of evolutionarily-related protein-coding sequences that often perform similar functions. Gene family abundance is reported in RPK (reads per kilobase) units to normalize for gene length." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:GeneFamilyAbundance" ; + rdfs:isDefinedBy ; + rdfs:label "Gene Family Abundance"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:GeneralizedCoordinate + a qudt:QuantityKind ; + dcterms:description "Generalized Coordinates refers to the parameters that describe the configuration of the system relative to some reference configuration. These parameters must uniquely define the configuration of the system relative to the reference configuration."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_coordinates"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$q_i$, where $q_i$ is one of the coordinates that is used to describe the position of the system under consideration, and $N$ is the lowest number of coordinates necessary to fully define the position of the system."^^qudt:LatexString ; + qudt:plainTextDescription "Generalized Coordinates refers to the parameters that describe the configuration of the system relative to some reference configuration. These parameters must uniquely define the configuration of the system relative to the reference configuration." ; + qudt:symbol "q_i" ; + rdfs:comment "Applicable units are those of quantitykind:GeneralizedCoordinate" ; + rdfs:isDefinedBy ; + rdfs:label "Generalized Coordinate"@en . + +quantitykind:GeneralizedForce + a qudt:QuantityKind ; + dcterms:description "Generalized Forces find use in Lagrangian mechanics, where they play a role conjugate to generalized coordinates."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_forces"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\delta A = \\sum Q_i\\delta q_i$, where $A$ is work and $q_i$ is a generalized coordinate."^^qudt:LatexString ; + qudt:plainTextDescription "Generalized Forces find use in Lagrangian mechanics, where they play a role conjugate to generalized coordinates." ; + qudt:symbol "Q_i" ; + rdfs:comment "Applicable units are those of quantitykind:GeneralizedForce" ; + rdfs:isDefinedBy ; + rdfs:label "Generalized Force"@en . + +quantitykind:GeneralizedMomentum + a qudt:QuantityKind ; + dcterms:description "Generalized Momentum, also known as the canonical or conjugate momentum, extends the concepts of both linear momentum and angular momentum. To distinguish it from generalized momentum, the product of mass and velocity is also referred to as mechanical, kinetic or kinematic momentum."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Momentum"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$p_i = \\frac{\\partial L}{\\partial \\dot{q_i}}$, where $L$ is the Langrange function and $\\dot{q_i}$ is a generalized velocity."^^qudt:LatexString ; + qudt:plainTextDescription "Generalized Momentum, also known as the canonical or conjugate momentum, extends the concepts of both linear momentum and angular momentum. To distinguish it from generalized momentum, the product of mass and velocity is also referred to as mechanical, kinetic or kinematic momentum." ; + qudt:symbol "p_i" ; + rdfs:comment "Applicable units are those of quantitykind:GeneralizedMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Generalized Force"@en . + +quantitykind:GeneralizedVelocity + a qudt:QuantityKind ; + dcterms:description "Generalized Velocities are the time derivatives of the generalized coordinates of the system."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_coordinates"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\dot{q_i} = \\frac{dq_i}{dt}$, where $q_i$ is the generalized coordinate and $t$ is time."^^qudt:LatexString ; + qudt:latexSymbol "$\\dot{q_i}$"^^qudt:LatexString ; + qudt:plainTextDescription "Generalized Velocities are the time derivatives of the generalized coordinates of the system." ; + rdfs:comment "Applicable units are those of quantitykind:GeneralizedVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Generalized Velocity"@en . + +quantitykind:GibbsEnergy + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Internal Energy}$ is one of the potentials are used to measure energy changes in systems as they evolve from an initial state to a final state. + The potential used depends on the constraints of the system, such as constant temperature or pressure. + $\\textit{Internal Energy}$ is the internal energy of the system, $\\textit{Enthalpy}$ is the internal energy of the system plus the energy related to pressure-volume work, + and Helmholtz and Gibbs free energy are the energies available in a system to do useful work when the temperature and volume or the pressure and temperature are fixed, respectively. + The name $\\textit{Gibbs Free Energy}$ is also used. + """^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Thermodynamics"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$G = H - T \\cdot S$, where $H$ is enthalpy, $T$ is thermodynamic temperature and $S$ is entropy."^^qudt:LatexString ; + qudt:plainTextDescription "Gibbs Energy is one of the potentials used to measure energy changes in systems as they evolve from an initial state to a final state. The potential used depends on the constraints of the system, such as constant temperature or pressure. $\\textit{Internal Energy} is the internal energy of the system, Enthalpy is the internal energy of the system plus the energy related to pressure-volume work, and Helmholtz and Gibbs free energy are the energies available in a system to do useful work when the temperature and volume or the pressure and temperature are fixed, respectively. The name Gibbs Free Energy is also used." ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energía de Gibbs"@es ; + rdfs:label "Entalpie liberă"@ro ; + rdfs:label "Gibbs Serbest Enerjisi"@tr ; + rdfs:label "Gibbs energy"@en ; + rdfs:label "Gibbsova volná energie"@cs ; + rdfs:label "Prosta entalpija"@sl ; + rdfs:label "Tenaga Gibbs"@ms ; + rdfs:label "energia libera di Gibbs"@it ; + rdfs:label "energia livre de Gibbs"@pt ; + rdfs:label "entalpia swobodna"@pl ; + rdfs:label "enthalpie libre"@fr ; + rdfs:label "freie Enthalpie"@de ; + rdfs:label "энергия Гиббса"@ru ; + rdfs:label "انرژی آزاد گیبس"@fa ; + rdfs:label "طاقة غيبس الحرة"@ar ; + rdfs:label "ギブズエネルギー"@ja ; + rdfs:label "吉布斯自由能"@zh ; + rdfs:seeAlso quantitykind:Energy ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:HelmholtzEnergy ; + rdfs:seeAlso quantitykind:InternalEnergy ; + skos:altLabel "Gibbs function"@en ; + skos:altLabel "Gibbs-Energie"@de ; + skos:altLabel "Gibbs-Funktion"@de ; + skos:altLabel "fungsi Gibbs"@ms ; + skos:broader quantitykind:Energy . + +quantitykind:Gradient + a qudt:QuantityKind ; + qudt:applicableUnit unit:MicroM-PER-M ; + qudt:applicableUnit unit:MilliM-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD058" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD058"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Gradient" ; + rdfs:isDefinedBy ; + rdfs:label "gradient" . + +quantitykind:GrandCanonicalPartitionFunction + a qudt:QuantityKind ; + dcterms:description "An \"Grand Canonical Partition Function\" for a grand canonical ensemble, a system that can exchange both heat and particles with the environment, which has a constant temperature and a chemical potential."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Partition_function_(statistical_mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\Xi = \\sum_{N_A, N_B, ...} Z(N_A, N_B, ...) \\cdot \\lambda_A^{N_A} \\cdot \\lambda_B^{N_B} \\cdot ...$, where $Z(N_A, N_B, ...)$ is the canonical partition function for the given number of particles $A, B, ...,$, and $\\lambda_A, \\lambda_B, ...$ are the absolute activities of particles $A, B, ...$."^^qudt:LatexString ; + qudt:latexSymbol "$\\Xi$"^^qudt:LatexString ; + qudt:plainTextDescription "An \"Grand Canonical Partition Function\" for a grand canonical ensemble, a system that can exchange both heat and particles with the environment, which has a constant temperature and a chemical potential." ; + rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Grand Canonical Partition Function"@en ; + skos:broader quantitykind:CanonicalPartitionFunction . + +quantitykind:GravitationalAttraction + a qudt:QuantityKind ; + dcterms:description "The force of attraction between all masses in the universe; especially the attraction of the earth's mass for bodies near its surface; the more remote the body the less the gravity; the gravitation between two bodies is proportional to the product of their masses and inversely proportional to the square of the distance between them."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.thefreedictionary.com/gravitational+attraction"^^xsd:anyURI ; + qudt:plainTextDescription "The force of attraction between all masses in the universe; especially the attraction of the earth's mass for bodies near its surface; the more remote the body the less the gravity; the gravitation between two bodies is proportional to the product of their masses and inversely proportional to the square of the distance between them." ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Gravitational Attraction"@en ; + skos:broader quantitykind:Force . + +quantitykind:Gravity_API + a qudt:QuantityKind ; + dcterms:description """The American Petroleum Institute gravity, or API gravity, is a measure of how heavy or light a petroleum liquid is compared to water: if its API gravity is greater than 10, it is lighter and floats on water; if less than 10, it is heavier and sinks. + +API gravity is thus an inverse measure of a petroleum liquid's density relative to that of water (also known as specific gravity). It is used to compare densities of petroleum liquids. For example, if one petroleum liquid is less dense than another, it has a greater API gravity. Although API gravity is mathematically a dimensionless quantity (see the formula below), it is referred to as being in 'degrees'. API gravity is graduated in degrees on a hydrometer instrument. API gravity values of most petroleum liquids fall between 10 and 70 degrees.""" ; + qudt:applicableUnit unit:DEGREE_API ; + qudt:baseSIUnitDimensions "$qkdv:A0E0L0I0M0H0T0D1$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/API_gravity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription """The American Petroleum Institute gravity, or API gravity, is a measure of how heavy or light a petroleum liquid is compared to water: if its API gravity is greater than 10, it is lighter and floats on water; if less than 10, it is heavier and sinks. + +API gravity is thus an inverse measure of a petroleum liquid's density relative to that of water (also known as specific gravity). It is used to compare densities of petroleum liquids. For example, if one petroleum liquid is less dense than another, it has a greater API gravity. Although API gravity is mathematically a dimensionless quantity (see the formula below), it is referred to as being in 'degrees'. API gravity is graduated in degrees on a hydrometer instrument. API gravity values of most petroleum liquids fall between 10 and 70 degrees.""" ; + qudt:qkdvDenominator qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L-3I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Gravity_API" ; + rdfs:isDefinedBy ; + rdfs:label "API Gravity"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:GroupSpeedOfSound + a qudt:QuantityKind ; + dcterms:description "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. The group speed of sound describes the propagation of the disturbance."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:KiloHZ-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ; + qudt:latexDefinition "$c_g = \\frac{d\\omega}{dk}$, where $\\omega$ is the angular frequency and $k$ is angular wavenumber."^^qudt:LatexString ; + qudt:plainTextDescription "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. The group speed of sound describes the propagation of the disturbance." ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:GroupSpeedOfSound" ; + rdfs:isDefinedBy ; + rdfs:label "Group Speed of Sound"@en ; + skos:broader quantitykind:SpeedOfSound ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:GrowingDegreeDay_Cereal + a qudt:QuantityKind ; + dcterms:description "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C_GROWING_CEREAL-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:plainTextDescription "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops." ; + rdfs:comment "Applicable units are those of quantitykind:GrowingDegreeDay_Cereal" ; + rdfs:isDefinedBy ; + rdfs:label "Growing Degree Days (Cereals)"@en ; + skos:broader quantitykind:TimeTemperature . + +quantitykind:GruneisenParameter + a qudt:QuantityKind ; + dcterms:description "\"Gruneisen Parameter\" named after Eduard Grüneisen, describes the effect that changing the volume of a crystal lattice has on its vibrational properties, and, as a consequence, the effect that changing temperature has on the size or dynamics of the lattice."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Grüneisen_parameter"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$\\gamma = \\frac{\\alpha_V}{x_T c_V\\rho}$, where $\\alpha_V$ is the cubic expansion coefficient, $x_T$ is isothermal compressibility, $c_V$ is specific heat capacity at constant volume, and $\\rho$ is mass density."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Gruneisen Parameter\" named after Eduard Grüneisen, describes the effect that changing the volume of a crystal lattice has on its vibrational properties, and, as a consequence, the effect that changing temperature has on the size or dynamics of the lattice." ; + rdfs:comment "Applicable units are those of quantitykind:GruneisenParameter" ; + rdfs:isDefinedBy ; + rdfs:label "Gruneisen Parameter"@en . + +quantitykind:GustatoryThreshold + a qudt:QuantityKind ; + dcterms:description "\"Gustatory Threshold\" are thresholds for classes of taste that can be detected by the human mouth and thresholds of sensitivity to foods, drinks and other substances."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_g}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Gustatory Threshold\" are thresholds for classes of taste that can be detected by the human mouth and thresholds of sensitivity to foods, drinks and other substances." ; + rdfs:isDefinedBy ; + rdfs:label "Gustatory Threshold"@en . + +quantitykind:GyromagneticRatio + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Gyromagnetic Ratio}$, also sometimes known as the magnetogyric ratio in other disciplines, + of a particle or system is the ratio of its magnetic dipole moment to its angular momentum, + and it is often denoted by the symbol, $\\gamma$. + Its SI units are radian per second per tesla ($rad s^{-1} \\cdot T^{1}$) or, equivalently, + coulomb per kilogram ($C \\cdot kg^{-1}$). + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gyromagnetic_ratio"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gyromagnetic_ratio"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\gamma J$, where $\\mu$ is the magnetic dipole moment, and $J$ is the total angular momentum."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "Gyromagnetic Ratio"@en . + +quantitykind:Half-Life + a qudt:QuantityKind ; + dcterms:description "The \"Half-Life\" is the average duration required for the decay of one half of the atoms or nuclei."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Half-life"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Half-Life\" is the average duration required for the decay of one half of the atoms or nuclei." ; + qudt:symbol "T_{1/2}" ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Halbwertszeit"@de ; + rdfs:label "Poločas rozpadu"@cs ; + rdfs:label "Separuh hayat"@ms ; + rdfs:label "half-life"@en ; + rdfs:label "meia-vida"@pt ; + rdfs:label "semiperiodo"@es ; + rdfs:label "tempo di dimezzamento"@it ; + rdfs:label "temps de demi-vie"@fr ; + rdfs:label "yarılanma süresi"@tr ; + rdfs:label "نیمه عمر"@fa ; + rdfs:label "半衰期"@zh ; + skos:altLabel "semivita"@it ; + skos:broader quantitykind:Time . + +quantitykind:Half-ValueThickness + a qudt:QuantityKind ; + dcterms:description "The \"Half-Value Thickness\" is the thickness of the material at which the intensity of radiation entering it is reduced by one half."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Half-value_layer"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Half-Value Thickness\" is the thickness of the material at which the intensity of radiation entering it is reduced by one half." ; + qudt:symbol "d_{1/2}" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Half-Value Thickness"@en ; + skos:broader quantitykind:Length . + +quantitykind:HallCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Hall Coefficient\" is defined as the ratio of the induced electric field to the product of the current density and the applied magnetic field."^^qudt:LatexString ; + qudt:applicableUnit unit:M3-PER-C ; + qudt:applicableUnit unit:V-IN2-PER-LB_F ; + qudt:applicableUnit unit:V-PER-BAR ; + qudt:applicableUnit unit:V-PER-PA ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD060" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hall_effect"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD060"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "In an isotropic conductor, the relation between electric field strength, $E$, and electric current density, $J$ is $E = \\rho J + R_H(B X J)$, where $\\rho$ is resistivity, and $B$ is magnetic flux density."^^qudt:LatexString ; + qudt:plainTextDescription "\"Hall Coefficient\" is defined as the ratio of the induced electric field to the product of the current density and the applied magnetic field." ; + qudt:symbol "R_H, A_H" ; + rdfs:comment "Applicable units are those of quantitykind:HallCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Hall Coefficient"@en . + +quantitykind:HamiltonFunction + a qudt:QuantityKind ; + dcterms:description "The Hamilton–Jacobi equation (HJE) is a necessary condition describing extremal geometry in generalizations of problems from the calculus of variations."^^qudt:LatexString ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hamilton–Jacobi_equation"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$H = \\sum p_i\\dot{q_i} - L$, where $p_i$ is a generalized momentum, $\\dot{q_i}$ is a generalized velocity, and $L$ is the Lagrange function."^^qudt:LatexString ; + qudt:plainTextDescription "The Hamilton–Jacobi equation (HJE) is a necessary condition describing extremal geometry in generalizations of problems from the calculus of variations." ; + qudt:symbol "H" ; + rdfs:comment "Applicable units are those of quantitykind:HamiltonFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Hamilton Function"@en . + +quantitykind:HeadEndPressure + a qudt:QuantityKind ; + qudt:abbreviation "HEP" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Head End Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:HeartRate + a qudt:QuantityKind ; + dcterms:description "The number of heartbeats per unit of time, usually per minute. The heart rate is based on the number of contractions of the ventricles (the lower chambers of the heart). The heart rate may be too fast (tachycardia) or too slow (bradycardia). The average adult pulse rate at rest is 60–80 per minute, but exercise, injury, illness, and emotion may produce much faster rates."^^qudt:LatexString ; + qudt:applicableUnit unit:BEAT-PER-MIN ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Heart_rate"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/oi/authority.20110803100354463"^^xsd:anyURI ; + qudt:plainTextDescription "The number of heartbeats per unit of time, usually per minute. The heart rate is based on the number of contractions of the ventricles (the lower chambers of the heart). The heart rate may be too fast (tachycardia) or too slow (bradycardia). The average adult pulse rate at rest is 60–80 per minute, but exercise, injury, illness, and emotion may produce much faster rates." ; + rdfs:comment "Applicable units are those of quantitykind:HeartRate" ; + rdfs:isDefinedBy ; + rdfs:label "Heart Rate"@en . + +quantitykind:Heat + a qudt:QuantityKind ; + dcterms:description "\"Heat\" is the energy transferred by a thermal process. Heat can be measured in terms of the dynamical units of energy, as the erg, joule, etc., or in terms of the amount of energy required to produce a definite thermal change in some substance, as, for example, the energy required per degree to raise the temperature of a unit mass of water at some temperature ( calorie, Btu)."^^qudt:LatexString ; + qudt:abbreviation "heat" ; + qudt:applicableUnit unit:BTU_39DEG_F ; + qudt:applicableUnit unit:BTU_59DEG_F ; + qudt:applicableUnit unit:BTU_60DEG_F ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_MEAN ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_15_DEG_C ; + qudt:applicableUnit unit:CAL_20DEG_C ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_MEAN ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloCAL_IT ; + qudt:applicableUnit unit:KiloCAL_Mean ; + qudt:applicableUnit unit:KiloCAL_TH ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TON_FG-HR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Heat"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "\"Heat\" is the energy transferred by a thermal process. Heat can be measured in terms of the dynamical units of energy, as the erg, joule, etc., or in terms of the amount of energy required to produce a definite thermal change in some substance, as, for example, the energy required per degree to raise the temperature of a unit mass of water at some temperature ( calorie, Btu)." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Wärme"@de ; + rdfs:label "calor"@es ; + rdfs:label "calore"@it ; + rdfs:label "cantitate de căldură"@ro ; + rdfs:label "ciepło"@pl ; + rdfs:label "heat"@en ; + rdfs:label "jednotka tepla"@cs ; + rdfs:label "kuantiti haba Haba"@ms ; + rdfs:label "labor"@la ; + rdfs:label "quantidade de calor"@pt ; + rdfs:label "quantité de chaleur"@fr ; + rdfs:label "toplota"@sl ; + rdfs:label "ısı miktarı"@tr ; + rdfs:label "Теплота"@ru ; + rdfs:label "حرارة"@ar ; + rdfs:label "کمیت گرما"@fa ; + rdfs:label "ऊष्मा"@hi ; + rdfs:label "热量"@zh ; + rdfs:label "熱量"@ja ; + skos:altLabel "Wärmemenge"@de ; + skos:altLabel "amount of heat"@en ; + skos:altLabel "chaleur"@fr ; + skos:altLabel "jumlah haba"@ms ; + skos:altLabel "quantità di calore"@it ; + skos:broader quantitykind:ThermalEnergy . + +quantitykind:HeatCapacity + a qudt:QuantityKind ; + dcterms:description "\"Heat Capacity\" (usually denoted by a capital $C$, often with subscripts), or thermal capacity, is the measurable physical quantity that characterizes the amount of heat required to change a substance's temperature by a given amount. In the International System of Units (SI), heat capacity is expressed in units of joule(s) (J) per kelvin (K)."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-DEG_R ; + qudt:applicableUnit unit:EV-PER-K ; + qudt:applicableUnit unit:J-PER-K ; + qudt:applicableUnit unit:MegaJ-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_capacity"^^xsd:anyURI ; + qudt:latexDefinition "$C = dQ/dT$, where $Q$ is amount of heat and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:HECA ; + qudt:symbol "C_P" ; + rdfs:comment "Applicable units are those of quantitykind:HeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "Wärmekapazität"@de ; + rdfs:label "capacidad calorífica"@es ; + rdfs:label "capacidade térmica"@pt ; + rdfs:label "capacitate termică"@ro ; + rdfs:label "capacità termica"@it ; + rdfs:label "capacité thermique"@fr ; + rdfs:label "heat capacity"@en ; + rdfs:label "isı kapasitesi"@tr ; + rdfs:label "muatan haba"@ms ; + rdfs:label "pojemność cieplna"@pl ; + rdfs:label "tepelná kapacita"@cs ; + rdfs:label "toplotna kapaciteta"@sl ; + rdfs:label "теплоёмкость"@ru ; + rdfs:label "سعة حرارية"@ar ; + rdfs:label "ظرفیت گرمایی"@fa ; + rdfs:label "ऊष्मा धारिता"@hi ; + rdfs:label "热容"@zh ; + rdfs:label "熱容量"@ja ; + skos:broader quantitykind:EnergyPerTemperature . + +quantitykind:HeatCapacityRatio + a qudt:QuantityKind ; + dcterms:description "The heat capacity ratio, or ratio of specific heats, is the ratio of the heat capacity at constant pressure ($C_P$) to heat capacity at constant volume ($C_V$). For an ideal gas, the heat capacity is constant with temperature ($\\theta$). Accordingly we can express the enthalpy as $H = C_P*\\theta$ and the internal energy as $U = C_V \\cdot \\theta$. Thus, it can also be said that the heat capacity ratio is the ratio between enthalpy and internal energy."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Heat_capacity_ratio"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_capacity_ratio"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:qkdvDenominator qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H-1T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Heat Capacity Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:HeatFlowRate + a qudt:QuantityKind ; + dcterms:description "The rate of heat flow between two systems is measured in watts (joules per second). The formula for rate of heat flow is $\\bigtriangleup Q / \\bigtriangleup t = -K \\times A \\times \\bigtriangleup T/x$, where $\\bigtriangleup Q / \\bigtriangleup t$ is the rate of heat flow; $-K$ is the thermal conductivity factor; A is the surface area; $\\bigtriangleup T$ is the change in temperature and $x$ is the thickness of the material. $\\bigtriangleup T/ x$ is called the temperature gradient and is always negative because of the heat of flow always goes from more thermal energy to less)."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-MIN ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:BTU_TH-PER-HR ; + qudt:applicableUnit unit:BTU_TH-PER-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloBTU_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloCAL_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL_TH-PER-MIN ; + qudt:applicableUnit unit:KiloCAL_TH-PER-SEC ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:expression "$heat-flow-rate$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rate_of_heat_flow"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Heat Flow Rate"@en ; + skos:broader quantitykind:Power . + +quantitykind:HeatFlowRatePerArea + a qudt:QuantityKind ; + dcterms:description "$\\textit{Heat Flux}$ is the heat rate per area. In SI units, heat flux is measured in $W/m^2$. Heat rate is a scalar quantity, while heat flux is a vectorial quantity. To define the heat flux at a certain point in space, one takes the limiting case where the size of the surface becomes infinitesimally small."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_flux"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Heat Flow Rate per Unit Area"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:HeatFluxDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:siExactMatch si-quantity:HEFD ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Heat Flux Density"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:HeatingValue + a qudt:QuantityKind ; + dcterms:description "The heating value (or energy value or calorific value) of a substance, usually a fuel or food (see food energy), is the amount of heat released during the combustion of a specified amount of it. "^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Heat_of_combustion"^^xsd:anyURI ; + qudt:plainTextDescription "The heating value (or energy value or calorific value) of a substance, usually a fuel or food (see food energy), is the amount of heat released during the combustion of a specified amount of it. " ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Calorific Value"@en ; + skos:altLabel "Energy Value"@en ; + skos:altLabel "Heating Value"@en ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:Height + a qudt:QuantityKind ; + dcterms:description "\"Height\" is the measurement of vertical distance, but has two meanings in common use. It can either indicate how \"tall\" something is, or how \"high up\" it is."^^qudt:LatexString ; + qudt:abbreviation "height" ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Height"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Height"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Height\" is the measurement of vertical distance, but has two meanings in common use. It can either indicate how \"tall\" something is, or how \"high up\" it is." ; + qudt:symbol "h" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Höhe"@de ; + rdfs:label "Ketinggian"@ms ; + rdfs:label "Výška"@cs ; + rdfs:label "altezza"@it ; + rdfs:label "altura"@es ; + rdfs:label "altura"@pt ; + rdfs:label "hauteur"@fr ; + rdfs:label "height"@en ; + rdfs:label "yükseklik"@tr ; + rdfs:label "Înălțime"@ro ; + rdfs:label "высота"@ru ; + rdfs:label "ارتفاع"@fa ; + rdfs:label "高度"@zh ; + skos:broader quantitykind:Length . + +quantitykind:HelmholtzEnergy + a qudt:QuantityKind ; + dcterms:description "$\\textit{Helmholtz Energy}$ is one of the potentials are used to measure energy changes in systems as they evolve from an initial state to a final state. The potential used depends on the constraints of the system, such as constant temperature or pressure. $\\textit{Internal Energy}$ is the internal energy of the system, $\\textit{Enthalpy}$ is the internal energy of the system plus the energy related to pressure-volume work, and Helmholtz and Gibbs free energy are the energies available in a system to do useful work when the temperature and volume or the pressure and temperature are fixed, respectively. The name $\\textit{Helmholz Free Energy}$ is also used."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Thermodynamics"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$H = U - T \\cdot S$, where $U$ is internal energy, $T$ is thermodynamic temperature and $S$ is entropy."^^qudt:LatexString ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energía de Helmholtz"@es ; + rdfs:label "Helmholtz energy"@en ; + rdfs:label "Helmholtz enerjisi"@tr ; + rdfs:label "Helmholtzova volná energie"@cs ; + rdfs:label "Prosta energija"@sl ; + rdfs:label "Tenaga Helmholtz"@ms ; + rdfs:label "energia libera di Helmholz"@it ; + rdfs:label "energia livre de Helmholtz"@pt ; + rdfs:label "energia swobodna"@pl ; + rdfs:label "freie Energie"@de ; + rdfs:label "énergie libre"@fr ; + rdfs:label "свободная энергия Гельмгольца"@ru ; + rdfs:label "انرژی آزاد هلمولتز"@fa ; + rdfs:label "طاقة هلمهولتز الحرة"@ar ; + rdfs:label "ヘルムホルツの自由エネルギー"@ja ; + rdfs:label "亥姆霍兹自由能"@zh ; + rdfs:seeAlso quantitykind:Energy ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:GibbsEnergy ; + rdfs:seeAlso quantitykind:InternalEnergy ; + skos:altLabel " Helmholtz fonksiyonu"@tr ; + skos:altLabel "Helmholtz function"@en ; + skos:altLabel "Helmholtz-Energie"@de ; + skos:altLabel "Helmholtz-Funktion"@de ; + skos:altLabel "fungsi Helmholtz"@ms ; + skos:broader quantitykind:Energy . + +quantitykind:HenrysLawVolatilityConstant + a qudt:QuantityKind ; + dcterms:description "A quantity kind that is a proportionality constant that relates the partial pressure of a gas above a liquid and the concentration of the gas dissolved in the liquid. The numerator contains the gaseous concentration and the denominator contains the liquid concentration."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM-M3-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "A quantity kind that is a proportionality constant that relates the partial pressure of a gas above a liquid and the concentration of the gas dissolved in the liquid. The numerator contains the gaseous concentration and the denominator contains the liquid concentration." ; + rdfs:comment "Applicable units are those of quantitykind:HenrysLawVolatilityConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Henry's Law Volatility Constant"@en . + +quantitykind:HoleDensity + a qudt:QuantityKind ; + dcterms:description "\"Hole Density\" is the number of holes per volume in a valence band."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Hole Density\" is the number of holes per volume in a valence band." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Hole Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:HorizontalVelocity + a qudt:QuantityKind ; + dcterms:description "Component of a projectile's velocity, which acts parallel to the ground and does not lift the projectile in the air."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Component of a projectile's velocity, which acts parallel to the ground and does not lift the projectile in the air." ; + qudt:symbol "V_{X}" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Horizontal Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:HydraulicPermeability + a qudt:QuantityKind ; + dcterms:description "Permeability is a property of porous materials that is an indication of the ability for fluids (gas or liquid) to flow through them. Fluids can more easily flow through a material with high permeability than one with low permeability. The permeability of a medium is related to the porosity, but also to the shapes of the pores in the medium and their level of connectedness."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DARCY ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliDARCY ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:baseCGSUnitDimensions "$cm^2$"^^qudt:LatexString ; + qudt:baseSIUnitDimensions "$m^2$"^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permeability_(Earth_sciences)"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Permeability_(Earth_sciences)"^^xsd:anyURI ; + qudt:plainTextDescription "Permeability is a property of porous materials that is an indication of the ability for fluids (gas or liquid) to flow through them. Fluids can more easily flow through a material with high permeability than one with low permeability. The permeability of a medium is related to the porosity, but also to the shapes of the pores in the medium and their level of connectedness." ; + rdfs:comment "Applicable units are those of quantitykind:HydraulicPermeability" ; + rdfs:isDefinedBy ; + rdfs:label "Hydraulic Permeability"@en ; + skos:altLabel "Fluid Permeability"@en ; + skos:altLabel "Permeability"@en . + +quantitykind:HyperfineStructureQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Hyperfine Structure Quantum Number\" is a quantum number of an atom describing inclination of the nuclear spin with respect to a quantization axis given by the magnetic field produced by the orbital electrons."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hyperfine_structure"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Hyperfine Structure Quantum Number\" is a quantum number of an atom describing inclination of the nuclear spin with respect to a quantization axis given by the magnetic field produced by the orbital electrons." ; + qudt:symbol "F" ; + rdfs:comment "Applicable units are those of quantitykind:HyperfineStructureQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Hyperfine Structure Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber . + +quantitykind:INERT-MASS + a qudt:QuantityKind ; + dcterms:description "The sum of the vehicle dry mass, residual fluids and gasses, personnel and personnel provisions, and cargo."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "The sum of the vehicle dry mass, residual fluids and gasses, personnel and personnel provisions, and cargo." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Inert Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:IgnitionIntervalTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Ignition interval time"@en ; + skos:broader quantitykind:Time . + +quantitykind:Illuminance + a qudt:QuantityKind ; + dcterms:description "Illuminance is the total luminous flux incident on a surface, per unit area. It is a measure of the intensity of the incident light, wavelength-weighted by the luminosity function to correlate with human brightness perception."^^qudt:LatexString ; + qudt:applicableUnit unit:FC ; + qudt:applicableUnit unit:LUX ; + qudt:applicableUnit unit:PHOT ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Illuminance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD062" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Illuminance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD062"^^xsd:anyURI ; + qudt:latexDefinition "$E_v = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the luminous flux incident on an element of the surface with area $dA$."^^qudt:LatexString ; + qudt:plainTextDescription "Illuminance is the total luminous flux incident on a surface, per unit area. It is a measure of the intensity of the incident light, wavelength-weighted by the luminosity function to correlate with human brightness perception." ; + qudt:siExactMatch si-quantity:ILLU ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Beleuchtungsstärke"@de ; + rdfs:label "Intenzita osvětlení"@cs ; + rdfs:label "Pencahayaan"@ms ; + rdfs:label "aydınlanma şiddeti"@tr ; + rdfs:label "illuminamento"@it ; + rdfs:label "illuminance"@en ; + rdfs:label "iluminamento"@pt ; + rdfs:label "iluminare"@ro ; + rdfs:label "luminosidad"@es ; + rdfs:label "megvilágítás"@hu ; + rdfs:label "natężenie oświetlenia"@pl ; + rdfs:label "osvetljenost"@sl ; + rdfs:label "éclairement lumineux"@fr ; + rdfs:label "Осветеност"@bg ; + rdfs:label "Освещённость"@ru ; + rdfs:label "הארה (שטף ליחידת שטח)"@he ; + rdfs:label "شدة الضوء"@ar ; + rdfs:label "شدت روشنایی"@fa ; + rdfs:label "प्रदीपन"@hi ; + rdfs:label "照度"@ja ; + rdfs:label "照度"@zh ; + skos:altLabel "éclairement"@fr ; + skos:broader quantitykind:LuminousFluxPerArea . + +quantitykind:Impedance + a qudt:QuantityKind ; + dcterms:description "\"Impedance\" is the measure of the opposition that a circuit presents to the passage of a current when a voltage is applied. In quantitative terms, it is the complex ratio of the voltage to the current in an alternating current (AC) circuit. Impedance extends the concept of resistance to AC circuits, and possesses both magnitude and phase, unlike resistance, which has only magnitude. When a circuit is driven with direct current (DC), there is no distinction between impedance and resistance; the latter can be thought of as impedance with zero phase angle."^^qudt:LatexString ; + qudt:applicableUnit unit:OHM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electrical_impedance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electrical_impedance"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-43"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\underline{Z} = \\underline{U} / \\underline{I}$, where $\\underline{U}$ is the voltage phasor and $\\underline{I}$ is the electric current phasor."^^qudt:LatexString ; + qudt:latexSymbol "$\\underline{Z}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Impedance\" is the measure of the opposition that a circuit presents to the passage of a current when a voltage is applied. In quantitative terms, it is the complex ratio of the voltage to the current in an alternating current (AC) circuit. Impedance extends the concept of resistance to AC circuits, and possesses both magnitude and phase, unlike resistance, which has only magnitude. When a circuit is driven with direct current (DC), there is no distinction between impedance and resistance; the latter can be thought of as impedance with zero phase angle." ; + rdfs:comment "Applicable units are those of quantitykind:Impedance" ; + rdfs:isDefinedBy ; + rdfs:label "Impedance"@en ; + rdfs:seeAlso quantitykind:ElectricCurrentPhasor ; + rdfs:seeAlso quantitykind:VoltagePhasor . + +quantitykind:Impulse + a qudt:QuantityKind ; + dcterms:description "product of force and time"@en ; + qudt:altSymbol "0173-1#Z4-BAJ262#002" ; + qudt:applicableUnit unit:GM-CentiM-PER-SEC ; + qudt:applicableUnit unit:KiloGM-CentiM-PER-SEC ; + qudt:applicableUnit unit:LB-FT-PER-SEC ; + qudt:applicableUnit unit:LB-IN-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD063" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD063"^^xsd:anyURI ; + qudt:plainTextDescription "Produkt aus Kraft und Zeit"@de ; + qudt:symbol "0173-1#Z4-BAJ241#002" ; + rdfs:comment "Applicable units are those of quantitykind:Impulse" ; + rdfs:isDefinedBy ; + rdfs:label "impulse" ; + rdfs:label "impulse"@en-US . + +quantitykind:Incidence + a qudt:QuantityKind ; + dcterms:description "In epidemiology, incidence is a measure of the probability of occurrence of a given medical condition in a population within a specified period of time."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD064" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD064"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ; + qudt:plainTextDescription "In epidemiology, incidence is a measure of the probability of occurrence of a given medical condition in a population within a specified period of time." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Incidence"@en ; + skos:broader quantitykind:Frequency . + +quantitykind:IncidenceProportion + a qudt:QuantityKind ; + dcterms:description "Incidence proportion (also known as cumulative incidence) is the number of new cases within a specified time period divided by the size of the population initially at risk. For example, if a population initially contains 1,000 non-diseased persons and 28 develop a condition over two years of observation, the incidence proportion is 28 cases per 1,000 persons per two years, i.e. 2.8% per two years."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Cumulative_incidence"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ; + qudt:plainTextDescription "Incidence proportion (also known as cumulative incidence) is the number of new cases within a specified time period divided by the size of the population initially at risk. For example, if a population initially contains 1,000 non-diseased persons and 28 develop a condition over two years of observation, the incidence proportion is 28 cases per 1,000 persons per two years, i.e. 2.8% per two years." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Incidence Proportion"@en ; + rdfs:seeAlso quantitykind:IncidenceRate ; + skos:broader quantitykind:Incidence . + +quantitykind:IncidenceRate + a qudt:QuantityKind ; + dcterms:description "The incidence rate is a measure of the frequency with which a disease or other incident occurs over a specified time period. It is also known as the incidence density rate or person-time incidence rate, when the denominator is the combined person-time of the population at risk (the sum of the time duration of exposure across all persons exposed)"^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ; + qudt:plainTextDescription "The incidence rate is a measure of the frequency with which a disease or other incident occurs over a specified time period. It is also known as the incidence density rate or person-time incidence rate, when the denominator is the combined person-time of the population at risk (the sum of the time duration of exposure across all persons exposed)" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Incidence Rate"@en ; + rdfs:seeAlso quantitykind:IncidenceProportion ; + skos:broader quantitykind:Incidence . + +quantitykind:Inductance + a qudt:QuantityKind ; + dcterms:description "\"Inductance\" is an electromagentic quantity that characterizes a circuit's resistance to any change of electric current; a change in the electric current through induces an opposing electromotive force (EMF). Quantitatively, inductance is proportional to the magnetic flux per unit of electric current."^^qudt:LatexString ; + qudt:applicableUnit unit:H ; + qudt:applicableUnit unit:H_Ab ; + qudt:applicableUnit unit:H_Stat ; + qudt:applicableUnit unit:KiloH ; + qudt:applicableUnit unit:MicroH ; + qudt:applicableUnit unit:MilliH ; + qudt:applicableUnit unit:NanoH ; + qudt:applicableUnit unit:PicoH ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Inductance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD065" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-19"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD065"^^xsd:anyURI ; + qudt:latexDefinition "$L =\\frac{\\Psi}{I}$, where $I$ is an electric current in a thin conducting loop, and $\\Psi$ is the linked flux caused by that electric current."^^qudt:LatexString ; + qudt:plainTextDescription "\"Inductance\" is an electromagentic quantity that characterizes a circuit's resistance to any change of electric current; a change in the electric current through induces an opposing electromotive force (EMF). Quantitatively, inductance is proportional to the magnetic flux per unit of electric current." ; + qudt:siExactMatch si-quantity:ELIN ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:Inductance" ; + rdfs:isDefinedBy ; + rdfs:label "Inductance électrique"@fr ; + rdfs:label "Indukstans"@ms ; + rdfs:label "Induktivität"@de ; + rdfs:label "Indukčnost"@cs ; + rdfs:label "inductance"@en ; + rdfs:label "inductancia"@es ; + rdfs:label "inductantia"@la ; + rdfs:label "inductanță"@ro ; + rdfs:label "indukcyjność"@pl ; + rdfs:label "induktivitás"@hu ; + rdfs:label "induktivnost"@sl ; + rdfs:label "induttanza"@it ; + rdfs:label "indutância"@pt ; + rdfs:label "İndüktans"@tr ; + rdfs:label "Индуктивност"@bg ; + rdfs:label "Индуктивность"@ru ; + rdfs:label "השראות"@he ; + rdfs:label "القاوری"@fa ; + rdfs:label "المحاثة (التحريض)"@ar ; + rdfs:label "प्रेरकत्व"@hi ; + rdfs:label "インダクタンス・誘導係数"@ja ; + rdfs:label "电感"@zh ; + rdfs:seeAlso quantitykind:MutualInductance ; + skos:altLabel "Induktiviti"@ms ; + skos:altLabel "inductivity"@en . + +quantitykind:InfiniteMultiplicationFactor + a qudt:QuantityKind ; + dcterms:description "The \"Infinite Multiplication Factor\" is the multiplication factor for an infinite medium or for an infinite repeating lattice."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$k_\\infty$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Infinite Multiplication Factor\" is the multiplication factor for an infinite medium or for an infinite repeating lattice." ; + rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Infinite Multiplication Factor"@en ; + skos:broader quantitykind:MultiplicationFactor ; + skos:closeMatch quantitykind:EffectiveMultiplicationFactor . + +quantitykind:InformationContent + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD066" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD066"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "information content" . + +quantitykind:InformationContentExpressedAsALogarithmToBase10 + a qudt:QuantityKind ; + dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the common logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) lg 1/p(x) Hart, where p(x) is the probability of the event x"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der dekatischer Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) lg 1/p(x) Hart, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ; + qudt:symbol "0173-1#Z4-BAJ468#001" ; + rdfs:isDefinedBy ; + rdfs:label "information content expressed as a logarithm to base 10"@en-US . + +quantitykind:InformationContentExpressedAsALogarithmToBase2 + a qudt:QuantityKind ; + dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the binary logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) lb 1/p(x) Sh, where p(x) is the probability of the event x"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "I(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der binäre Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) = lb 1/p(x) Sh, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ; + qudt:symbol "0173-1#Z4-BAJ463#001" ; + rdfs:isDefinedBy ; + rdfs:label "information content expressed as a logarithm to base 2"@en-US . + +quantitykind:InformationContentExpressedAsALogarithmToBaseE + a qudt:QuantityKind ; + dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the natural logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) ln 1/p(x) nat, where p(x) is the probability of the event x"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "I(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der natürliche Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) = ln 1/p(x) nat, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ; + qudt:symbol "0173-1#Z4-BAJ469#001" ; + rdfs:isDefinedBy ; + rdfs:label "information content expressed as a logarithm to base e"@en-US . + +quantitykind:InformationEntropy + a qudt:QuantityKind ; + dcterms:description "Information Entropy is a concept from information theory. It tells how much information there is in an event. In general, the more uncertain or random the event is, the more information it will contain. The concept of information entropy was created by a mathematician. He was named Claude Elwood Shannon. It has applications in many areas, including lossless data compression, statistical inference, cryptography and recently in other disciplines as biology, physics or machine learning."^^qudt:LatexString ; + qudt:applicableUnit unit:BAN ; + qudt:applicableUnit unit:BIT ; + qudt:applicableUnit unit:BYTE ; + qudt:applicableUnit unit:ERLANG ; + qudt:applicableUnit unit:ExaBIT ; + qudt:applicableUnit unit:ExaBYTE ; + qudt:applicableUnit unit:ExbiBIT ; + qudt:applicableUnit unit:ExbiBYTE ; + qudt:applicableUnit unit:GibiBYTE ; + qudt:applicableUnit unit:GigaBYTE ; + qudt:applicableUnit unit:HART ; + qudt:applicableUnit unit:KibiBYTE ; + qudt:applicableUnit unit:KiloBYTE ; + qudt:applicableUnit unit:MebiBYTE ; + qudt:applicableUnit unit:MegaBYTE ; + qudt:applicableUnit unit:NAT ; + qudt:applicableUnit unit:PebiBIT ; + qudt:applicableUnit unit:PebiBYTE ; + qudt:applicableUnit unit:PetaBYTE ; + qudt:applicableUnit unit:SHANNON ; + qudt:applicableUnit unit:TebiBIT ; + qudt:applicableUnit unit:TebiBYTE ; + qudt:applicableUnit unit:TeraBYTE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://simple.wikipedia.org/wiki/Information_entropy"^^xsd:anyURI ; + qudt:plainTextDescription "Information Entropy is a concept from information theory. It tells how much information there is in an event. In general, the more uncertain or random the event is, the more information it will contain. The concept of information entropy was created by a mathematician. He was named Claude Elwood Shannon. It has applications in many areas, including lossless data compression, statistical inference, cryptography and recently in other disciplines as biology, physics or machine learning." ; + rdfs:comment "Applicable units are those of quantitykind:InformationEntropy" ; + rdfs:isDefinedBy ; + rdfs:label "Information Entropy"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:InformationFlowRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:HART-PER-SEC ; + qudt:applicableUnit unit:NAT-PER-SEC ; + qudt:applicableUnit unit:SHANNON-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:InformationFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Information flow rate"@en . + +quantitykind:InitialExpansionRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:M-PER-DEG_C-M ; + qudt:applicableUnit unit:MilliM-PER-DEG_C-M ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:applicableUnit unit:PPM-PER-K ; + qudt:applicableUnit unit:PPTM-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:ExpansionRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Initial Expansion Ratio"@en ; + skos:broader quantitykind:ExpansionRatio . + +quantitykind:InitialNozzleThroatDiameter + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Initial Nozzle Throat Diameter"@en ; + skos:broader quantitykind:NozzleThroatDiameter . + +quantitykind:InitialVehicleMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_{o}" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Initial Vehicle Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:InitialVelocity + a qudt:QuantityKind ; + dcterms:description "The velocity of a moving body at starting; especially, the velocity of a projectile as it leaves the mouth of a firearm from which it is discharged."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "The velocity of a moving body at starting; especially, the velocity of a projectile as it leaves the mouth of a firearm from which it is discharged." ; + qudt:symbol "V_{i}" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Initial Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:InstantaneousPower + a qudt:QuantityKind ; + dcterms:description """ + For a two-terminal element or a two-terminal circuit with terminals A and B, + $\\textit{Instantaneous Power}$ is the product of the voltage $u_{AB}$ between the terminals and the electric current i in the element or circuit: + $$p = u_{AB} \\cdot i$$ + Where $u_{AB}$ is the line integral of the electric field strength from A to B, + and where the electric current in the element or circuit is taken positive if its direction is from A to B and negative in the opposite case. + $$$$ + For an n-terminal circuit, it is the sum of the instantaneous powers relative to the n - 1 pairs of terminals when one of the terminals is chosen as a common terminal for the pairs. + $$$$ + For a polyphase element, it is the sum of the instantaneous powers in all phase elements of a polyphase element. + $$$$ + For a polyphase line consisting of m line conductors and one neutral conductor, it is the sum of the m instantaneous powers expressed for each line conductor by the product of the polyphase line-to-neutral voltage and the corresponding line current. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Power"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-30"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-31"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=141-02-14"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=141-03-10"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$p = ui$, where $u$ is instantaneous voltage and $i$ is instantaneous electric current."^^qudt:LatexString ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Instantaneous Power"@en ; + skos:broader quantitykind:ElectricPower . + +quantitykind:InternalConversionFactor + a qudt:QuantityKind ; + dcterms:description "The \"InternalConversionFactor\" describes the rate of internal conversion. It is the ratio of the number of internal conversion electrons to the number of gamma quanta emitted by the radioactive atom in a given transition."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Internal_conversion_coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"InternalConversionFactor\" describes the rate of internal conversion. It is the ratio of the number of internal conversion electrons to the number of gamma quanta emitted by the radioactive atom in a given transition." ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:InternalConversionFactor" ; + rdfs:isDefinedBy ; + rdfs:label "InternalConversionFactor"@en . + +quantitykind:InternalEnergy + a qudt:QuantityKind ; + dcterms:description "\"Internal Energy\" is simply its energy. \"internal\" refers to the fact that some energy contributions are not considered. For instance, when the total system is in uniform motion, it has kinetic energy. This overall kinetic energy is never seen as part of the internal energy; one could call it external energy. Or, if the system is at constant non-zero height above the surface the Earth, it has constant potential energy in the gravitational field of the Earth. Gravitational energy is only taken into account when it plays a role in the phenomenon of interest, for instance in a colloidal suspension, where the gravitation influences the up- downward motion of the small particles comprising the colloid. In all other cases, gravitational energy is assumed not to contribute to the internal energy; one may call it again external energy."^^qudt:LatexString ; + qudt:abbreviation "int-energy" ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Internal_energy"^^xsd:anyURI ; + qudt:exactMatch quantitykind:EnergyInternal ; + qudt:exactMatch quantitykind:ThermodynamicEnergy ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Internal_energy"^^xsd:anyURI ; + qudt:latexDefinition "For a closed thermodynamic system, $\\Delta U = Q + W$, where $Q$ is amount of heat transferred to the system and $W$ is work done on the system provided that no chemical reactions occur."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "\"Internal Energy\" is simply its energy. \"internal\" refers to the fact that some energy contributions are not considered. For instance, when the total system is in uniform motion, it has kinetic energy. This overall kinetic energy is never seen as part of the internal energy; one could call it external energy. Or, if the system is at constant non-zero height above the surface the Earth, it has constant potential energy in the gravitational field of the Earth. Gravitational energy is only taken into account when it plays a role in the phenomenon of interest, for instance in a colloidal suspension, where the gravitation influences the up- downward motion of the small particles comprising the colloid. In all other cases, gravitational energy is assumed not to contribute to the internal energy; one may call it again external energy." ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Internal Energy"@en ; + rdfs:seeAlso quantitykind:Energy ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:GibbsEnergy ; + rdfs:seeAlso quantitykind:HelmholtzEnergy ; + skos:broader quantitykind:Energy . + +quantitykind:IntinsicCarrierDensity + a qudt:QuantityKind ; + dcterms:description "\"Intinsic Carrier Density\" is proportional to electron and hole densities."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:latexDefinition "$np = n_i^2$, where $n$ is electron density and $p$ is hole density."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Intinsic Carrier Density\" is proportional to electron and hole densities." ; + qudt:symbol "n_i" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Intinsic Carrier Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:InverseAmountOfSubstance + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseAmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse amount of substance"@en . + +quantitykind:InverseEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-J ; + qudt:applicableUnit unit:PER-KiloVA-HR ; + qudt:applicableUnit unit:PER-VA-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:iec61360Code "0112/2///62720#UAD156" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD156"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:InverseEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Energy"@en . + +quantitykind:InverseEnergy_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-EV2 ; + qudt:applicableUnit unit:PER-GigaEV2 ; + qudt:applicableUnit unit:PER-J2 ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M-2H0T4D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseEnergy_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Square Energy"@en . + +quantitykind:InverseLength + a qudt:QuantityKind ; + dcterms:description "Reciprocal length or inverse length is a measurement used in several branches of science and mathematics. As the reciprocal of length, common units used for this measurement include the reciprocal metre or inverse metre ($m^{-1}$), the reciprocal centimetre or inverse centimetre ($cm^{-1}$), and, in optics, the dioptre."^^qudt:LatexString ; + qudt:applicableUnit unit:KY ; + qudt:applicableUnit unit:M-PER-HA ; + qudt:applicableUnit unit:M-PER-M2 ; + qudt:applicableUnit unit:MESH ; + qudt:applicableUnit unit:NUM-PER-M ; + qudt:applicableUnit unit:PER-ANGSTROM ; + qudt:applicableUnit unit:PER-CentiM ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reciprocal_length"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:InverseLength" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Length"@en . + +quantitykind:InverseLengthTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-M-K ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H-1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseLengthTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Length Temperature"@en . + +quantitykind:InverseMagneticFlux + a qudt:QuantityKind ; + qudt:applicableUnit unit:HZ-PER-V ; + qudt:applicableUnit unit:PER-WB ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseMagneticFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Magnetic Flux"@en . + +quantitykind:InverseMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-GM ; + qudt:applicableUnit unit:PER-KiloGM ; + qudt:applicableUnit unit:PER-LB ; + qudt:applicableUnit unit:PER-MilliGM ; + qudt:applicableUnit unit:PER-OZ ; + qudt:applicableUnit unit:PER-TON ; + qudt:applicableUnit unit:PER-TONNE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD157" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD157"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:InverseMass" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal mass" . + +quantitykind:InverseMass_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-KiloGM2 ; + qudt:applicableUnit unit:PER-PlanckMass2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-2H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseMass_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Square Mass"@en . + +quantitykind:InversePermittivity + a qudt:QuantityKind ; + qudt:applicableUnit unit:M-PER-FARAD ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-4D0 ; + rdfs:comment "Applicable units are those of quantitykind:InversePermittivity" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Permittivity"@en . + +quantitykind:InversePressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-BAR ; + qudt:applicableUnit unit:PER-MILLE-PSI ; + qudt:applicableUnit unit:PER-MegaPA ; + qudt:applicableUnit unit:PER-PA ; + qudt:applicableUnit unit:PER-PSI ; + qudt:exactMatch quantitykind:IsothermalCompressibility ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + rdfs:comment "Applicable units are those of quantitykind:InversePressure" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Pressure"@en . + +quantitykind:InverseTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Temperature"@en . + +quantitykind:InverseTime + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Time"@en . + +quantitykind:InverseTimeTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:HZ-PER-K ; + qudt:applicableUnit unit:MegaHZ-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseTimeTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Time Temperature"@en . + +quantitykind:InverseTime_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseTime_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Square Time"@en . + +quantitykind:InverseVolume + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-CentiM3 ; + qudt:applicableUnit unit:PER-FT3 ; + qudt:applicableUnit unit:PER-IN3 ; + qudt:applicableUnit unit:PER-L ; + qudt:applicableUnit unit:PER-M3 ; + qudt:applicableUnit unit:PER-MilliL ; + qudt:applicableUnit unit:PER-MilliM3 ; + qudt:applicableUnit unit:PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:InverseVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Volume"@en . + +quantitykind:IonConcentration + a qudt:QuantityKind ; + dcterms:description "\"Ion Concentration\" is the number of ions per unit volume. Also known as ion density."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-CentiM3 ; + qudt:applicableUnit unit:PER-FT3 ; + qudt:applicableUnit unit:PER-IN3 ; + qudt:applicableUnit unit:PER-L ; + qudt:applicableUnit unit:PER-M3 ; + qudt:applicableUnit unit:PER-MilliL ; + qudt:applicableUnit unit:PER-MilliM3 ; + qudt:applicableUnit unit:PER-YD3 ; + qudt:exactMatch quantitykind:IonDensity ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "\"Ion Concentration\" is the number of ions per unit volume. Also known as ion density." ; + rdfs:comment "Applicable units are those of quantitykind:InverseVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Concentration"@en ; + skos:broader quantitykind:InverseVolume . + +quantitykind:IonCurrent + a qudt:QuantityKind ; + dcterms:description "An ion current is the influx and/or efflux of ions through an ion channel."^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:A_Ab ; + qudt:applicableUnit unit:A_Stat ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:BIOT ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:KiloA ; + qudt:applicableUnit unit:MegaA ; + qudt:applicableUnit unit:MicroA ; + qudt:applicableUnit unit:MilliA ; + qudt:applicableUnit unit:NanoA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:PicoA ; + qudt:applicableUnit unit:PlanckCurrent ; + qudt:applicableUnit unit:TeraA ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:plainTextDescription "An ion current is the influx and/or efflux of ions through an ion channel." ; + qudt:symbol "j" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Current"@en ; + skos:broader quantitykind:ElectricCurrent . + +quantitykind:IonDensity + a qudt:QuantityKind ; + dcterms:description "\"Ion Density\" is the number of ions per unit volume. Also known as ion concentration."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:exactMatch quantitykind:IonConcentration ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://www.answers.com/topic/ion-density"^^xsd:anyURI ; + qudt:latexDefinition """$n^+ = \\frac{N^+}{V}$, $n^- = \\frac{N^-}{V}$ + +where $N^+$ and $N^-$ are the number of positive and negative ions, respectively, in a 3D domain with volume $V$."""^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Ion Density\" is the number of ions per unit volume. Also known as ion concentration." ; + qudt:symbol "N, n^+, n^-" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:IonTransportNumber + a qudt:QuantityKind ; + dcterms:description "The \"Ion Transport Number\" is a quantity which indicates the different contribution of ions to the electric current in electrolytes due to different electrical mobility."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ion_transport_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$t_B = \\frac{i_B}{i}$, where $i_B$ is the electric current carried by the ion $B$ and $i$ is the total electric current."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Ion Transport Number\" is a quantity which indicates the different contribution of ions to the electric current in electrolytes due to different electrical mobility." ; + qudt:symbol "t_B" ; + rdfs:comment "Applicable units are those of quantitykind:IonTransportNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Transport Number"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:IonicCharge + a qudt:QuantityKind ; + dcterms:description "The total charge of an ion. The charge of an electron; the charge of any ion is equal to this electron charge in magnitude, or is an integral multiple of it."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR ; + qudt:applicableUnit unit:A-SEC ; + qudt:applicableUnit unit:AttoC ; + qudt:applicableUnit unit:C ; + qudt:applicableUnit unit:C_Ab ; + qudt:applicableUnit unit:C_Stat ; + qudt:applicableUnit unit:CentiC ; + qudt:applicableUnit unit:DecaC ; + qudt:applicableUnit unit:DeciC ; + qudt:applicableUnit unit:E ; + qudt:applicableUnit unit:ElementaryCharge ; + qudt:applicableUnit unit:ExaC ; + qudt:applicableUnit unit:F ; + qudt:applicableUnit unit:FR ; + qudt:applicableUnit unit:FemtoC ; + qudt:applicableUnit unit:GigaC ; + qudt:applicableUnit unit:HectoC ; + qudt:applicableUnit unit:KiloA-HR ; + qudt:applicableUnit unit:KiloC ; + qudt:applicableUnit unit:KiloJ-PER-KiloV ; + qudt:applicableUnit unit:MegaC ; + qudt:applicableUnit unit:MicroC ; + qudt:applicableUnit unit:MilliA-HR ; + qudt:applicableUnit unit:MilliA-SEC ; + qudt:applicableUnit unit:MilliC ; + qudt:applicableUnit unit:NanoC ; + qudt:applicableUnit unit:PetaC ; + qudt:applicableUnit unit:PicoC ; + qudt:applicableUnit unit:PlanckCharge ; + qudt:applicableUnit unit:TeraC ; + qudt:applicableUnit unit:YoctoC ; + qudt:applicableUnit unit:YottaC ; + qudt:applicableUnit unit:ZeptoC ; + qudt:applicableUnit unit:ZettaC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:plainTextDescription "The total charge of an ion. The charge of an electron; the charge of any ion is equal to this electron charge in magnitude, or is an integral multiple of it." ; + qudt:symbol "q" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Ionic Charge"@en ; + skos:broader quantitykind:ElectricCharge . + +quantitykind:IonicStrength + a qudt:QuantityKind ; + dcterms:description "The \"Ionic Strength\" of a solution is a measure of the concentration of ions in that solution."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-KiloGM ; + qudt:applicableUnit unit:KiloMOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL_LB-PER-LB ; + qudt:applicableUnit unit:MicroMOL-PER-GM ; + qudt:applicableUnit unit:MilliMOL-PER-GM ; + qudt:applicableUnit unit:MilliMOL-PER-KiloGM ; + qudt:applicableUnit unit:NanoMOL-PER-GM ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionic_strength"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$I = \\frac{1}{2} \\sum z_i^2 b_i$, where the summation is carried out over all ions with charge number $z_i$ and molality $m_i$."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Ionic Strength\" of a solution is a measure of the concentration of ions in that solution." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:IonicStrength" ; + rdfs:isDefinedBy ; + rdfs:label "Ionic Strength"@en . + +quantitykind:IonizationEnergy + a qudt:QuantityKind ; + dcterms:description "\"Ionization Energy\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The amount of energy required to remove an electron from that atom or molecule in the gas phase."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization_energy"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Ionization Energy\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The amount of energy required to remove an electron from that atom or molecule in the gas phase." ; + qudt:symbol "E_i" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Ionization Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:Irradiance + a qudt:QuantityKind ; + dcterms:description "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^qudt:LatexString ; + qudt:abbreviation "W-PER-M2" ; + qudt:applicableUnit unit:MegaJ-PER-M2-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD068" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Irradiance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD068"^^xsd:anyURI ; + qudt:latexDefinition "$E = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the radiant flux incident on an element of the surface with area $dA$."^^qudt:LatexString ; + qudt:plainTextDescription "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface." ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:Irradiance" ; + rdfs:isDefinedBy ; + rdfs:label "Bestrahlungsstärke"@de ; + rdfs:label "Intenzita záření"@cs ; + rdfs:label "Kepenyinaran"@ms ; + rdfs:label "irradiance"@en ; + rdfs:label "irradiancia"@es ; + rdfs:label "irradianza"@it ; + rdfs:label "irradiância"@pt ; + rdfs:label "yoğunluk"@tr ; + rdfs:label "éclairement énergétique"@fr ; + rdfs:label "Поверхностная плотность потока энергии"@ru ; + rdfs:label "الطاقة الهلامية"@ar ; + rdfs:label "پرتو افکنی/چگالی تابش"@fa ; + rdfs:label "熱流束"@ja ; + rdfs:label "辐照度"@zh ; + skos:altLabel "koyuluk"@tr ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:IsentropicCompressibility + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Isentropic compressibility}$ is the extent to which a material reduces its volume when it is subjected to compressive stresses at a constant value of entropy. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PER-MegaPA ; + qudt:applicableUnit unit:PER-PA ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Compressibility"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\varkappa_S = \\frac{1}{V}\\left (\\frac{\\partial V}{\\partial p} \\right )_S$, where $V$ is volume, $p$ is $pressure$, and $S$ is entropy,"^^qudt:LatexString ; + qudt:latexSymbol "$\\varkappa_S$"^^qudt:LatexString ; + qudt:plainTextDescription "Isentropic compressibility is the extent to which a material reduces its volume when it is subjected to compressive stresses at a constant value of entropy." ; + rdfs:comment "Applicable units are those of quantitykind:IsentropicCompressibility" ; + rdfs:isDefinedBy ; + rdfs:label "Isentropic Compressibility"@en . + +quantitykind:IsentropicExponent + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Isentropic Exponent}$ is a variant of $\\textit{Specific Heat Ratio Capacities}$. + For an ideal gas $\\textit{Isentropic Exponent}$, $\\varkappa$. is equal to $\\gamma$, + the ratio of its specific heat capacities $c_p$ and $c_v$ under steady pressure and volume. + """^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Specific_heat_ratio"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Compressibility"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\varkappa = -\\frac{V}{p}\\left \\{ \\frac{\\partial p}{\\partial V}\\right \\}_S$, where $V$ is volume, $p$ is pressure, and $S$ is entropy."^^qudt:LatexString ; + qudt:latexSymbol "$\\varkappa$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:IsentropicExponent" ; + rdfs:isDefinedBy ; + rdfs:label "Coefficiente di dilatazione adiabatica"@it ; + rdfs:label "Coeficient de transformare adiabatică"@ro ; + rdfs:label "Coeficiente de dilatación adiabática"@es ; + rdfs:label "Coeficiente de expansão adiabática"@pt ; + rdfs:label "Isentropenexponent"@de ; + rdfs:label "Poissonova konstanta"@cs ; + rdfs:label "Wykładnik adiabaty"@pl ; + rdfs:label "adiabatni eksponent"@sl ; + rdfs:label "exposant isoentropique"@fr ; + rdfs:label "isentropic exponent"@en ; + rdfs:label "ısı sığası oranı; adyabatik indeks"@tr ; + rdfs:label "Показатель адиабаты"@ru ; + rdfs:label "نسبة السعة الحرارية"@ar ; + rdfs:label "比熱比"@ja ; + rdfs:label "绝热指数"@zh ; + rdfs:seeAlso quantitykind:IsentropicCompressibility ; + skos:altLabel "indice adiabatico"@it ; + skos:altLabel "indice adiabatique"@fr . + +quantitykind:IsothermalCompressibility + a qudt:QuantityKind ; + dcterms:description "The isothermal compressibility defines the rate of change of system volume with pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-BAR ; + qudt:applicableUnit unit:PER-MILLE-PSI ; + qudt:applicableUnit unit:PER-MegaPA ; + qudt:applicableUnit unit:PER-PA ; + qudt:applicableUnit unit:PER-PSI ; + qudt:exactMatch quantitykind:InversePressure ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Compressibility"^^xsd:anyURI ; + qudt:latexDefinition "$\\varkappa_T = \\frac{1}{V}\\left (\\frac{\\partial V}{\\partial p} \\right )_T$, where $V$ is volume, $p$ is $pressure$, and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:latexSymbol "$\\varkappa_T$"^^qudt:LatexString ; + qudt:plainTextDescription "The isothermal compressibility defines the rate of change of system volume with pressure." ; + rdfs:comment "Applicable units are those of quantitykind:IsothermalCompressibility" ; + rdfs:isDefinedBy ; + rdfs:label "Izotermna stisljivost"@sl ; + rdfs:label "Ketermampatan isotermik"@ms ; + rdfs:label "compresibilidad isotérmica"@es ; + rdfs:label "compressibilidade isotérmica"@pt ; + rdfs:label "compressibilité isotherme"@fr ; + rdfs:label "comprimibilità isotermica"@it ; + rdfs:label "isothermal compressibility"@en ; + rdfs:label "isotherme Kompressibilität"@de ; + rdfs:label "objemová stlačitelnost"@cs ; + rdfs:label "ściśliwość izotermiczna"@pl ; + rdfs:label "изотермический коэффициент сжимаемости"@ru ; + rdfs:label "ضریب تراکم‌پذیری همدما"@fa ; + rdfs:label "معامل الانضغاط عند ثبوت درجة الحرارة"@ar ; + rdfs:label "等温压缩率"@zh ; + rdfs:label "等温圧縮率"@ja . + +quantitykind:IsothermalMoistureCapacity + a qudt:QuantityKind ; + dcterms:description "\"Isothermal Moisture Capacity\" is the capacity of a material to absorb moisture in the Effective Moisture Penetration Depth (EMPD) model."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-GM ; + qudt:applicableUnit unit:DeciL-PER-GM ; + qudt:applicableUnit unit:DeciM3-PER-KiloGM ; + qudt:applicableUnit unit:FT3-PER-LB ; + qudt:applicableUnit unit:IN3-PER-LB ; + qudt:applicableUnit unit:L-PER-KiloGM ; + qudt:applicableUnit unit:M3-PER-KiloGM ; + qudt:applicableUnit unit:MilliL-PER-GM ; + qudt:applicableUnit unit:MilliL-PER-KiloGM ; + qudt:applicableUnit unit:MilliM3-PER-GM ; + qudt:applicableUnit unit:MilliM3-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:informativeReference "https://bigladdersoftware.com/epx/docs/8-4/engineering-reference/effective-moisture-penetration-depth-empd.html#empd-nomenclature"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:SpecificVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Isothermal Moisture Capacity"@en ; + skos:broader quantitykind:SpecificVolume . + +quantitykind:Kerma + a qudt:QuantityKind ; + dcterms:description "\"Kerma\" is the sum of the initial kinetic energies of all the charged particles liberated by uncharged ionizing radiation (i.e., indirectly ionizing radiation such as photons and neutrons) in a sample of matter, divided by the mass of the sample."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiGRAY ; + qudt:applicableUnit unit:GRAY ; + qudt:applicableUnit unit:KiloGRAY ; + qudt:applicableUnit unit:MegaGRAY ; + qudt:applicableUnit unit:NanoGRAY ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kerma_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "For indirectly ionizing (uncharged) particles, $K= \\frac{dE_{tr}}{dm}$, where $dE_{tr}$ is the mean sum of the initial kinetic energies of all the charged ionizing particles liberated by uncharged ionizing particles in an element of matter, and $dm$ is the mass of that element."^^qudt:LatexString ; + qudt:plainTextDescription "\"Kerma\" is the sum of the initial kinetic energies of all the charged particles liberated by uncharged ionizing radiation (i.e., indirectly ionizing radiation such as photons and neutrons) in a sample of matter, divided by the mass of the sample." ; + qudt:symbol "K" ; + rdfs:comment "Applicable units are those of quantitykind:Kerma" ; + rdfs:isDefinedBy ; + rdfs:label "Kerma"@en ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:KermaRate + a qudt:QuantityKind ; + dcterms:description "\"Kerma Rate\" is the kerma per unit time."^^qudt:LatexString ; + qudt:applicableUnit unit:GRAY-PER-HR ; + qudt:applicableUnit unit:GRAY-PER-MIN ; + qudt:applicableUnit unit:GRAY-PER-SEC ; + qudt:applicableUnit unit:MicroGRAY-PER-HR ; + qudt:applicableUnit unit:MicroGRAY-PER-MIN ; + qudt:applicableUnit unit:MicroGRAY-PER-SEC ; + qudt:applicableUnit unit:MicroSV-PER-MIN ; + qudt:applicableUnit unit:MicroSV-PER-SEC ; + qudt:applicableUnit unit:MilliGRAY-PER-HR ; + qudt:applicableUnit unit:MilliGRAY-PER-MIN ; + qudt:applicableUnit unit:MilliGRAY-PER-SEC ; + qudt:applicableUnit unit:MilliRAD_R-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-MIN ; + qudt:applicableUnit unit:MilliSV-PER-SEC ; + qudt:applicableUnit unit:NanoGRAY-PER-HR ; + qudt:applicableUnit unit:NanoGRAY-PER-MIN ; + qudt:applicableUnit unit:NanoGRAY-PER-SEC ; + qudt:applicableUnit unit:NanoSV-PER-HR ; + qudt:applicableUnit unit:NanoSV-PER-MIN ; + qudt:applicableUnit unit:NanoSV-PER-SEC ; + qudt:applicableUnit unit:REM-PER-SEC ; + qudt:applicableUnit unit:SV-PER-HR ; + qudt:applicableUnit unit:SV-PER-MIN ; + qudt:applicableUnit unit:SV-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Half-value_layer"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\dot{K} = \\frac{dK}{dt}$, where $K$ is the increment of kerma during time interval with duration $t$."^^qudt:LatexString ; + qudt:latexSymbol "$\\dot{K}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Kerma Rate\" is the kerma per unit time." ; + rdfs:comment "Applicable units are those of quantitykind:KermaRate" ; + rdfs:isDefinedBy ; + rdfs:label "Kerma Rate"@en . + +quantitykind:KinematicViscosity + a qudt:QuantityKind ; + dcterms:description "The ratio of the viscosity of a liquid to its density. Viscosity is a measure of the resistance of a fluid which is being deformed by either shear stress or tensile stress. In many situations, we are concerned with the ratio of the inertial force to the viscous force (that is the Reynolds number), the former characterized by the fluid density $\\rho$. This ratio is characterized by the kinematic viscosity (Greek letter $\\nu$), defined as follows: $\\nu = \\mu / \\rho$. The SI unit of $\\nu$ is $m^{2}/s$. The SI unit of $\\nu$ is $kg/m^{1}$."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiST ; + qudt:applicableUnit unit:ST ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Viscosity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD070" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Viscosity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD070"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\nu = \\frac{\\eta}{\\rho}$, where $\\eta$ is dynamic viscosity and $\\rho$ is mass density."^^qudt:LatexString ; + qudt:latexSymbol "$\\nu$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:KinematicViscosity" ; + rdfs:isDefinedBy ; + rdfs:label "Kelikatan kinematik"@ms ; + rdfs:label "Kinematik akmazlık"@tr ; + rdfs:label "Viscozitate cinematică"@ro ; + rdfs:label "kinematic viscosity"@en ; + rdfs:label "kinematische Viskosität"@de ; + rdfs:label "kinematična viskoznost"@sl ; + rdfs:label "lepkość kinematyczna"@pl ; + rdfs:label "viscosidad cinemática"@es ; + rdfs:label "viscosidade cinemática"@pt ; + rdfs:label "viscosità cinematica"@it ; + rdfs:label "viscosité cinématique"@fr ; + rdfs:label "viskozita"@cs ; + rdfs:label "кинематическую вязкость"@ru ; + rdfs:label "لزوجة"@ar ; + rdfs:label "گرانروی جنبشی/ویسکوزیته جنبشی"@fa ; + rdfs:label "श्यानता"@hi ; + rdfs:label "粘度"@ja ; + rdfs:label "运动粘度"@zh ; + rdfs:seeAlso quantitykind:DynamicViscosity ; + rdfs:seeAlso quantitykind:MolecularViscosity ; + skos:broader quantitykind:AreaPerTime . + +quantitykind:KinematicViscosityOrDiffusionConstantOrThermalDiffusivity + a qudt:QuantityKind ; + dcterms:description "ratio of the dynamic viscosity and the density of a material measured at the same temperature, or ratio of the diffusion current density and carrier density gradient, or ratio of thermal conductivity divided by heat capacity"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes oder Quotient Diffusionsstromdichte durch Gradient der Ladungsträgerdichte oder Quotient Wärmeleitfähigkeit durch Wärmekapazität"@de ; + qudt:symbol "0173-1#Z4-BAJ328#002" ; + rdfs:isDefinedBy ; + rdfs:label "kinematic viscosity or diffusion constant or thermal diffusivity"@en-US . + +quantitykind:KineticEnergy + a qudt:QuantityKind ; + dcterms:description "$\\textit{Kinetic Energy}$ is the energy which a body possesses as a consequence of its motion, defined as one-half the product of its mass $m$ and the square of its speed $v$, $ \\frac{1}{2} mv^{2} $. The kinetic energy per unit volume of a fluid parcel is the $ \\frac{1}{2} p v^{2}$ , where $p$ is the density and $v$ the speed of the parcel. See potential energy. For relativistic speeds the kinetic energy is given by $E_k = mc^2 - m_0 c^2$, where $c$ is the velocity of light in a vacuum, $m_0$ is the rest mass, and $m$ is the moving mass."^^qudt:LatexString ; + qudt:altSymbol "K" ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kinetic_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD071" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kinetic_energy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD071"^^xsd:anyURI ; + qudt:latexDefinition "$T = \\frac{mv^2}{2}$, where $m$ is mass and $v$ is speed."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:symbol "KE" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Kinetic Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:KineticOrThermalEnergy + a qudt:QuantityKind ; + dcterms:description "energy presented in the movement of a body, composed of translation and rotation energies, determined by the movement of this body compared to another system and by its mass (mass distribution) or energy in the terms of heat"@en ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "Energie, die in der Bewegung eines Körpers steckt und sich aus Translationsenergie und Rotationsenergie zusammen setzt, die durch die Bewegung dieses Körpers gegenüber einem anderen System und durch seine Masse (Massenverteilung) bestimmt wird oder Energie in Form von Wärme"@de ; + qudt:symbol "0173-1#Z4-BAJ280#002" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "kinetic or thermal energy"@en-US ; + skos:broader quantitykind:Energy . + +quantitykind:LagrangeFunction + a qudt:QuantityKind ; + dcterms:description "The Lagrange Function is a function that summarizes the dynamics of the system."^^qudt:LatexString ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lagrangian"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=113-03-76"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$L(q_i, \\dot{q_i}) = T(q_i, \\dot{q_i}) - V(q_i)$, where $T$ is kinetic energy, $V$ is potential energy, $q_i$ is a generalized coordinate, and $\\dot{q_i}$ is a generalized velocity."^^qudt:LatexString ; + qudt:plainTextDescription "The Lagrange Function is a function that summarizes the dynamics of the system." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:LagrangeFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Lagrange Function"@en . + +quantitykind:Landau-GinzburgNumber + a qudt:QuantityKind ; + dcterms:description "\"Landau-Ginzburg Number\", also known as the Ginzburg-Landau parameter, describes the relationship between London penetration depth and coherence length."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ginzburg–Landau_theory"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "At zero thermodynamic temperature $\\kappa = \\frac{\\lambda_L}{(\\varepsilon\\sqrt{2})}$, where $\\lambda_L$ is London penetration depth and $\\varepsilon$ is coherence length."^^qudt:LatexString ; + qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Landau-Ginzburg Number\", also known as the Ginzburg-Landau parameter, describes the relationship between London penetration depth and coherence length." ; + rdfs:comment "Applicable units are those of quantitykind:Landau-GinzburgNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Landau-Ginzburg Number"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:LandeGFactor + a qudt:QuantityKind ; + dcterms:description "The \"Lande g-Factor\" is a particular example of a g-factor, namely for an electron with both spin and orbital angular momenta. It is named after Alfred Landé, who first described it in 1921."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/G-factor_(physics)"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Landé_g-factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$g = \\frac{\\mu}{J\\mu_B}$, where $\\mu$ is the magnitude of magnetic dipole moment, $J$ is the total angular momentum quantum number, and $\\mu_B$ is the Bohr magneton."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Lande g-Factor\" is a particular example of a g-factor, namely for an electron with both spin and orbital angular momenta. It is named after Alfred Landé, who first described it in 1921." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:LandeGFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Lande g-Factor"@en . + +quantitykind:LarmorAngularFrequency + a qudt:QuantityKind ; + dcterms:description "The \"Larmor Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Larmor_precession#Larmor_frequency"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\omega_L = \\frac{e}{2m_e}B$, where $e$ is the elementary charge, $m_e$ is the rest mass of electron, and $B$ is the magnetic flux density."^^qudt:LatexString ; + qudt:latexSymbol "$\\omega_L$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Larmor Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency." ; + rdfs:comment "Applicable units are those of quantitykind:AngularFrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Larmor Angular Frequency"@en ; + skos:broader quantitykind:AngularFrequency . + +quantitykind:LatticePlaneSpacing + a qudt:QuantityKind ; + dcterms:description "\"Lattice Plane Spacing\" is the distance between successive lattice planes."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Lattice Plane Spacing\" is the distance between successive lattice planes." ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Lattice Plane Spacing"@en ; + skos:broader quantitykind:Length . + +quantitykind:LatticeVector + a qudt:QuantityKind ; + dcterms:description "\"Lattice Vector\" is a translation vector that maps the crystal lattice on itself."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Lattice Vector\" is a translation vector that maps the crystal lattice on itself." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Lattice Vector"@en ; + skos:broader quantitykind:Length . + +quantitykind:LeakageFactor + a qudt:QuantityKind ; + dcterms:description "\"Leakage Factor\" is the ratio of the total magnetic flux to the useful magnetic flux of a magnetic circuit."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:expression "$leakage-factor$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=221-04-12"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\sigma = 1 - k^2$, where $k$ is the coupling factor."^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Leakage Factor\" is the ratio of the total magnetic flux to the useful magnetic flux of a magnetic circuit." ; + rdfs:comment "Applicable units are those of quantitykind:LeakageFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Leakage Factor"@en . + +quantitykind:Length + a qudt:QuantityKind ; + dcterms:description "In geometric measurements, length most commonly refers to the est dimension of an object. In some contexts, the term \"length\" is reserved for a certain dimension of an object along which the length is measured."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Length"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD072" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Length"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD072"^^xsd:anyURI ; + qudt:plainTextDescription "In geometric measurements, length most commonly refers to the est dimension of an object. In some contexts, the term \"length\" is reserved for a certain dimension of an object along which the length is measured." ; + qudt:siExactMatch si-quantity:LENG ; + qudt:symbol "l" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Délka"@cs ; + rdfs:label "Länge"@de ; + rdfs:label "Panjang"@ms ; + rdfs:label "comprimento"@pt ; + rdfs:label "dolžina"@sl ; + rdfs:label "długość"@pl ; + rdfs:label "hossz"@hu ; + rdfs:label "length"@en ; + rdfs:label "longitud"@es ; + rdfs:label "longitudo"@la ; + rdfs:label "longueur"@fr ; + rdfs:label "lunghezza"@it ; + rdfs:label "lungime"@ro ; + rdfs:label "uzunluk"@tr ; + rdfs:label "Μήκος"@el ; + rdfs:label "Длина"@ru ; + rdfs:label "Дължина"@bg ; + rdfs:label "אורך"@he ; + rdfs:label "طول"@ar ; + rdfs:label "طول"@fa ; + rdfs:label "लम्बाई"@hi ; + rdfs:label "長さ"@ja ; + rdfs:label "长度"@zh . + +quantitykind:LengthByForce + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Length Force"@en ; + skos:broader quantitykind:Work . + +quantitykind:LengthEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:MegaEV-FemtoM ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Length Energy"@en . + +quantitykind:LengthMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:GM-MilliM ; + qudt:applicableUnit unit:LB-IN ; + qudt:applicableUnit unit:M-KiloGM ; + qudt:applicableUnit unit:OZ-FT ; + qudt:applicableUnit unit:OZ-IN ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthMass" ; + rdfs:isDefinedBy ; + rdfs:label "Length Mass"@en . + +quantitykind:LengthMolarEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:J-M-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthMolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Length Molar Energy"@en . + +quantitykind:LengthPerElectricCurrent + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M0H0T0D0 ; + qudt:qkdvDenominator qkdv:A0E1L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:isDefinedBy ; + rdfs:label "Length per Electric Current"@en . + +quantitykind:LengthRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Length Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:LengthTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C-CentiM ; + qudt:applicableUnit unit:K-M ; + qudt:applicableUnit unit:M-K ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Length Temperature"@en . + +quantitykind:LengthTemperatureTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-SEC-DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:LengthTemperatureTime" ; + rdfs:isDefinedBy ; + rdfs:label "Length Temperature Time"@en . + +quantitykind:Lethargy + a qudt:QuantityKind ; + dcterms:description "The \"Lethargy\" is a dimensionless logarithm of the ratio of the energy of source neutrons to the energy of neutrons after a collision."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.scribd.com/doc/51548050/149/Lethargy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$u = \\ln(\\frac{E_0}{E})$, where $E_0$ is a reference energy."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Lethargy\" is a dimensionless logarithm of the ratio of the energy of source neutrons to the energy of neutrons after a collision." ; + qudt:symbol "u" ; + rdfs:comment "Applicable units are those of quantitykind:Lethargy" ; + rdfs:isDefinedBy ; + rdfs:label "Lethargy"@en . + +quantitykind:LevelWidth + a qudt:QuantityKind ; + dcterms:description "The \"Level Width\" is the uncertainty in the energy of a quantum-mechanical system having discrete energy levels in a state that is not strictly stationary. The system may be an atom, a molecule, or an atomic nucleus."^^qudt:LatexString ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/Level+Width"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\Gamma = \\frac{\\hbar}{\\tau}$, where $\\hbar$ is the reduced Planck constant and $\\tau$ is the mean lifetime."^^qudt:LatexString ; + qudt:latexSymbol "$\\Gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Level Width\" is the uncertainty in the energy of a quantum-mechanical system having discrete energy levels in a state that is not strictly stationary. The system may be an atom, a molecule, or an atomic nucleus." ; + rdfs:comment "Applicable units are those of quantitykind:LevelWidth" ; + rdfs:isDefinedBy ; + rdfs:label "Level Width"@en . + +quantitykind:LiftCoefficient + a qudt:QuantityKind ; + dcterms:description "The lift coefficient is a dimensionless coefficient that relates the lift generated by a lifting body, the dynamic pressure of the fluid flow around the body, and a reference area associated with the body."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "The lift coefficient is a dimensionless coefficient that relates the lift generated by a lifting body, the dynamic pressure of the fluid flow around the body, and a reference area associated with the body." ; + qudt:symbol "C_{L}" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Lift Coefficient"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:LiftForce + a qudt:QuantityKind ; + dcterms:description "The lift force, lifting force or simply lift is the sum of all the forces on a body that force it to move perpendicular to the direction of flow."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:plainTextDescription "The lift force, lifting force or simply lift is the sum of all the forces on a body that force it to move perpendicular to the direction of flow." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Lift Force"@en ; + skos:broader quantitykind:Force . + +quantitykind:LinearAbsorptionCoefficient + a qudt:QuantityKind ; + dcterms:description "The Linear Absorption Coefficient is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha(\\lambda) = \\frac{1}{\\Phi_\\lambda(\\lambda)}\\frac{d\\Phi_\\lambda(\\lambda)}{dl}$, where $\\frac{d\\Phi}{\\Phi}$ is the relative decrease, caused by absorption, in the spectral radiant flux $\\Phi$ of a collimated beam of electromagnetic radiation corresponding to the wavelength $\\lambda$ during traversal of an infinitesimal layer of a medium and $dl$ is the length traversed."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "The Linear Absorption Coefficient is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter." ; + rdfs:comment "Applicable units are those of quantitykind:LinearAbsorptionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Absorption Coefficient"@en . + +quantitykind:LinearAcceleration + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-SEC2 ; + qudt:applicableUnit unit:FT-PER-SEC2 ; + qudt:applicableUnit unit:G ; + qudt:applicableUnit unit:GALILEO ; + qudt:applicableUnit unit:IN-PER-SEC2 ; + qudt:applicableUnit unit:KN-PER-SEC ; + qudt:applicableUnit unit:KiloM-PER-SEC2 ; + qudt:applicableUnit unit:KiloPA-M2-PER-GM ; + qudt:applicableUnit unit:M-PER-SEC2 ; + qudt:applicableUnit unit:MI_US-PER-SEC2 ; + qudt:applicableUnit unit:MicroG ; + qudt:applicableUnit unit:MilliG ; + qudt:applicableUnit unit:MilliGAL ; + qudt:applicableUnit unit:MilliM-PER-SEC2 ; + qudt:applicableUnit unit:YD-PER-SEC2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Acceleration"^^xsd:anyURI ; + qudt:exactMatch quantitykind:Acceleration ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:LinearAcceleration" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Acceleration"@en . + +quantitykind:LinearAttenuationCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Linear Attenuation Coefficient\", also called the attenuation coefficient, narrow beam attenuation coefficient, or absorption coefficient, is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition """$\\mu = -\\frac{1}{J}\\frac{dJ}{dx}$, where $J$ is the magnitude of the current rate of a beam of particles parallel to the $x-direction$. + +Or: + +$\\mu(\\lambda) = \\frac{1}{\\Phi_\\lambda(\\lambda)}\\frac{d\\Phi_\\lambda(\\lambda)}{dl}$, where $\\frac{d\\Phi}{\\Phi}$ is the relative decrease in the spectral radiant flux $\\Phi$ of a collimated beam of electromagnetic radiation corresponding to the wavelength $\\lambda$ during traversal of an infinitesimal layer of a medium and $dl$ is the length traversed."""^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Linear Attenuation Coefficient\", also called the attenuation coefficient, narrow beam attenuation coefficient, or absorption coefficient, is a quantity that characterizes how easily a material or medium can be penetrated by a beam of light, sound, particles, or other energy or matter." ; + rdfs:comment "Applicable units are those of quantitykind:LinearAttenuationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Attenuation Coefficient"@en . + +quantitykind:LinearBitDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:BIT-PER-M ; + qudt:applicableUnit unit:ExbiBIT-PER-M ; + qudt:applicableUnit unit:GibiBIT-PER-M ; + qudt:applicableUnit unit:GigaBIT-PER-M ; + qudt:applicableUnit unit:KibiBIT-PER-M ; + qudt:applicableUnit unit:MebiBIT-PER-M ; + qudt:applicableUnit unit:PebiBIT-PER-M ; + qudt:applicableUnit unit:TebiBIT-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD074" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD074"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LinearBitDensity" ; + rdfs:isDefinedBy ; + rdfs:label "lineic bit density" . + +quantitykind:LinearCompressibility + a qudt:QuantityKind ; + dcterms:description "Linear Compressibility is a measure of the relative length change of a solid as a response to a normal force change."^^qudt:LatexString ; + qudt:applicableUnit unit:MicroM-PER-N ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:plainTextDescription "Linear Compressibility is a measure of the relative length change of a solid as a response to a normal force change." ; + rdfs:comment "Applicable units are those of quantitykind:LinearCompressibility" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Compressibility"@en . + +quantitykind:LinearDensity + a qudt:QuantityKind ; + dcterms:description "The Linear density, linear mass density or linear mass is a measure of mass per unit of length, and it is a characteristic of strings or other one-dimensional objects."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M ; + qudt:applicableUnit unit:KiloGM-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Linear_density"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_l = \\frac{dm}{dl}$, where $m$ is mass and $l$ is length."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_l$"^^qudt:LatexString ; + qudt:plainTextDescription "The Linear density, linear mass density or linear mass is a measure of mass per unit of length, and it is a characteristic of strings or other one-dimensional objects." ; + rdfs:comment "Applicable units are those of quantitykind:LinearDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Density"@en . + +quantitykind:LinearElectricCharge + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD075" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD075"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "lineic electric charge" . + +quantitykind:LinearElectricCurrent + a qudt:QuantityKind ; + dcterms:description "\"Linear Electric Linear Current\" is the electric current per unit line."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD076" ; + qudt:informativeReference "http://www.asknumbers.com/ElectricalConversion.aspx"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD076"^^xsd:anyURI ; + qudt:plainTextDescription "\"Linear Electric Linear Current\" is the electric current per unit line." ; + rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Electric Current"@en ; + skos:broader quantitykind:LinearElectricCurrentDensity . + +quantitykind:LinearElectricCurrentDensity + a qudt:QuantityKind ; + dcterms:description "\"Linear Electric Linear Current Density\" is the electric current per unit length. Electric current, $I$, through a curve $C$ is defined as $I = \\int_C J _s \\times e_n$, where $e_n$ is a unit vector perpendicular to the surface and line vector element, and $dr$ is the differential of position vector $r$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:informativeReference "http://www.asknumbers.com/ElectricalConversion.aspx"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$J_s = \\rho_A v$, where $\\rho_A$ is surface density of electric charge and $v$ is velocity."^^qudt:LatexString ; + qudt:symbol "J_s" ; + rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Electric Current Density"@en ; + rdfs:seeAlso quantitykind:ElectricChargeSurfaceDensity ; + rdfs:seeAlso quantitykind:ElectricCurrentDensity . + +quantitykind:LinearEnergyTransfer + a qudt:QuantityKind ; + dcterms:description "\"Linear Energy Transfer\" (LET) is the linear density of energy lost by a charged ionizing particle travelling through matter.Typically, this measure is used to quantify the effects of ionizing radiation on biological specimens or electronic devices."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-M ; + qudt:applicableUnit unit:KiloEV-PER-MicroM ; + qudt:applicableUnit unit:MegaEV-PER-CentiM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Linear_energy_transfer"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Linear_energy_transfer"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "For ionizing charged particles, $L_\\Delta = \\frac{dE_\\Delta}{dl}$, where $dE_\\Delta$ is the mean energy lost in elctronic collisions locally to matter along a small path through the matter, minus the sum of the kinetic energies of all the electrons released with kinetic energies in excess of $\\Delta$, and $dl$ is the length of that path."^^qudt:LatexString ; + qudt:latexSymbol "$L_\\Delta$"^^qudt:LatexString ; + qudt:latexSymbol "$L_\\bigtriangleup$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Linear Energy Transfer\" (LET) is the linear density of energy lost by a charged ionizing particle travelling through matter.Typically, this measure is used to quantify the effects of ionizing radiation on biological specimens or electronic devices." ; + rdfs:comment "Applicable units are those of quantitykind:LinearEnergyTransfer" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Energy Transfer"@en . + +quantitykind:LinearExpansionCoefficient + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:applicableUnit unit:PERCENT-PER-DecaK ; + qudt:applicableUnit unit:PERCENT-PER-K ; + qudt:expression "$lnr-exp-coef$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_l = \\frac{1}{l} \\; \\frac{dl}{dT}$, where $l$ is $length$ and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_l$"^^qudt:LatexString ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H1T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:LinearExpansionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "coefficient de dilatation linéique"@fr ; + rdfs:label "coefficiente di dilatazione lineare"@it ; + rdfs:label "coeficiente de dilatação térmica linear"@pt ; + rdfs:label "coeficiente de expansión térmica lineal"@es ; + rdfs:label "linear expansion coefficient"@en ; + rdfs:label "linearer Ausdehnungskoeffizient"@de ; + rdfs:label "współczynnik liniowej rozszerzalności cieplnej"@pl ; + rdfs:label "معدل التمدد الحراري الخطي"@ar ; + rdfs:label "線熱膨張係数"@ja ; + rdfs:label "线性热膨胀系数"@zh ; + skos:broader quantitykind:ExpansionRatio . + +quantitykind:LinearForce + a qudt:QuantityKind ; + dcterms:description "Another name for Force Per Length, used by the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:DYN-PER-CentiM ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-M-PER-CentiM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-FT ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloN-PER-M ; + qudt:applicableUnit unit:LB_F-PER-FT ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:LB_F-PER-YD ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-PER-M ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:N-PER-CentiM ; + qudt:applicableUnit unit:N-PER-M ; + qudt:applicableUnit unit:N-PER-MilliM ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:PDL-PER-IN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD077" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD077"^^xsd:anyURI ; + qudt:plainTextDescription "Another name for Force Per Length, used by the Industry Foundation Classes (IFC) standard." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Force"@en ; + rdfs:label "Streckenlast"@de ; + skos:broader quantitykind:ForcePerLength . + +quantitykind:LinearIonization + a qudt:QuantityKind ; + dcterms:description "\"Linear Ionization\" is a description of how the ionization of an atom or molecule takes place. For example, an ion with a +2 charge can be created only from an ion with a +1 charge or a +3 charge. That is, the numerical charge of an atom or molecule must change sequentially, always moving from one number to an adjacent, or sequential, number. Using sequential ionization definition."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization#Classical_ionization"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$N_{il} = \\frac{1}{e}\\frac{dQ}{dl}$, where $e$ is the elementary charge and $dQ$ is the average total charge of all positive ions produced over an infinitesimal element of the path with length $dl$ by an ionizing charged particle."^^qudt:LatexString ; + qudt:plainTextDescription "\"Linear Ionization\" is a description of how the ionization of an atom or molecule takes place. For example, an ion with a +2 charge can be created only from an ion with a +1 charge or a +3 charge. That is, the numerical charge of an atom or molecule must change sequentially, always moving from one number to an adjacent, or sequential, number. Using sequential ionization definition." ; + qudt:symbol "N_{il}" ; + rdfs:comment "Applicable units are those of quantitykind:LinearIonization" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Ionization"@en . + +quantitykind:LinearLogarithmicRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:B-PER-M ; + qudt:applicableUnit unit:DeciB-PER-KiloM ; + qudt:applicableUnit unit:DeciB-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD078" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD078"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LinearLogarithmicRatio" ; + rdfs:isDefinedBy ; + rdfs:label "lineic logarithmic ratio" . + +quantitykind:LinearMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloGM-PER-KiloM ; + qudt:applicableUnit unit:LB-PER-YD ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD079" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD079"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LinearMass" ; + rdfs:isDefinedBy ; + rdfs:label "lineic mass" . + +quantitykind:LinearMomentum + a qudt:QuantityKind ; + dcterms:description "Linear momentum is the quantity obtained by multiplying the mass of a body by its linear velocity. The momentum of a continuous medium is given by the integral of the velocity over the mass of the medium or by the product of the total mass of the medium and the velocity of the center of gravity of the medium.The SI unit for linear momentum is meter-kilogram per second ($m-kg/s$)."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC ; + qudt:applicableUnit unit:MegaEV-PER-SpeedOfLight ; + qudt:applicableUnit unit:N-M-SEC-PER-M ; + qudt:applicableUnit unit:N-SEC ; + qudt:applicableUnit unit:PlanckMomentum ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Momentum"^^xsd:anyURI ; + qudt:exactMatch quantitykind:Momentum ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Momentum"^^xsd:anyURI ; + qudt:latexDefinition "p = m\\upsilon"^^qudt:LatexString ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:LinearMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Momentum"@en . + +quantitykind:LinearPower + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD080" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD080"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "lineic power" . + +quantitykind:LinearResistance + a qudt:QuantityKind ; + qudt:applicableUnit unit:GigaOHM-PER-M ; + qudt:applicableUnit unit:KiloOHM-PER-M ; + qudt:applicableUnit unit:MegaOHM-PER-KiloM ; + qudt:applicableUnit unit:MegaOHM-PER-M ; + qudt:applicableUnit unit:MilliOHM-PER-M ; + qudt:applicableUnit unit:OHM-PER-KiloM ; + qudt:applicableUnit unit:OHM-PER-M ; + qudt:applicableUnit unit:OHM-PER-MI ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD081" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD081"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LinearResistance" ; + rdfs:isDefinedBy ; + rdfs:label "lineic resistance" . + +quantitykind:LinearStiffness + a qudt:QuantityKind ; + dcterms:description "Stiffness is the extent to which an object resists deformation in response to an applied force. Linear Stiffness is the term used in the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:DYN-PER-CentiM ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-M-PER-CentiM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-FT ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloN-PER-M ; + qudt:applicableUnit unit:LB_F-PER-FT ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:LB_F-PER-YD ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:MilliN-PER-M ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:N-PER-CentiM ; + qudt:applicableUnit unit:N-PER-M ; + qudt:applicableUnit unit:N-PER-MilliM ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:PDL-PER-IN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Stiffness"^^xsd:anyURI ; + qudt:plainTextDescription "Stiffness is the extent to which an object resists deformation in response to an applied force. Linear Stiffness is the term used in the Industry Foundation Classes (IFC) standard." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Force"@en ; + rdfs:label "Streckenlast"@de ; + skos:broader quantitykind:ForcePerLength . + +quantitykind:LinearStrain + a qudt:QuantityKind ; + dcterms:description "A strain is a normalized measure of deformation representing the displacement between particles in the body relative to a reference length."^^qudt:LatexString ; + qudt:applicableUnit unit:PERCENT ; + qudt:exactMatch quantitykind:Strain ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\xi = \\frac{\\Delta l}{l_0}$, where $\\Delta l$ is the increase in length and $l_0$ is the length in a reference state to be specified."^^qudt:LatexString ; + qudt:latexSymbol "$\\xi$"^^qudt:LatexString ; + qudt:plainTextDescription "A strain is a normalized measure of deformation representing the displacement between particles in the body relative to a reference length." ; + rdfs:comment "Applicable units are those of quantitykind:LengthRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Strain"@en ; + skos:broader quantitykind:LengthRatio . + +quantitykind:LinearThermalExpansion + a qudt:QuantityKind ; + dcterms:description "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: linear thermal expansion, area thermal expansion, or volumetric thermal expansion."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F-DEG_R ; + qudt:applicableUnit unit:CentiM-PER-K ; + qudt:applicableUnit unit:FT-PER-DEG_F ; + qudt:applicableUnit unit:IN-PER-DEG_F ; + qudt:applicableUnit unit:M-PER-K ; + qudt:applicableUnit unit:MicroM-PER-K ; + qudt:applicableUnit unit:MilliM-PER-K ; + qudt:applicableUnit unit:YD-PER-DEG_F ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_expansion#Length"^^xsd:anyURI ; + qudt:plainTextDescription "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: linear thermal expansion, area thermal expansion, or volumetric thermal expansion." ; + rdfs:comment "Applicable units are those of quantitykind:LinearThermalExpansion" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Thermal Expansion"@en . + +quantitykind:LinearTorque + a qudt:QuantityKind ; + qudt:applicableUnit unit:LB_F-FT-PER-IN ; + qudt:applicableUnit unit:LB_F-IN-PER-IN ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD082" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD082"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LinearTorque" ; + rdfs:isDefinedBy ; + rdfs:label "lineic torque" . + +quantitykind:LinearVelocity + a qudt:QuantityKind ; + dcterms:description "Linear Velocity, as the name implies deals with speed in a straight line, the units are often $km/hr$ or $m/s$ or $mph$ (miles per hour). Linear Velocity (v) = change in distance/change in time, where $v = \\bigtriangleup d/\\bigtriangleup t$"^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Velocity"^^xsd:anyURI ; + qudt:exactMatch quantitykind:Velocity ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://au.answers.yahoo.com/question/index?qid=20080319082534AAtrClv"^^xsd:anyURI ; + qudt:symbol "v" ; + rdfs:comment "Applicable units are those of quantitykind:LinearVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Linear Velocity"@en . + +quantitykind:LinearVoltageCoefficient + a qudt:QuantityKind ; + dcterms:description "ratio identifying the relationship between induced voltage and velocity"@en ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:plainTextDescription "Verhältnis, das den Zusammenhang zwischen induzierter Spannung zur Geschwindigkeit kennzeichnet"@de ; + qudt:symbol "0173-1#Z4-BAJ336#003" ; + rdfs:isDefinedBy ; + rdfs:label "linear voltage coefficient"@en-US . + +quantitykind:LineicCharge + a qudt:QuantityKind ; + dcterms:description "electric charge divided by related length"@en ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ; + qudt:plainTextDescription "elektrische Ladung dividiert durch dazugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ457#001" ; + rdfs:isDefinedBy ; + rdfs:label "lineic charge"@en-US . + +quantitykind:LineicDataVolume + a qudt:QuantityKind ; + dcterms:description "number of data, usually dependent on the respective information complexity or its coding procedure, divided by the related length"@en ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch die zugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ331#002" ; + rdfs:isDefinedBy ; + rdfs:label "lineic data volume"@en-US . + +quantitykind:LineicLogarithmicRatio + a qudt:QuantityKind ; + dcterms:description "logarithm of the relationship between the value of a given quantity and the quantity of a reference value of the same type divided by the related length"@en ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:plainTextDescription "Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art dividiert durch die zugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ332#003" ; + rdfs:isDefinedBy ; + rdfs:label "lineic logarithmic ratio"@en-US . + +quantitykind:LineicMass + a qudt:QuantityKind ; + dcterms:description "ratio between mass divided by the related length"@en ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:plainTextDescription "Quotient Masse dividiert durch die dazugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ341#003" ; + rdfs:isDefinedBy ; + rdfs:label "lineic mass"@en-US . + +quantitykind:LineicPower + a qudt:QuantityKind ; + dcterms:description "power divided by the associated length"@en ; + qudt:applicableUnit unit:W-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ; + qudt:plainTextDescription "Leistung dividiert durch die zugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ418#003" ; + rdfs:comment "Applicable units are those of quantitykind:LineicPower" ; + rdfs:isDefinedBy ; + rdfs:label "lineic power"@en-US . + +quantitykind:LineicQuantity + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + rdfs:isDefinedBy ; + rdfs:label "lineic quantity"@en-US . + +quantitykind:LineicResistance + a qudt:QuantityKind ; + dcterms:description "ratio of resistance divided by length"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Widerstand durch Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ333#003" ; + rdfs:isDefinedBy ; + rdfs:label "lineic resistance"@en-US . + +quantitykind:LineicResolution + a qudt:QuantityKind ; + dcterms:description "graphic resolution capacity of output devices such as printers or of data acquisition such as scanners, as a number of pixels per length"@en ; + qudt:applicableUnit unit:DPI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:plainTextDescription "grafisches Auflösungsvermögen von Ausgabegeräten wie Druckern oder von Datenerfassungsgeräten wie Scannern als Anzahl der Bildpunkte je Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ438#002" ; + rdfs:comment "Applicable units are those of quantitykind:LineicResolution" ; + rdfs:isDefinedBy ; + rdfs:label "lineic resolution"@en-US ; + skos:broader quantitykind:InverseLength . + +quantitykind:LineicTorque + a qudt:QuantityKind ; + dcterms:description "torque divided by the appropriate length"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:plainTextDescription "Drehmoment dividiert durch die zugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ433#001" ; + rdfs:isDefinedBy ; + rdfs:label "lineic torque"@en-US . + +quantitykind:LinkedFlux + a qudt:QuantityKind ; + dcterms:description "\"Linked Flux\" is defined as the path integral of the magnetic vector potential. This is the line integral of a magnetic vector potential $A$ along a curve $C$. The line vector element $dr$ is the differential of position vector $r$."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-A ; + qudt:applicableUnit unit:KiloWB ; + qudt:applicableUnit unit:MX ; + qudt:applicableUnit unit:MilliWB ; + qudt:applicableUnit unit:N-M-PER-A ; + qudt:applicableUnit unit:UnitPole ; + qudt:applicableUnit unit:V_Ab-SEC ; + qudt:applicableUnit unit:WB ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux"^^xsd:anyURI ; + qudt:expression "$linked-flux$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-24"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-1800"^^xsd:anyURI ; + qudt:latexDefinition "$\\Psi_m = \\int_C A \\cdot dr$, where $A$ is magnetic vector potential and $dr$ is the vector element of the curve $C$."^^qudt:LatexString ; + qudt:latexSymbol "$\\Psi$"^^qudt:LatexString ; + qudt:latexSymbol "$\\Psi_m$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Linked Flux"@en ; + skos:broader quantitykind:MagneticFlux . + +quantitykind:LiquidVolume + a qudt:QuantityKind ; + dcterms:description "Liquid volume is the volume of a given amount of liquid, that is, the amount of space a liquid takes up. There are a number of different units used to measure liquid volume, but most of them fall under either the metric system of measurement or the Imperial system of measurement."^^qudt:LatexString ; + qudt:applicableUnit unit:BBL_US ; + qudt:applicableUnit unit:BBL_US_PET ; + qudt:applicableUnit unit:CUP ; + qudt:applicableUnit unit:CUP_US ; + qudt:applicableUnit unit:CentiL ; + qudt:applicableUnit unit:GAL_IMP ; + qudt:applicableUnit unit:GAL_UK ; + qudt:applicableUnit unit:GAL_US ; + qudt:applicableUnit unit:KiloCubicFT ; + qudt:applicableUnit unit:L ; + qudt:applicableUnit unit:OZ_VOL_US ; + qudt:applicableUnit unit:PINT_US ; + qudt:applicableUnit unit:QT_US ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:informativeReference "http://www.ehow.com/facts_6371078_liquid-volume_.html"^^xsd:anyURI ; + qudt:plainTextDescription "Liquid volume is the volume of a given amount of liquid, that is, the amount of space a liquid takes up. There are a number of different units used to measure liquid volume, but most of them fall under either the metric system of measurement or the Imperial system of measurement." ; + rdfs:comment "Applicable units are those of quantitykind:LiquidVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Liquid Volume"@en ; + skos:broader quantitykind:Volume . + +quantitykind:Log10FrequencyInterval + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:iec61360Code "0112/2///62720#UAD084" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD084"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "logarithmic frequency interval to base 10" . + +quantitykind:Log10Ratio + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD085" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD085"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "logarithmic ratio to base 10" . + +quantitykind:LogERatio + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:iec61360Code "0112/2///62720#UAD086" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD086"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "logarithmic ratio to base e" . + +quantitykind:LogOctanolAirPartitionCoefficient + a qudt:QuantityKind ; + dcterms:description "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of liquid octanol and gaseous air at equilibrium. More simply, it is a comparison of the solubilities of the compound solute in these two immiscible substances."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of liquid octanol and gaseous air at equilibrium. More simply, it is a comparison of the solubilities of the compound solute in these two immiscible substances." ; + rdfs:comment "Applicable units are those of quantitykind:LogOctanolAirPartitionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Octanol Air Partition Coefficient"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:LogOctanolWaterPartitionCoefficient + a qudt:QuantityKind ; + dcterms:description "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of octanol and water at equilibrium. More simply, it is a comparison of the solubilities of the compound solute in these two immiscible liquids. This property is used to measure the lipophilicity and the hydrophilicity of a substance."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of octanol and water at equilibrium. More simply, it is a comparison of the solubilities of the compound solute in these two immiscible liquids. This property is used to measure the lipophilicity and the hydrophilicity of a substance." ; + rdfs:comment "Applicable units are those of quantitykind:LogOctanolWaterPartitionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Logarithm of Octanol Water Partition Coefficient"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:LogarithmRatioToBase10 + a qudt:QuantityKind ; + dcterms:description "common logarithm of the ratio between the value of a defined variable and the value of a reference variable of the same type"@en ; + dcterms:description "dekadischer Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art"@de ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:siExactMatch si-quantity:RLGB ; + qudt:symbol "0173-1#Z4-BAJ441#002" ; + rdfs:isDefinedBy ; + rdfs:label "logarithm ratio to base 10"@en-US . + +quantitykind:LogarithmRatioToBaseE + a qudt:QuantityKind ; + dcterms:description "napierian logarithm of the ratio between the value of a given quantity and the value of a reference variable of the same type (base of logarithm: e = 2.718...)"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "natürlicher Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art (Basis des Logarithmus: e = 2,718...)"@de ; + qudt:symbol "0173-1#Z4-BAJ440#002" ; + rdfs:isDefinedBy ; + rdfs:label "logarithm ratio to base e"@en-US . + +quantitykind:LogarithmicFrequencyInterval + a qudt:QuantityKind ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD083" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD083"^^xsd:anyURI ; + qudt:latexDefinition "$G = \\log_{2}(f2/f1)$, where $f1$ and $f2 \\geq f1$ are frequencies of two tones."^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:LogarithmicFrequencyInterval" ; + rdfs:isDefinedBy ; + rdfs:label "Frequenzmaßintervall"@de ; + rdfs:label "Interval měření frekvence ?"@cs ; + rdfs:label "Selang kekerapan logaritma"@ms ; + rdfs:label "intervalle de fréquence logarithmique"@fr ; + rdfs:label "intervallo logaritmico di frequenza"@it ; + rdfs:label "intervalo logarítmico de frequência"@pt ; + rdfs:label "logarithmic frequency interval"@en ; + rdfs:label "logaritmik frekans aralığı"@tr ; + rdfs:label "частотный интервал"@ru ; + rdfs:label "فاصله فرکانس لگاریتمی"@fa ; + rdfs:label "对数频率间隔"@zh ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:LogarithmicFrequencyIntervalToBase10 + a qudt:QuantityKind ; + dcterms:description "common logarithm of the ratio of two frequencies, whereby the frequency that forms the numerator is greater than the frequency that forms the denominator"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "dekadischer Logarithmus des Quotienten aus zwei Frequenzen, wobei die im Zähler stehende Frequenz größer als die Frequenz im Nenner ist"@de ; + qudt:symbol "0173-1#Z4-BAJ472#001" ; + rdfs:isDefinedBy ; + rdfs:label "logarithmic frequency interval to base 10"@en-US . + +quantitykind:LogarithmicMedianInformationFlow_SourceToBase10 + a qudt:QuantityKind ; + dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 10"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 10"@de ; + qudt:symbol "0173-1#Z4-BAJ470#001" ; + rdfs:isDefinedBy ; + rdfs:label "median information flow (from a source of information), expressed as a common logarithm "@en-US . + +quantitykind:LogarithmicMedianInformationFlow_SourceToBase2 + a qudt:QuantityKind ; + dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 2"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 2"@de ; + qudt:symbol "0173-1#Z4-BAJ464#001" ; + rdfs:isDefinedBy ; + rdfs:label "median information flow (from a source of information), expressed as a binary logarithm"@en-US . + +quantitykind:LogarithmicMedianInformationFlow_SourceToBaseE + a qudt:QuantityKind ; + dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base e"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis e"@de ; + qudt:symbol "0173-1#Z4-BAJ471#001" ; + rdfs:isDefinedBy ; + rdfs:label "median information flow (from a source of information), expressed as a natural logarithm "@en-US . + +quantitykind:LondonPenetrationDepth + a qudt:QuantityKind ; + dcterms:description "\"London Penetration Depth\" characterizes the distance to which a magnetic field penetrates into a superconductor and becomes equal to 1/e times that of the magnetic field at the surface of the superconductor."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/London_penetration_depth"^^xsd:anyURI ; + qudt:latexDefinition "If an applied magnetic field is parallel to the plane surface of a semi-infinite superconductor, the field penetrates the superconductor according to the expression $B(x) = B(0) \\exp{(\\frac{-x}{\\lambda_L})}$, where $B$ is magnetic flux density and $x$ is the distance from the surface."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"London Penetration Depth\" characterizes the distance to which a magnetic field penetrates into a superconductor and becomes equal to 1/e times that of the magnetic field at the surface of the superconductor." ; + qudt:symbol "λₗ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "London Penetration Depth"@en ; + skos:broader quantitykind:Length . + +quantitykind:Long-RangeOrderParameter + a qudt:QuantityKind ; + dcterms:description "\"Long-Range Order Parameter\" is the fraction of atoms in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Long-Range Order Parameter\" is the fraction of atoms in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction." ; + qudt:symbol "R, s" ; + rdfs:comment "Applicable units are those of quantitykind:Long-RangeOrderParameter" ; + rdfs:isDefinedBy ; + rdfs:label "Long-Range Order Parameter"@en . + +quantitykind:LorenzCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Lorenz Coefficient\" is part mof the Lorenz curve."^^qudt:LatexString ; + qudt:applicableUnit unit:V2-PER-K2 ; + qudt:hasDimensionVector qkdv:A0E-2L4I0M2H-2T-6D0 ; + qudt:iec61360Code "0112/2///62720#UAD087" ; + qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD087"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$L = \\frac{\\lambda}{\\sigma T}$, where $\\lambda$ is thermal conductivity, $\\sigma$ is electric conductivity, and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:plainTextDescription "\"Lorenz Coefficient\" is part mof the Lorenz curve." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:LorenzCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Lorenz Coefficient"@en . + +quantitykind:LossAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\delta = \\arctan d$, where $d$ is loss factor."^^qudt:LatexString ; + qudt:latexSymbol "$\\delta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Loss Angle"@en ; + skos:broader quantitykind:Angle . + +quantitykind:LossFactor + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Loss Factor}$ is the inverse of $\\textit{Quality Factor}$ and is the ratio of the $\\textit{resistance}$ and modulus of $\\textit{reactance}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$d = \\frac{1}{Q}$, where $Q$ is quality factor."^^qudt:LatexString ; + qudt:plainTextDescription "Loss Factor is the inverse of Quality Factor and is the ratio of the resistance and modulus of reactance." ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:LossFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Loss Factor"@en ; + rdfs:seeAlso quantitykind:QualityFactor ; + rdfs:seeAlso quantitykind:Reactance ; + rdfs:seeAlso quantitykind:Resistance . + +quantitykind:Loudness + a qudt:QuantityKind ; + dcterms:description "measure of the subjective hearing sensation on a scale extending from soft to loud; a progressive mono-frequency (single-frequency) wave of frequency 1 kHz and sound pressure level 40 dB, directed head-on to hearers is assigned the loudness 1 sone, and a tone which is identified by the listeners as being n-times as loud as that identified by 1 sone is assigned the loudness n sone"@en ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD088" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD088"^^xsd:anyURI ; + qudt:plainTextDescription "Maß für die Stärke der subjektiven Hörempfindung, welche auf einer Skala \"leise-laut\" in sone skaliert wird; einer frei fortschreitenden monofrequenten Welle mit der Frequenz 1 kHz und dem Schalldruckpegel 40 dB, die frontal auf die Zuhörer trifft, ist die Lautheit 1 sone zugeordnet und ein Laut, welcher von den Zuhörern als n-mal so laut wie derjenige mit 1 sone bezeichnet wird, erhält die Lautheit n sone zugeordnet"@de ; + qudt:symbol "0173-1#Z4-BAJ334#002" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "loudness" ; + rdfs:label "loudness"@en-US ; + skos:broader quantitykind:Dimensionless . + +quantitykind:LoudnessLevel + a qudt:QuantityKind ; + dcterms:description "value specified in phon as a measure of the level of the subjective perception of a sound which corresponds to the sound pressure level of a reference sound specified in dB which comprises a wave coming from the front with a frequency of 1000 Hz and assessed to be just as loud as the noise"@en ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD089" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD089"^^xsd:anyURI ; + qudt:plainTextDescription "in phon angegebener Wert als Maß für die Stärke der subjektiven Wahrnehmung eines Schallvorgange, der zahlenmäßig dem in dB angegebenen Schalldruckpegel eines Referenzschalls entspricht, der aus einer frontal einfallenden ebenen Welle mit der Frequenz 1000 Hz besteht und als gleich laut wie das Geräusch empfunden wird"@de ; + qudt:symbol "0173-1#Z4-BAJ361#002" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "loudness level" ; + rdfs:label "loudness level"@en-US ; + skos:broader quantitykind:Dimensionless . + +quantitykind:LowerCriticalMagneticFluxDensity + a qudt:QuantityKind ; + dcterms:description "\"Lower Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for magnetic flux entering the superconductor."^^qudt:LatexString ; + qudt:applicableUnit unit:GAMMA ; + qudt:applicableUnit unit:GAUSS ; + qudt:applicableUnit unit:KiloGAUSS ; + qudt:applicableUnit unit:KiloT ; + qudt:applicableUnit unit:MicroT ; + qudt:applicableUnit unit:MilliT ; + qudt:applicableUnit unit:NanoT ; + qudt:applicableUnit unit:T ; + qudt:applicableUnit unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Lower Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for magnetic flux entering the superconductor." ; + qudt:symbol "B_{c1}" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Lower Critical Magnetic Flux Density"@en ; + skos:broader quantitykind:MagneticFluxDensity ; + skos:closeMatch quantitykind:UpperCriticalMagneticFluxDensity . + +quantitykind:Luminance + a qudt:QuantityKind ; + dcterms:description "Luminance is a photometric measure of the luminous intensity per unit area of light travelling in a given direction. It describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle."^^qudt:LatexString ; + qudt:applicableUnit unit:CD-PER-FT2 ; + qudt:applicableUnit unit:CD-PER-IN2 ; + qudt:applicableUnit unit:CD-PER-M2 ; + qudt:applicableUnit unit:LA ; + qudt:applicableUnit unit:LA_FT ; + qudt:applicableUnit unit:LM-PER-FT2 ; + qudt:applicableUnit unit:LM-PER-M2 ; + qudt:applicableUnit unit:STILB ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Luminance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD090" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD090"^^xsd:anyURI ; + qudt:latexDefinition "$L_v = \\frac{dI_v}{dA}$, where $dI_v$ is the luminous intensity of an element of the surface with the area $dA$ of the orthogonal projection of this element on a plane perpendicular to the given direction."^^qudt:LatexString ; + qudt:plainTextDescription "Luminance is a photometric measure of the luminous intensity per unit area of light travelling in a given direction. It describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle." ; + qudt:siExactMatch si-quantity:LUMA ; + qudt:symbol "L_v" ; + rdfs:comment "Applicable units are those of quantitykind:Luminance" ; + rdfs:isDefinedBy ; + rdfs:label "Luminance"@en . + +quantitykind:LuminousEfficacy + a qudt:QuantityKind ; + dcterms:description "Luminous Efficacy is the ratio of luminous flux (in lumens) to power (usually measured in watts). Depending on context, the power can be either the radiant flux of the source's output, or it can be the total electric power consumed by the source."^^qudt:LatexString ; + qudt:applicableUnit unit:LM-PER-W ; + qudt:expression "$lm/w$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M-1H0T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD091" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_efficacy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD091"^^xsd:anyURI ; + qudt:latexDefinition "$K = \\frac{\\Phi_v}{\\Phi}$, where $\\Phi_v$ is the luminous flux and $\\Phi$ is the corresponding radiant flux."^^qudt:LatexString ; + qudt:plainTextDescription "Luminous Efficacy is the ratio of luminous flux (in lumens) to power (usually measured in watts). Depending on context, the power can be either the radiant flux of the source's output, or it can be the total electric power consumed by the source." ; + rdfs:comment "Applicable units are those of quantitykind:LuminousEfficacy" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Efficacy"@en . + +quantitykind:LuminousEmittance + a qudt:QuantityKind ; + dcterms:description "\"Luminous Emittance\" is the luminous flux per unit area emitted from a surface."^^qudt:LatexString ; + qudt:applicableUnit unit:FC ; + qudt:applicableUnit unit:LUX ; + qudt:applicableUnit unit:PHOT ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD092" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD092"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Luminous Emittance\" is the luminous flux per unit area emitted from a surface." ; + qudt:symbol "M_v" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Emmitance"@en ; + skos:broader quantitykind:LuminousFluxPerArea . + +quantitykind:LuminousEnergy + a qudt:QuantityKind ; + dcterms:description "Luminous Energy is the perceived energy of light. This is sometimes also called the quantity of light."^^qudt:LatexString ; + qudt:altSymbol "Qv" ; + qudt:applicableUnit unit:LM-HR ; + qudt:applicableUnit unit:LM-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD373" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_energy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD373"^^xsd:anyURI ; + qudt:latexDefinition "$Q_v = \\int_{0}^{\\Delta t}{\\Phi_v}{dt}$, where $\\Phi_v$ is the luminous flux occurring during the time interval with duration $\\Delta t$."^^qudt:LatexString ; + qudt:plainTextDescription "Luminous Energy is the perceived energy of light. This is sometimes also called the quantity of light." ; + qudt:symbol "Q_v" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Energy"@en ; + skos:closeMatch quantitykind:RadiantEnergy . + +quantitykind:LuminousExitance + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Luminous Exitance}$ is the ratio of the luminous flux dΦ, leaving an element of the surface containing the point, by the area dA of that element. + """^^qudt:LatexString ; + qudt:applicableUnit unit:FC ; + qudt:applicableUnit unit:LUX ; + qudt:applicableUnit unit:PHOT ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:plainTextDescription "Luminous Exitance is the ratio of the luminous flux dΦ, leaving an element of the surface containing the point, by the area dA of that element."@en ; + qudt:plainTextDescription "Quotient aus dem Lichtstrom dΦ, der ein den Punkt enthaltendes Element der Oberfläche verlässt, und der Fläche dA dieses Elementes"@de ; + qudt:symbol "0173-1#Z4-BAJ382#002" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "luminous exitance"@en-US ; + skos:broader quantitykind:LuminousFluxPerArea . + +quantitykind:LuminousExposure + a qudt:QuantityKind ; + dcterms:description "Luminous Exposure is the time-integrated illuminance."^^qudt:LatexString ; + qudt:altSymbol "Hv" ; + qudt:applicableUnit unit:LUX-HR ; + qudt:applicableUnit unit:LUX-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD093" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_energy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD093"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Exposure_(photography)#Photometric_and_radiometric_exposure"^^xsd:anyURI ; + qudt:plainTextDescription "Luminous Exposure is the time-integrated illuminance." ; + qudt:symbol "H_v" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousExposure" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Exposure"@en . + +quantitykind:LuminousFlux + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Luminous Flux}$, or $\\textit{Luminous Power}$, is the measure of the perceived power of light. + It differs from radiant flux, the measure of the total power of light emitted, + in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light. + """^^qudt:LatexString ; + qudt:applicableUnit unit:KiloLM ; + qudt:applicableUnit unit:LM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Luminous_flux"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD094" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_flux"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD094"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\Phi_v = K_m \\int_{0}^{\\infty}{\\Phi_\\lambda(\\lambda)}{V(\\lambda)d\\lambda}$, where $K_m$ is the maximum spectral luminous efficacy, $\\Phi_\\lambda(\\lambda)$ is the spectral radiant flux, $V(\\lambda)$ is the spectral luminous efficiency, and $\\lambda$ is the wavelength."^^qudt:LatexString ; + qudt:plainTextDescription "Luminous Flux or Luminous Power is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light." ; + qudt:siExactMatch si-quantity:LUFL ; + qudt:symbol "F" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Fluks berluminositi"@ms ; + rdfs:label "Lichtstrom"@de ; + rdfs:label "Světelný tok"@cs ; + rdfs:label "fluctús lucis"@la ; + rdfs:label "flujo luminoso"@es ; + rdfs:label "flusso luminoso"@it ; + rdfs:label "flux lumineux"@fr ; + rdfs:label "flux luminos"@ro ; + rdfs:label "fluxo luminoso"@pt ; + rdfs:label "fényáram"@hu ; + rdfs:label "işık akısı"@tr ; + rdfs:label "luminous flux"@en ; + rdfs:label "strumień świetlny"@pl ; + rdfs:label "svetlobni tok"@sl ; + rdfs:label "Светлинен поток"@bg ; + rdfs:label "Световой поток"@ru ; + rdfs:label "שטף הארה"@he ; + rdfs:label "التدفق الضوئي"@ar ; + rdfs:label "شار نوری"@fa ; + rdfs:label "प्रकाशीय बहाव"@hi ; + rdfs:label "光束"@ja ; + rdfs:label "光通量"@zh . + +quantitykind:LuminousFluxPerArea + a qudt:QuantityKind ; + dcterms:description "In photometry, illuminance is the total luminous flux incident on a surface, per unit area. It is a measure of how much the incident light illuminates the surface, wavelength-weighted by the luminosity function to correlate with human brightness perception. Similarly, luminous emittance is the luminous flux per unit area emitted from a surface. In SI derived units these are measured in $lux (lx)$ or $lumens per square metre$ ($cd \\cdot m^{-2}$). In the CGS system, the unit of illuminance is the $phot$, which is equal to $10,000 lux$. The $foot-candle$ is a non-metric unit of illuminance that is used in photography."^^qudt:LatexString ; + qudt:applicableUnit unit:FC ; + qudt:applicableUnit unit:LUX ; + qudt:applicableUnit unit:PHOT ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Illuminance"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Flux per Area"@en . + +quantitykind:LuminousFluxRatio + a qudt:QuantityKind ; + dcterms:description "Luminous Flux Ratio (or Relative Luminous Flux or Relative Luminous Power) is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light. It is expressed as a percentage or fraction of full power."^^qudt:LatexString ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_flux"^^xsd:anyURI ; + qudt:plainTextDescription "Luminous Flux Ratio (or Relative Luminous Flux or Relative Luminous Power) is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light. It is expressed as a percentage or fraction of full power." ; + qudt:qkdvDenominator qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Luminous Flux Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:LuminousIntensity + a qudt:QuantityKind ; + dcterms:description "Luminous Intensity is a measure of the wavelength-weighted power emitted by a light source in a particular direction per unit solid angle. The weighting is determined by the luminosity function, a standardized model of the sensitivity of the human eye to different wavelengths."^^qudt:LatexString ; + qudt:applicableUnit unit:CD ; + qudt:applicableUnit unit:CD_IN ; + qudt:applicableUnit unit:CP ; + qudt:applicableUnit unit:HK ; + qudt:applicableUnit unit:KiloCD ; + qudt:applicableUnit unit:MilliCD ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Luminous_intensity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD095" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD095"^^xsd:anyURI ; + qudt:plainTextDescription "Luminous Intensity is a measure of the wavelength-weighted power emitted by a light source in a particular direction per unit solid angle. The weighting is determined by the luminosity function, a standardized model of the sensitivity of the human eye to different wavelengths." ; + qudt:siExactMatch si-quantity:LUIN ; + qudt:symbol "J" ; + rdfs:comment "Applicable units are those of quantitykind:LuminousIntensity" ; + rdfs:isDefinedBy ; + rdfs:label "Keamatan berluminositi"@ms ; + rdfs:label "Lichtstärke"@de ; + rdfs:label "Svítivost"@cs ; + rdfs:label "fényerősség"@hu ; + rdfs:label "intensidad luminosa"@es ; + rdfs:label "intensidade luminosa"@pt ; + rdfs:label "intensitas luminosa"@la ; + rdfs:label "intensitate luminoasă"@ro ; + rdfs:label "intensità luminosa"@it ; + rdfs:label "intensité lumineuse"@fr ; + rdfs:label "luminous intensity"@en ; + rdfs:label "svetilnost"@sl ; + rdfs:label "ışık şiddeti"@tr ; + rdfs:label "światłość"@pl ; + rdfs:label "Ένταση Φωτεινότητας"@el ; + rdfs:label "Интензитет на светлината"@bg ; + rdfs:label "Сила света"@ru ; + rdfs:label "עוצמת הארה"@he ; + rdfs:label "شدة الإضاءة"@ar ; + rdfs:label "شدت نور"@fa ; + rdfs:label "प्रकाशीय तीव्रता"@hi ; + rdfs:label "光度"@ja ; + rdfs:label "发光强度"@zh . + +quantitykind:LuminousIntensityDistribution + a qudt:QuantityKind ; + dcterms:description "\"Luminous Intensity Distribution\" is a measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves. Usually measured in Candela/Lumen (cd/lm) or (cd/klm)."^^qudt:LatexString ; + qudt:applicableUnit unit:CD-PER-KiloLM ; + qudt:applicableUnit unit:CD-PER-LM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "\"Luminous Intensity Distribution\" is a measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves. Usually measured in Candela/Lumen (cd/lm) or (cd/klm)." ; + rdfs:comment "Applicable units are those of quantitykind:LuminousIntensityDistribution" ; + rdfs:isDefinedBy ; + rdfs:label "Ion Concentration"@en . + +quantitykind:MASS-DELIVERED + a qudt:QuantityKind ; + dcterms:description "The minimum mass a propulsive system can deliver to a specified target or location. Most mass- delivered requirements have associated Delta-V requirements, effectively specifying the path between the two points."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "The minimum mass a propulsive system can deliver to a specified target or location. Most mass- delivered requirements have associated Delta-V requirements, effectively specifying the path between the two points." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Delivered"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MASS-GROWTH-ALLOWANCE + a qudt:QuantityKind ; + dcterms:description "A factor applied to basic mass at the lowest level of design detail available based on type and maturity of hardware according to an approved MGA depletion schedule."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "A factor applied to basic mass at the lowest level of design detail available based on type and maturity of hardware according to an approved MGA depletion schedule." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Growth Allowance"@en ; + skos:altLabel "MGA" ; + skos:broader quantitykind:Mass . + +quantitykind:MASS-MARGIN + a qudt:QuantityKind ; + dcterms:description "Requirement minus predicted value. Margin is used as a metric in risk management. Positive margin mitigates the risk of mass increases from requirements maturation and implementation, underestimated predicted system, or subsystem mass."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Requirement minus predicted value. Margin is used as a metric in risk management. Positive margin mitigates the risk of mass increases from requirements maturation and implementation, underestimated predicted system, or subsystem mass." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Margin"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MASS-PROPERTY-UNCERTAINTY + a qudt:QuantityKind ; + dcterms:description "Variation in predicted MP due to lack of definition, manufacturing variations, environment effects, or accuracy limitation of measuring devices."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Variation in predicted MP due to lack of definition, manufacturing variations, environment effects, or accuracy limitation of measuring devices." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Property Uncertainty"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MOMENT-OF-INERTIA_Y + a qudt:QuantityKind ; + dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-CentiM2 ; + qudt:applicableUnit unit:KiloGM-M2 ; + qudt:applicableUnit unit:KiloGM-MilliM2 ; + qudt:applicableUnit unit:LB-FT2 ; + qudt:applicableUnit unit:LB-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis." ; + qudt:symbol "I_{y}" ; + rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia" ; + rdfs:isDefinedBy ; + rdfs:label "Moment of Inertia in the Y axis"@en ; + skos:altLabel "MOI" ; + skos:broader quantitykind:MomentOfInertia . + +quantitykind:MOMENT-OF-INERTIA_Z + a qudt:QuantityKind ; + dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-CentiM2 ; + qudt:applicableUnit unit:KiloGM-M2 ; + qudt:applicableUnit unit:KiloGM-MilliM2 ; + qudt:applicableUnit unit:LB-FT2 ; + qudt:applicableUnit unit:LB-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis." ; + qudt:symbol "I_{z}" ; + rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia" ; + rdfs:isDefinedBy ; + rdfs:label "Moment of Inertia in the Z axis"@en ; + skos:altLabel "MOI" ; + skos:broader quantitykind:MomentOfInertia . + +quantitykind:MachNumber + a qudt:QuantityKind ; + dcterms:description "\"Mach Number\" is a dimensionless quantity representing the speed of an object moving through air or other fluid divided by the local speed of sound. It is commonly used to represent the speed of an object when it is traveling close to or above the speed of sound. The Mach number is commonly used both with objects traveling at high speed in a fluid, and with high-speed fluid flows inside channels such as nozzles, diffusers or wind tunnels. As it is defined as a ratio of two speeds, it is a dimensionless number."^^qudt:LatexString ; + qudt:applicableUnit unit:MACH ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mach_number"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD364" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mach_number"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD364"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ; + qudt:latexDefinition "$Ma = \\frac{v_o}{c_o}$, where $v_0$ is speed, and $c_o$ is speed of sound."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ; + qudt:plainTextDescription "\"Mach Number\" is a dimensionless quantity representing the speed of an object moving through air or other fluid divided by the local speed of sound. It is commonly used to represent the speed of an object when it is traveling close to or above the speed of sound. The Mach number is commonly used both with objects traveling at high speed in a fluid, and with high-speed fluid flows inside channels such as nozzles, diffusers or wind tunnels. As it is defined as a ratio of two speeds, it is a dimensionless number." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:symbol "Ma" ; + rdfs:comment "Applicable units are those of quantitykind:MachNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Mach number"@en ; + rdfs:label "Mach sayısı"@tr ; + rdfs:label "Mach-Zahl"@de ; + rdfs:label "Machovo číslo"@cs ; + rdfs:label "Machovo število"@sl ; + rdfs:label "Nombor Mach"@ms ; + rdfs:label "liczba Macha"@pl ; + rdfs:label "nombre de Mach"@fr ; + rdfs:label "numero di Mach"@it ; + rdfs:label "număr Mach"@ro ; + rdfs:label "número de Mach"@es ; + rdfs:label "número de Mach"@pt ; + rdfs:label "число Маха"@ru ; + rdfs:label "عدد ماخ"@ar ; + rdfs:label "عدد ماخ"@fa ; + rdfs:label "मैक संख्या"@hi ; + rdfs:label "マッハ数n"@ja ; + rdfs:label "马赫"@zh ; + skos:broader quantitykind:DimensionlessRatio ; + skos:closeMatch . + +quantitykind:MacroscopicCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Macroscopic Cross-section\" is the sum of the cross-sections for a reaction or process of a specified type over all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\sum = n_1\\sigma_1 + \\cdots + n_j\\sigma_j +$, where $n_j$ is the number density and $\\sigma_j$ the cross-section for entities of type $j$."^^qudt:LatexString ; + qudt:latexSymbol "$\\sum$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Macroscopic Cross-section\" is the sum of the cross-sections for a reaction or process of a specified type over all atoms or other entities in a given 3D domain, divided by the volume of that domain." ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Macroscopic Cross-section"@en ; + skos:broader quantitykind:CrossSection . + +quantitykind:MacroscopicTotalCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Macroscopic Total Cross-section\" is the total cross-sections for all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_cross_section"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\sum_{tot}, \\sum_T$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Macroscopic Total Cross-section\" is the total cross-sections for all atoms or other entities in a given 3D domain, divided by the volume of that domain." ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Macroscopic Total Cross-section"@en ; + skos:broader quantitykind:CrossSection . + +quantitykind:MadelungConstant + a qudt:QuantityKind ; + dcterms:description "\"Madelung Constant\" is used in determining the electrostatic potential of a single ion in a crystal by approximating the ions by point charges. It is named after Erwin Madelung, a German physicist."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Madelung_constant"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "For a uni-univalent ionic crystal of specified structure, the binding energy $V_b$ per pair of ions is $V_b = \\alpha\\frac{e^2}{4\\pi \\varepsilon_0 a}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, and $a$ is the lattice constant which should be specified."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Madelung Constant\" is used in determining the electrostatic potential of a single ion in a crystal by approximating the ions by point charges. It is named after Erwin Madelung, a German physicist." ; + rdfs:comment "Applicable units are those of quantitykind:MadelungConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Constante de Madelung"@es ; + rdfs:label "Constante de Madelung"@fr ; + rdfs:label "Costante di Madelung"@it ; + rdfs:label "Madelung constant"@en ; + rdfs:label "Madelung-Konstante"@de ; + rdfs:label "Stała Madelunga"@pl ; + rdfs:label "constante de Madelung"@pt ; + rdfs:label "постоянная Маделунга"@ru ; + rdfs:label "ثابت مادلونك"@ar ; + rdfs:label "ثابت مادلونگ"@fa ; + rdfs:label "マーデルングエネルギー"@ja ; + rdfs:label "馬德隆常數"@zh . + +quantitykind:MagneticAreaMoment + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Area Moment\", for a magnetic dipole, is a vector quantity equal to the product of the current, the loop area, and the unit vector normal to the loop plane, the direction of which corresponds to the loop orientation. \"Magnetic Area Moment\" is also referred to as \"Magnetic Moment\"."^^qudt:LatexString ; + qudt:applicableUnit unit:A-M2 ; + qudt:applicableUnit unit:A_Ab-CentiM2 ; + qudt:applicableUnit unit:EV-PER-T ; + qudt:applicableUnit unit:J-PER-T ; + qudt:exactMatch quantitykind:MagneticMoment ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-49"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$m = I e_n A$, where $I$ is electric current in a small closed loop, $e_n$ is a unit vector perpendicular to the loop, and $A$ is the area of the loop. The magnetic moment of a substance within a domain is the vector sum of the magnetic moments of all entities included in the domain."^^qudt:LatexString ; + qudt:plainTextDescription "\"Magnetic Area Moment\", for a magnetic dipole, is a vector quantity equal to the product of the current, the loop area, and the unit vector normal to the loop plane, the direction of which corresponds to the loop orientation. \"Magnetic Area Moment\" is also referred to as \"Magnetic Moment\"." ; + qudt:symbol "m" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticAreaMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Area Moment"@en . + +quantitykind:MagneticDipoleMoment + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Dipole Moment\" is the magnetic moment of a system is a measure of the magnitude and the direction of its magnetism. Magnetic moment usually refers to its Magnetic Dipole Moment, and quantifies the contribution of the system's internal magnetism to the external dipolar magnetic field produced by the system (that is, the component of the external magnetic field that is inversely proportional to the cube of the distance to the observer). The Magnetic Dipole Moment is a vector-valued quantity. For a particle or nucleus, vector quantity causing an increment $\\Delta W = -\\mu \\cdot B$ to its energy $W$ in an external magnetic field with magnetic flux density $B$."^^qudt:LatexString ; + qudt:applicableUnit unit:N-M2-PER-A ; + qudt:applicableUnit unit:WB-M ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD096" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-55"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD096"^^xsd:anyURI ; + qudt:informativeReference "https://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition """$E_m = -m \\cdot B$, where $E_m$ is the interaction energy of the molecule with magnetic diploe moment $m$ and a magnetic field with magnetic flux density $B$ + +or, + +$J_m = \\mu_0 M$ where $\\mu_0$ is the magnetic constant and $M$ is Magnetization."""^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:symbol "J_m" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticDipoleMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Dipole Moment"@en . + +quantitykind:MagneticDipoleMomentOfAMolecule + a qudt:QuantityKind ; + dcterms:description "Em = -m•B, where Em is the interaction energy of the molecule with the magnetic dipole moment m and a magnetic field with the magnetic induced flux density B"@en ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:plainTextDescription "Em = -m•B, wobei Em die Interaktionsenergie vom Molekül ist mit dem magnetischem Dipolmoment m und einem Magnetfeld mit der magnetischen Induktionsflussdichte B"@de ; + qudt:symbol "0173-1#Z4-BAJ460#001" ; + rdfs:isDefinedBy ; + rdfs:label "magnetic dipole moment of a molecule"@en-US . + +quantitykind:MagneticField + a qudt:QuantityKind ; + dcterms:description "The Magnetic Field, denoted $B$, is a fundamental field in electrodynamics which characterizes the magnetic force exerted by electric currents. It is closely related to the auxillary magnetic field H (see quantitykind:AuxillaryMagneticField)."^^qudt:LatexString ; + qudt:applicableUnit unit:GAMMA ; + qudt:applicableUnit unit:KiloT ; + qudt:applicableUnit unit:T ; + qudt:applicableUnit unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:symbol "B" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticField" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Field"@en . + +quantitykind:MagneticFieldStrength_H + a qudt:QuantityKind ; + dcterms:description "$\\textit{Magnetic Field Strength}$ is a vector quantity obtained at a given point by subtracting the magnetization $M$ from the magnetic flux density $B$ divided by the magnetic constant $\\mu_0$. The magnetic field strength is related to the total current density $J_{tot}$ via: $\\text{rot} H = J_{tot}$."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:AT-PER-IN ; + qudt:applicableUnit unit:AT-PER-M ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:applicableUnit unit:OERSTED ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD098" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-56"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD098"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{H} = \\frac{\\mathbf{B} }{\\mu_0} - M$, where $\\mathbf{B} $ is magnetic flux density, $\\mu_0$ is the magnetic constant and $M$ is magnetization."^^qudt:LatexString ; + qudt:latexSymbol "$\\mathbf{H} $"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:MAFD ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFieldStrength_H" ; + rdfs:isDefinedBy ; + rdfs:label "Câmp magnetic"@ro ; + rdfs:label "Kekuatan medan magnetik"@ms ; + rdfs:label "Magnetické pole"@cs ; + rdfs:label "Manyetik alan"@tr ; + rdfs:label "intensidad de campo magnético"@es ; + rdfs:label "intensidade de campo magnético"@pt ; + rdfs:label "intensità di campo magnetico"@it ; + rdfs:label "intensité de champ magnétique"@fr ; + rdfs:label "jakost magnetnega polja"@sl ; + rdfs:label "magnetic field strength"@en ; + rdfs:label "magnetische Feldstärke"@de ; + rdfs:label "pole magnetyczne"@pl ; + rdfs:label "Магнитное поле"@ru ; + rdfs:label "حقل مغناطيسي"@ar ; + rdfs:label "شدت میدان مغناطیسی"@fa ; + rdfs:label "磁場"@ja ; + rdfs:label "磁場"@zh ; + skos:broader quantitykind:ElectricCurrentPerLength . + +quantitykind:MagneticFlux + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Flux\" is the product of the average magnetic field times the perpendicular area that it penetrates."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-A ; + qudt:applicableUnit unit:KiloWB ; + qudt:applicableUnit unit:MX ; + qudt:applicableUnit unit:MilliWB ; + qudt:applicableUnit unit:N-M-PER-A ; + qudt:applicableUnit unit:UnitPole ; + qudt:applicableUnit unit:V_Ab-SEC ; + qudt:applicableUnit unit:WB ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux"^^xsd:anyURI ; + qudt:expression "$magnetic-flux$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD099" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-1800"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD099"^^xsd:anyURI ; + qudt:latexDefinition "$\\Phi = \\int_S B \\cdot e_n d A$, over a surface $S$, where $B$ is magnetic flux density and $e_n dA$ is the vector surface element."^^qudt:LatexString ; + qudt:latexSymbol "$\\Phi$"^^qudt:LatexString ; + qudt:latexSymbol "$\\phi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Magnetic Flux\" is the product of the average magnetic field times the perpendicular area that it penetrates." ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Fluks magnet"@ms ; + rdfs:label "Flux d'induction magnétique"@fr ; + rdfs:label "Magnetický tok"@cs ; + rdfs:label "flujo magnético"@es ; + rdfs:label "flusso magnetico"@it ; + rdfs:label "flux de inducție magnetică"@ro ; + rdfs:label "fluxo magnético"@pt ; + rdfs:label "fluxus magneticus"@la ; + rdfs:label "magnetic flux"@en ; + rdfs:label "magnetischer Flux"@de ; + rdfs:label "magnetni pretok"@sl ; + rdfs:label "manyetik akı"@tr ; + rdfs:label "mágneses fluxus"@hu ; + rdfs:label "strumień magnetyczny"@pl ; + rdfs:label "Магнитен поток"@bg ; + rdfs:label "Магнитный поток"@ru ; + rdfs:label "שטף מגנטי"@he ; + rdfs:label "التدفق المغناطيسي"@ar ; + rdfs:label "شار مغناطیسی"@fa ; + rdfs:label "चुम्बकीय बहाव"@hi ; + rdfs:label "磁束"@ja ; + rdfs:label "磁通量"@zh . + +quantitykind:MagneticFluxDensity + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Flux Density\" is a vector quantity and is the magnetic flux per unit area of a magnetic field at right angles to the magnetic force. It can be defined in terms of the effects the field has, for example by $B = F/q v \\sin \\theta$, where $F$ is the force a moving charge $q$ would experience if it was travelling at a velocity $v$ in a direction making an angle θ with that of the field. The magnetic field strength is also a vector quantity and is related to $B$ by: $H = B/\\mu$, where $\\mu$ is the permeability of the medium."^^qudt:LatexString ; + qudt:applicableUnit unit:GAMMA ; + qudt:applicableUnit unit:GAUSS ; + qudt:applicableUnit unit:KiloGAUSS ; + qudt:applicableUnit unit:KiloT ; + qudt:applicableUnit unit:MicroT ; + qudt:applicableUnit unit:MilliT ; + qudt:applicableUnit unit:NanoT ; + qudt:applicableUnit unit:T ; + qudt:applicableUnit unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD100" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-1798"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD100"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{F} = qv \\times B$, where $F$ is force and $v$ is velocity of any test particle with electric charge $q$."^^qudt:LatexString ; + qudt:symbol "B" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Densidad de flujo magnético"@es ; + rdfs:label "Densité de flux magnétique"@fr ; + rdfs:label "Ketumpatan fluks magnet"@ms ; + rdfs:label "Magnetická indukce"@cs ; + rdfs:label "densidade de fluxo magnético"@pt ; + rdfs:label "densitas fluxus magnetici"@la ; + rdfs:label "densità di flusso magnetico"@it ; + rdfs:label "gostota magnetnega pretoka"@sl ; + rdfs:label "inducție magnetică"@ro ; + rdfs:label "indukcja magnetyczna"@pl ; + rdfs:label "magnetic flux density"@en ; + rdfs:label "magnetische Flussdichte"@de ; + rdfs:label "manyetik akı yoğunluğu"@tr ; + rdfs:label "mágneses indukció"@hu ; + rdfs:label "Магнитна индукция"@bg ; + rdfs:label "Магнитная индукция"@ru ; + rdfs:label "צפיפות שטף מגנטי"@he ; + rdfs:label "المجال المغناطيسي"@ar ; + rdfs:label "چگالی شار مغناطیسی"@fa ; + rdfs:label "चुम्बकीय क्षेत्र"@hi ; + rdfs:label "磁束密度"@ja ; + rdfs:label "磁通量密度"@zh ; + rdfs:seeAlso quantitykind:MagneticField ; + skos:altLabel "inducción magnética"@es ; + skos:altLabel "magnetische Induktion"@de . + +quantitykind:MagneticFluxDensityOrMagneticPolarization + a qudt:QuantityKind ; + dcterms:description "field vector B which exhibits a force F on any charged particle which has a velocity v, where the force is the product of the vector product v x B and the electric charge Q of the particle or vector quantity equal to the product of the magnetization M and the magnetic constant µ₀"@en ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:plainTextDescription "vektorielle Feldgröße B, die auf jedes geladene Teilchen, das eine Geschwindigkeit v hat, eine Kraft F ausübt, die gleich dem Produkt aus dem Vektorprodukt v x B und der elektrischen Ladung Q des Teilchens ist oder vektorielle Größe gleich dem Produkt aus der Magnetisierung M und der magnetischen Feldkonstante µ₀"@de ; + qudt:symbol "0173-1#Z4-BAJ221#002" ; + rdfs:isDefinedBy ; + rdfs:label "magnetic flux density or magnetic polarization"@en-US . + +quantitykind:MagneticFluxPerLength + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Flux per Length\" is a quantity in the SI and C.G.S. Systems of Quantities."^^qudt:LatexString ; + qudt:applicableUnit unit:N-PER-A ; + qudt:applicableUnit unit:T-M ; + qudt:applicableUnit unit:V-SEC-PER-M ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:plainTextDescription "\"Magnetic Flux per Length\" is a quantity in the SI and C.G.S. Systems of Quantities." ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E-1L2I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFluxPerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic flux per length"@en . + +quantitykind:MagneticMoment + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Moment\", for a magnetic dipole, is a vector quantity equal to the product of the current, the loop area, and the unit vector normal to the loop plane, the direction of which corresponds to the loop orientation. \"Magnetic Moment\" is also referred to as \"Magnetic Area Moment\", and is not to be confused with Magnetic Dipole Moment."^^qudt:LatexString ; + qudt:applicableUnit unit:A-M2 ; + qudt:applicableUnit unit:A_Ab-CentiM2 ; + qudt:applicableUnit unit:EV-PER-T ; + qudt:applicableUnit unit:J-PER-T ; + qudt:exactMatch quantitykind:MagneticAreaMoment ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD097" ; + qudt:iec61360Code "0112/2///62720#UAD101" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-49"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD097"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD101"^^xsd:anyURI ; + qudt:informativeReference "https://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:latexDefinition "$m = I e_n A$, where $I$ is electric current in a small closed loop, $e_n$ is a unit vector perpendicular to the loop, and $A$ is the area of the loop. The magnetic moment of a substance within a domain is the vector sum of the magnetic moments of all entities included in the domain."^^qudt:LatexString ; + qudt:plainTextDescription "\"Magnetic Moment\", for a magnetic dipole, is a vector quantity equal to the product of the current, the loop area, and the unit vector normal to the loop plane, the direction of which corresponds to the loop orientation. \"Magnetic Moment\" is also referred to as \"Magnetic Area Moment\", and is not to be confused with Magnetic Dipole Moment." ; + qudt:symbol "m" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetický dipól"@cs ; + rdfs:label "Manyetik moment"@tr ; + rdfs:label "Momen magnetik"@ms ; + rdfs:label "dipol magnetyczny"@pl ; + rdfs:label "magnetic moment"@en ; + rdfs:label "magnetisches Dipolmoment"@de ; + rdfs:label "moment magnétique"@fr ; + rdfs:label "momento de dipolo magnético"@es ; + rdfs:label "momento de dipolo magnético"@pt ; + rdfs:label "momento di dipolo magnetico"@it ; + rdfs:label "Магнитный момент"@ru ; + rdfs:label "دوقطبی مغناطیسی"@fa ; + rdfs:label "عزم مغناطيسي"@ar ; + rdfs:label "चुम्बकीय द्विध्रुव"@hi ; + rdfs:label "磁偶极"@zh ; + rdfs:label "磁気双極子"@ja ; + skos:altLabel "giromagnetic moment"@en ; + skos:altLabel "momen giromagnetik"@ms ; + skos:altLabel "moment giromagnétique"@fr . + +quantitykind:MagneticPolarization + a qudt:QuantityKind ; + dcterms:description """ +$\\text{Magnetic Polarization}$ is a vector quantity equal to the product of the magnetization $M$ and the magnetic constant $\\mu_0$. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD102" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-54"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD102"^^xsd:anyURI ; + qudt:latexDefinition "$J_m = \\mu_0 M$, where $\\mu_0$ is the magentic constant and $M$ is magnetization."^^qudt:LatexString ; + qudt:latexSymbol "$J_m$"^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Polarization"@en ; + rdfs:seeAlso constant:MagneticConstant ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H ; + rdfs:seeAlso quantitykind:Magnetization . + +quantitykind:MagneticQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Magnetic Quantum Number\" describes the specific orbital (or \"cloud\") within that subshell, and yields the projection of the orbital angular momentum along a specified axis."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Magnetic Quantum Number\" describes the specific orbital (or \"cloud\") within that subshell, and yields the projection of the orbital angular momentum along a specified axis." ; + qudt:symbol "m" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber ; + skos:closeMatch quantitykind:OrbitalAngularMomentumQuantumNumber ; + skos:closeMatch quantitykind:PrincipalQuantumNumber ; + skos:closeMatch quantitykind:SpinQuantumNumber . + +quantitykind:MagneticReluctivity + a qudt:QuantityKind ; + dcterms:description "\"Length Per Unit Magnetic Flux\" is the the resistance of a material to the establishment of a magnetic field in it. It is the reciprocal of $\\textit{Magnetic Permeability}$, the inverse of the measure of the ability of a material to support the formation of a magnetic field within itself."^^qudt:LatexString ; + qudt:applicableUnit unit:M-PER-V-SEC ; + qudt:applicableUnit unit:PER-T-M ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Permeability_(electromagnetism)"^^xsd:anyURI ; + qudt:plainTextDescription "Length Per Unit Magnetic Flux is the the resistance of a material to the establishment of a magnetic field in it. It is the reciprocal of Magnetic Permeability, the inverse of the measure of the ability of a material to support the formation of a magnetic field within itself." ; + rdfs:comment "Applicable units are those of quantitykind:MagneticReluctivity" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Reluctivity"@en ; + rdfs:seeAlso quantitykind:ElectromagneticPermeability . + +quantitykind:MagneticSusceptability + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Susceptability\" is a scalar or tensor quantity the product of which by the magnetic constant $\\mu_0$ and by the magnetic field strength $H$ is equal to the magnetic polarization $J$. The definition given applies to an isotropic medium. For an anisotropic medium permeability is a second order tensor."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:expression "$\\kappa = \\frac{M}{H}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-37"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\kappa = \\frac{M}{H}$, where $M$ is magnetization, and $H$ is magnetic field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MagneticSusceptability" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Susceptability"@en ; + rdfs:seeAlso constant:MagneticConstant ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H ; + rdfs:seeAlso quantitykind:Magnetization . + +quantitykind:MagneticTension + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Tension\" is a scalar quantity equal to the line integral of the magnetic field strength $\\mathbf{H}$ along a specified path linking two points a and b."^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-57"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$U_m = \\int_{r_a(C)}^{r_b} \\mathbf{H} \\cdot dr$, where $\\mathbf{H}$ is magnetic field strength and $r$ is the position vector along a given curve $C$ from point $a$ to point $b$."^^qudt:LatexString ; + qudt:plainTextDescription "Magnetic Tension is a scalar quantity equal to the line integral of the magnetic field strength H along a specified path linking two points a and b." ; + qudt:symbol "U_m" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticTension" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Tension"@en ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H . + +quantitykind:MagneticVectorPotential + a qudt:QuantityKind ; + dcterms:description "\"Magnetic Vector Potential\" is the vector potential of the magnetic flux density. The magnetic vector potential is not unique since any irrotational vector field quantity can be added to a given magnetic vector potential without changing its rotation. Under static conditions the magnetic vector potential is often chosen so that its divergence is zero."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloWB-PER-M ; + qudt:applicableUnit unit:V-SEC-PER-M ; + qudt:applicableUnit unit:WB-PER-M ; + qudt:applicableUnit unit:WB-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD103" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-23"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD103"^^xsd:anyURI ; + qudt:latexDefinition "$B = \\text{rot} A$, where $B$ is magnetic flux density."^^qudt:LatexString ; + qudt:plainTextDescription "\"Magnetic Vector Potential\" is the vector potential of the magnetic flux density. The magnetic vector potential is not unique since any irrotational vector field quantity can be added to a given magnetic vector potential without changing its rotation. Under static conditions the magnetic vector potential is often chosen so that its divergence is zero." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticVectorPotential" ; + rdfs:isDefinedBy ; + rdfs:label "Keupayaan vektor magnetik"@ms ; + rdfs:label "magnetic vector potential"@en ; + rdfs:label "magnetický potenciál"@cs ; + rdfs:label "magnetisches Potenzial"@de ; + rdfs:label "manyetik potansiyeli"@tr ; + rdfs:label "potencial magnético"@es ; + rdfs:label "potencial magnético"@pt ; + rdfs:label "potencjał magnetyczny"@pl ; + rdfs:label "potentiel magnétique"@fr ; + rdfs:label "potenziale vettore magnetico"@it ; + rdfs:label "potențial magnetic"@ro ; + rdfs:label "Магнитний потенциал"@ru ; + rdfs:label "پتانسیل برداری مغناطیسی"@fa ; + rdfs:label "磁向量势"@zh ; + rdfs:seeAlso quantitykind:MagneticFluxDensity . + +quantitykind:Magnetization + a qudt:QuantityKind ; + dcterms:description "\"Magnetization\" is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity."^^qudt:LatexString ; + qudt:altSymbol "H_i" ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-52"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$M = dm/dV$, where $m$ is magentic moment of a substance in a domain with Volume $V$."^^qudt:LatexString ; + qudt:plainTextDescription "\"Magnetization\" is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity." ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetisierung"@de ; + rdfs:label "aimantation"@fr ; + rdfs:label "magnetización"@es ; + rdfs:label "magnetization"@en ; + rdfs:label "magnetização"@pt ; + rdfs:label "magnetizzazione"@it ; + rdfs:label "magnetyzacia"@pl ; + rdfs:label "намагниченность"@ru ; + rdfs:label "مغنطة"@ar ; + rdfs:label "磁化"@ja ; + skos:broader quantitykind:LinearElectricCurrent . + +quantitykind:MagnetizationField + a qudt:QuantityKind ; + dcterms:description "The Magnetization Field is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-CentiM ; + qudt:applicableUnit unit:A-PER-M ; + qudt:applicableUnit unit:A-PER-MilliM ; + qudt:applicableUnit unit:KiloA-PER-M ; + qudt:applicableUnit unit:MilliA-PER-IN ; + qudt:applicableUnit unit:MilliA-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:plainTextDescription "The Magnetization Field is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity." ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetization Field"@en ; + skos:broader quantitykind:ElectricCurrentPerLength . + +quantitykind:MagnetomotiveForce + a qudt:QuantityKind ; + dcterms:description """ +$\\text{Magnetomotive Force}$, also referred to as ($mmf$), is the ability of an electric circuit to produce magnetic flux. + Just as the ability of a battery to produce electric current is called its electromotive force + or emf, mmf is taken as the work required to move a unit magnet pole from any point through any path + which links the electric circuit back the same point in the presence of the magnetic force produced + by the electric current in the circuit. +$\\text{Magnetomotive Force}$ is the scalar line integral of the magnetic field strength along a closed path. + """^^qudt:LatexString ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AT ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GI ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:OERSTED-CentiM ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetomotive_force"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-60"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$F_m = \\oint \\mathbf{H} \\cdot dr$, where $\\mathbf{H}$ is magnetic field strength and $r$ is position vector along a given curve $C$ from point $a$ to point $b$."^^qudt:LatexString ; + qudt:latexSymbol "$F_m $"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MagnetomotiveForce" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetomotive Force"@en ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H . + +quantitykind:Mass + a qudt:QuantityKind ; + dcterms:description "In physics, mass, more specifically inertial mass, can be defined as a quantitative measure of an object's resistance to acceleration. The SI unit of mass is the kilogram ($kg$)"^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD104" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD104"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:MASS ; + qudt:symbol "m" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Hmotnost"@cs ; + rdfs:label "Jisim"@ms ; + rdfs:label "Masse"@de ; + rdfs:label "kütle"@tr ; + rdfs:label "masa"@es ; + rdfs:label "masa"@pl ; + rdfs:label "masa"@sl ; + rdfs:label "mass"@en ; + rdfs:label "massa"@it ; + rdfs:label "massa"@la ; + rdfs:label "massa"@pt ; + rdfs:label "masse"@fr ; + rdfs:label "masă"@ro ; + rdfs:label "tömeg"@hu ; + rdfs:label "Μάζα"@el ; + rdfs:label "Маса"@bg ; + rdfs:label "Масса"@ru ; + rdfs:label "מסה"@he ; + rdfs:label "جرم"@fa ; + rdfs:label "كتلة"@ar ; + rdfs:label "भार"@hi ; + rdfs:label "質量"@ja ; + rdfs:label "质量"@zh . + +quantitykind:MassAbsorptionCoefficient + a qudt:QuantityKind ; + dcterms:description "The mass absorption coefficient is the linear absorption coefficient divided by the density of the absorber."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:informativeReference "http://medical-dictionary.thefreedictionary.com/mass+absorption+coefficient"^^xsd:anyURI ; + qudt:latexDefinition "$a_m = \\frac{a}{\\rho}$, where $a$ is the linear absorption coefficient and $\\rho$ is the mass density of the medium."^^qudt:LatexString ; + qudt:latexSymbol "$a_m$"^^qudt:LatexString ; + qudt:plainTextDescription "The mass absorption coefficient is the linear absorption coefficient divided by the density of the absorber." ; + rdfs:comment "Applicable units are those of quantitykind:MassAbsorptionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Absorption Coefficient"@en . + +quantitykind:MassAmountOfSubstance + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A1E0L0I0M1H0T0D0 ; + rdfs:isDefinedBy ; + rdfs:label "Mass Amount of Substance"@en . + +quantitykind:MassAmountOfSubstanceTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:MOL_LB-DEG_F ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:MassAmountOfSubstanceTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Amount of Substance Temperature"@en . + +quantitykind:MassAttenuationCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Mass Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per unit mass."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-GM ; + qudt:applicableUnit unit:M2-PER-GM ; + qudt:applicableUnit unit:M2-PER-GM_DRY ; + qudt:applicableUnit unit:M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD105" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_attenuation_coefficient"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD105"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_m = \\frac{\\mu}{\\rho}$, where $\\mu$ is the linear attenuation coefficient and $\\rho$ is the mass density of the medium."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_m$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Mass Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per unit mass." ; + rdfs:comment "Applicable units are those of quantitykind:MassAttenuationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Attenuation Coefficient"@en . + +quantitykind:MassConcentration + a qudt:QuantityKind ; + dcterms:description "The \"Mass Concentration\" of substance B is defined as the mass of a constituent divided by the volume of the mixture ."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_concentration_(chemistry)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_B = \\frac{m_B}{V}$, where $m_B$ is the mass of substance $B$ and $V$ is the volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_B$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Mass Concentration\" of substance B is defined as the mass of a constituent divided by the volume of the mixture ." ; + qudt:siExactMatch si-quantity:MACO ; + rdfs:comment "Applicable units are those of quantitykind:MassConcentration" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Concentration"@en . + +quantitykind:MassConcentrationOfWater + a qudt:QuantityKind ; + dcterms:description "\"Mass Concentration of Water\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$w = m/V$, where $m$ is mass of water, irrespective of the form of aggregation, and $V$ is volume. Mass concentration of water at saturation is denoted $w_{sat}$."^^qudt:LatexString ; + qudt:plainTextDescription "Mass Concentration of Water is one of a number of Concentration quantities defined by ISO 80000." ; + qudt:symbol "w" ; + rdfs:comment "Applicable units are those of quantitykind:MassConcentrationOfWater" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Concentration of Water"@en . + +quantitykind:MassConcentrationOfWaterVapour + a qudt:QuantityKind ; + dcterms:description "\"Mass Concentration of Water Vapour\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$w = m/V$, where $m$ is mass of water vapour and $V$ is total gas volume. Mass concentration of water vapour at saturation is denoted $v_{sat}$."^^qudt:LatexString ; + qudt:plainTextDescription "Mass Concentration of Water is one of a number of Concentration quantities defined by ISO 80000." ; + qudt:symbol "v" ; + rdfs:comment "Applicable units are those of quantitykind:MassConcentrationOfWaterVapour" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Concentration of Water Vapour"@en . + +quantitykind:MassConcentrationRateOfChange + a qudt:QuantityKind ; + dcterms:description "the rate at which a specific chemical element or compound changes concentration over time, where with concentration expressed as mass per volume. SI unit is kg * m-3 * s-1" ; + qudt:applicableUnit unit:MicroGM-PER-L-DAY ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:informativeReference "https://pubs.usgs.gov/wri/wri034271"^^xsd:anyURI ; + qudt:plainTextDescription "the rate at which a specific chemical element or compound changes concentration over time, where with concentration expressed as mass per volume. SI unit is kg * m-3 * s-1" ; + qudt:qkdvDenominator qkdv:A0E0L3I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:MassConcentrationRateOfChange" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Concentration Rate Of Change"@en . + +quantitykind:MassDefect + a qudt:QuantityKind ; + dcterms:description "The \"Mass Defect\", also termed mass deficit, or mass packing fraction, describes mass change (decrease) in bound systems, particularly atomic nuclei."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Binding_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$B = Zm(^{1}\\textrm{H}) + Nm_n - m_a$, where $Z$ is the proton number of the atom, $m(^{1}\\textrm{H})$ is atomic mass of $^{1}\\textrm{H}$, $N$ is the neutron number, $m_n$ is the rest mass of the neutron, and $m_a$ is the rest mass of the atom."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Mass Defect\", also termed mass deficit, or mass packing fraction, describes mass change (decrease) in bound systems, particularly atomic nuclei." ; + qudt:symbol "B" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Defect"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MassDensity + a qudt:QuantityKind ; + dcterms:description "The mass density or density of a material is its mass per unit volume."^^qudt:LatexString ; + qudt:applicableUnit unit:DEGREE_BALLING ; + qudt:applicableUnit unit:DEGREE_BAUME ; + qudt:applicableUnit unit:DEGREE_BAUME_US_HEAVY ; + qudt:applicableUnit unit:DEGREE_BAUME_US_LIGHT ; + qudt:applicableUnit unit:DEGREE_BRIX ; + qudt:applicableUnit unit:DEGREE_OECHSLE ; + qudt:applicableUnit unit:DEGREE_PLATO ; + qudt:applicableUnit unit:DEGREE_TWADDELL ; + qudt:applicableUnit unit:FemtoGM-PER-L ; + qudt:applicableUnit unit:GM-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-DeciL ; + qudt:applicableUnit unit:GM-PER-DeciM3 ; + qudt:applicableUnit unit:GM-PER-L ; + qudt:applicableUnit unit:GM-PER-M3 ; + qudt:applicableUnit unit:GM-PER-MilliL ; + qudt:applicableUnit unit:GRAIN-PER-GAL ; + qudt:applicableUnit unit:GRAIN-PER-GAL_US ; + qudt:applicableUnit unit:GRAIN-PER-M3 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3 ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3 ; + qudt:applicableUnit unit:KiloGM-PER-L ; + qudt:applicableUnit unit:KiloGM-PER-M3 ; + qudt:applicableUnit unit:LB-PER-FT3 ; + qudt:applicableUnit unit:LB-PER-GAL ; + qudt:applicableUnit unit:LB-PER-GAL_UK ; + qudt:applicableUnit unit:LB-PER-GAL_US ; + qudt:applicableUnit unit:LB-PER-IN3 ; + qudt:applicableUnit unit:LB-PER-M3 ; + qudt:applicableUnit unit:LB-PER-YD3 ; + qudt:applicableUnit unit:MegaGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-DeciL ; + qudt:applicableUnit unit:MicroGM-PER-L ; + qudt:applicableUnit unit:MicroGM-PER-M3 ; + qudt:applicableUnit unit:MicroGM-PER-MilliL ; + qudt:applicableUnit unit:MilliGM-PER-DeciL ; + qudt:applicableUnit unit:MilliGM-PER-L ; + qudt:applicableUnit unit:MilliGM-PER-M3 ; + qudt:applicableUnit unit:MilliGM-PER-MilliL ; + qudt:applicableUnit unit:NanoGM-PER-DeciL ; + qudt:applicableUnit unit:NanoGM-PER-L ; + qudt:applicableUnit unit:NanoGM-PER-M3 ; + qudt:applicableUnit unit:NanoGM-PER-MicroL ; + qudt:applicableUnit unit:NanoGM-PER-MilliL ; + qudt:applicableUnit unit:OZ-PER-GAL_IMP ; + qudt:applicableUnit unit:OZ-PER-GAL_UK ; + qudt:applicableUnit unit:OZ-PER-GAL_US ; + qudt:applicableUnit unit:OZ-PER-IN3 ; + qudt:applicableUnit unit:OZ-PER-YD3 ; + qudt:applicableUnit unit:PicoGM-PER-L ; + qudt:applicableUnit unit:PicoGM-PER-MilliL ; + qudt:applicableUnit unit:PlanckDensity ; + qudt:applicableUnit unit:SLUG-PER-FT3 ; + qudt:applicableUnit unit:TONNE-PER-M3 ; + qudt:applicableUnit unit:TON_LONG-PER-YD3 ; + qudt:applicableUnit unit:TON_Metric-PER-M3 ; + qudt:applicableUnit unit:TON_SHORT-PER-YD3 ; + qudt:applicableUnit unit:TON_UK-PER-YD3 ; + qudt:applicableUnit unit:TON_US-PER-YD3 ; + qudt:exactMatch quantitykind:Density ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD106" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Density"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD106"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = \\frac{dm}{dV}$, where $m$ is mass and $V$ is volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "The mass density or density of a material is its mass per unit volume." ; + rdfs:comment "Applicable units are those of quantitykind:MassDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Gostôta"@sl ; + rdfs:label "Ketumpatan jisim"@ms ; + rdfs:label "Massendichte"@de ; + rdfs:label "densidad"@es ; + rdfs:label "densidade"@pt ; + rdfs:label "densitate"@ro ; + rdfs:label "densità"@it ; + rdfs:label "densité"@fr ; + rdfs:label "gęstość"@pl ; + rdfs:label "hustota"@cs ; + rdfs:label "mass density"@en ; + rdfs:label "yoğunluk"@tr ; + rdfs:label "плотность"@ru ; + rdfs:label "الكثافة"@ar ; + rdfs:label "چگالی"@fa ; + rdfs:label "घनत्व"@hi ; + rdfs:label "密度"@ja ; + rdfs:label "密度"@zh ; + skos:altLabel " jisim isipadu"@ms ; + skos:altLabel "massa volumica"@it ; + skos:altLabel "volumenbezogene Masse"@de ; + skos:altLabel "volumic mass"@en ; + skos:altLabel "भार घनत्व"@hi . + +quantitykind:MassEnergyTransferCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Mass Energy Transfer Coefficient\" is that fraction of the mass attenuation coefficient which contributes to the production of kinetic energy in charged particles."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:informativeReference "http://physics.nist.gov/PhysRefData/XrayMassCoef/chap3.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\frac{\\mu_{tr}}{\\rho} = -\\frac{1}{\\rho}\\frac{1}{R}\\frac{dR_{tr}}{dl}$, where $dR_{tr}$ is the mean energy that is transferred to kinetic energy of charged particles by interactions of the incident radiation $R$ in traversing a distance $dl$ in the material of density $\\rho$."^^qudt:LatexString ; + qudt:latexSymbol "$\\frac{\\mu_{tr}}{\\rho}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Mass Energy Transfer Coefficient\" is that fraction of the mass attenuation coefficient which contributes to the production of kinetic energy in charged particles." ; + rdfs:comment "Applicable units are those of quantitykind:MassEnergyTransferCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Energy Transfer Coefficient"@en . + +quantitykind:MassExcess + a qudt:QuantityKind ; + dcterms:description "The \"Mass Excess\" of a nuclide is the difference between its actual mass and its mass number in atomic mass units. It is one of the predominant methods for tabulating nuclear mass."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_excess"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\Delta = m_a - Am_u$, where $m_a$ is the rest mass of the atom, $A$ is its nucleon number, and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ; + qudt:latexSymbol "$\\Delta$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Mass Excess\" of a nuclide is the difference between its actual mass and its mass number in atomic mass units. It is one of the predominant methods for tabulating nuclear mass." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Excess"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MassFlowRate + a qudt:QuantityKind ; + dcterms:description "\"Mass Flow Rate\" is a measure of Mass flux. The common symbol is $\\dot{m}$ (pronounced $m-dot$), although sometimes $\\mu$ is used. The SI units are $kg s-1$."^^qudt:LatexString ; + qudt:applicableUnit unit:DYN-SEC-PER-CentiM ; + qudt:applicableUnit unit:GM-PER-DAY ; + qudt:applicableUnit unit:GM-PER-HR ; + qudt:applicableUnit unit:GM-PER-MIN ; + qudt:applicableUnit unit:GM-PER-SEC ; + qudt:applicableUnit unit:KiloGM-PER-DAY ; + qudt:applicableUnit unit:KiloGM-PER-HR ; + qudt:applicableUnit unit:KiloGM-PER-MIN ; + qudt:applicableUnit unit:KiloGM-PER-SEC ; + qudt:applicableUnit unit:KiloGM-PER-YR ; + qudt:applicableUnit unit:KiloLB-PER-HR ; + qudt:applicableUnit unit:KiloTONNE-PER-YR ; + qudt:applicableUnit unit:LB-PER-DAY ; + qudt:applicableUnit unit:LB-PER-HR ; + qudt:applicableUnit unit:LB-PER-MIN ; + qudt:applicableUnit unit:LB-PER-SEC ; + qudt:applicableUnit unit:MegaTONNE-PER-YR ; + qudt:applicableUnit unit:MilliGM-PER-DAY ; + qudt:applicableUnit unit:MilliGM-PER-HR ; + qudt:applicableUnit unit:MilliGM-PER-MIN ; + qudt:applicableUnit unit:MilliGM-PER-SEC ; + qudt:applicableUnit unit:OZ-PER-DAY ; + qudt:applicableUnit unit:OZ-PER-HR ; + qudt:applicableUnit unit:OZ-PER-MIN ; + qudt:applicableUnit unit:OZ-PER-SEC ; + qudt:applicableUnit unit:SLUG-PER-DAY ; + qudt:applicableUnit unit:SLUG-PER-HR ; + qudt:applicableUnit unit:SLUG-PER-MIN ; + qudt:applicableUnit unit:SLUG-PER-SEC ; + qudt:applicableUnit unit:TONNE-PER-DAY ; + qudt:applicableUnit unit:TONNE-PER-HR ; + qudt:applicableUnit unit:TONNE-PER-MIN ; + qudt:applicableUnit unit:TONNE-PER-MO ; + qudt:applicableUnit unit:TONNE-PER-SEC ; + qudt:applicableUnit unit:TONNE-PER-YR ; + qudt:applicableUnit unit:TON_Metric-PER-DAY ; + qudt:applicableUnit unit:TON_Metric-PER-HR ; + qudt:applicableUnit unit:TON_Metric-PER-MIN ; + qudt:applicableUnit unit:TON_Metric-PER-SEC ; + qudt:applicableUnit unit:TON_SHORT-PER-HR ; + qudt:applicableUnit unit:TON_UK-PER-DAY ; + qudt:applicableUnit unit:TON_US-PER-DAY ; + qudt:applicableUnit unit:TON_US-PER-HR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mass_flow_rate"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD107" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_flow_rate"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD107"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$q_m = \\frac{dm}{dt}$, where $m$ is mass and $t$ is time."^^qudt:LatexString ; + qudt:latexSymbol "$\\dot{m}$"^^qudt:LatexString ; + qudt:symbol "q_m" ; + rdfs:comment "Applicable units are those of quantitykind:MassFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Flow Rate"@en ; + rdfs:seeAlso quantitykind:SpecificImpulse . + +quantitykind:MassFluxDensity + a qudt:QuantityKind ; + dcterms:description "product of flow velocity and density"@en ; + qudt:applicableUnit unit:DYN-SEC-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-CentiM2-YR ; + qudt:applicableUnit unit:GM-PER-M2-DAY ; + qudt:applicableUnit unit:GM-PER-M2-HR ; + qudt:applicableUnit unit:GM-PER-M2-YR ; + qudt:applicableUnit unit:GM_Carbon-PER-M2-DAY ; + qudt:applicableUnit unit:GM_Nitrogen-PER-M2-DAY ; + qudt:applicableUnit unit:KiloGM-PER-HA-YR ; + qudt:applicableUnit unit:KiloGM-PER-M2-DAY ; + qudt:applicableUnit unit:KiloGM-PER-M2-SEC ; + qudt:applicableUnit unit:KiloGM-PER-SEC-M2 ; + qudt:applicableUnit unit:MegaGM-PER-HA-YR ; + qudt:applicableUnit unit:MicroGM-PER-CentiM2-WK ; + qudt:applicableUnit unit:MicroGM-PER-M2-DAY ; + qudt:applicableUnit unit:MilliGM-PER-M2-DAY ; + qudt:applicableUnit unit:MilliGM-PER-M2-HR ; + qudt:applicableUnit unit:MilliGM-PER-M2-SEC ; + qudt:applicableUnit unit:NanoGM-PER-CentiM2-DAY ; + qudt:applicableUnit unit:TONNE-PER-HA-YR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD108" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD108"^^xsd:anyURI ; + qudt:plainTextDescription "Produkt aus Strömungsgeschwindigkeit und Dichte"@de ; + qudt:symbol "0173-1#Z4-BAJ264#003" ; + rdfs:comment "Applicable units are those of quantitykind:MassPerAreaTime" ; + rdfs:isDefinedBy ; + rdfs:label "mass flux density" ; + rdfs:label "mass flux density"@en-US ; + skos:broader quantitykind:MassPerAreaTime . + +quantitykind:MassFraction + a qudt:QuantityKind ; + dcterms:description "The \"Mass Fraction\" is the fraction of one substance with mass to the mass of the total mixture ."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_fraction_(chemistry)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$w_B = \\frac{m_B}{m}$, where $m_B$ is the mass of substance $B$ and $m$ is the total."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Mass Fraction\" is the fraction of one substance with mass to the mass of the total mixture ." ; + qudt:symbol "w_B" ; + rdfs:comment "Applicable units are those of quantitykind:MassFraction" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Fraction"@en . + +quantitykind:MassFractionOfDryMatter + a qudt:QuantityKind ; + dcterms:description "\"Mass Fraction of Dry Matter\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$w_d= 1 - w_{h2o}$, where $w_{h2o}$ is mass fraction of water."^^qudt:LatexString ; + qudt:plainTextDescription "\"Mass Fraction of Dry Matter\" is one of a number of Concentration quantities defined by ISO 80000." ; + qudt:symbol "w_d" ; + rdfs:comment "Applicable units are those of quantitykind:MassFractionOfDryMatter" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Fraction of Dry Matter"@en ; + rdfs:seeAlso quantitykind:MassFractionOfWater . + +quantitykind:MassFractionOfWater + a qudt:QuantityKind ; + dcterms:description "\"Mass Fraction of Water\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$w_{H_2o} = \\frac{u}{1+u}$, where $u$ is mass ratio of water to dry water."^^qudt:LatexString ; + qudt:plainTextDescription "Mass Fraction of Water is one of a number of Concentration quantities defined by ISO 80000." ; + qudt:symbol "w_{H_2o}" ; + rdfs:comment "Applicable units are those of quantitykind:MassFractionOfWater" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Fraction of Water"@en ; + rdfs:seeAlso quantitykind:MassFractionOfDryMatter . + +quantitykind:MassNumber + a qudt:QuantityKind ; + dcterms:description "The \"Mass Number\" (A), also called atomic mass number or nucleon number, is the total number of protons and neutrons (together known as nucleons) in an atomic nucleus. Nuclides with the same value of $A$ are called isobars."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$A = Z + N$, where $Z$ is the atomic number and $N$ is the neutron number."^^qudt:LatexString ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:MassNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Number"@en ; + skos:broader quantitykind:Count . + +quantitykind:MassOfElectricalPowerSupply + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_{E}" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Of Electrical Power Supply"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MassOfSolidBooster + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_{SB}" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Of Solid Booster"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MassOfTheEarth + a qudt:QuantityKind ; + dcterms:description "Earth mass is the unit of mass equal to that of the Earth. Earth mass is often used to describe masses of rocky terrestrial planets."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:latexSymbol "$M_{\\oplus}$"^^qudt:LatexString ; + qudt:plainTextDescription "Earth mass is the unit of mass equal to that of the Earth. Earth mass is often used to describe masses of rocky terrestrial planets." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Of The Earth"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MassPerArea + a qudt:QuantityKind ; + dcterms:description "The area density (also known as areal density, surface density, or superficial density) of a two-dimensional object is calculated as the mass per unit area. The SI derived unit is: kilogram per square metre ($kg \\cdot m^{-2}$)."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-CentiM2 ; + qudt:applicableUnit unit:GM-PER-HA ; + qudt:applicableUnit unit:GM-PER-M2 ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-FT2 ; + qudt:applicableUnit unit:KiloGM-PER-HA ; + qudt:applicableUnit unit:KiloGM-PER-KiloM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-AC ; + qudt:applicableUnit unit:LB-PER-FT2 ; + qudt:applicableUnit unit:LB-PER-IN2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:MegaGM-PER-HA ; + qudt:applicableUnit unit:MicroGM-PER-CentiM2 ; + qudt:applicableUnit unit:MicroGM-PER-IN2 ; + qudt:applicableUnit unit:MilliGM-PER-CentiM2 ; + qudt:applicableUnit unit:MilliGM-PER-DeciM2 ; + qudt:applicableUnit unit:MilliGM-PER-HA ; + qudt:applicableUnit unit:MilliGM-PER-M2 ; + qudt:applicableUnit unit:NanoGM-PER-CentiM2 ; + qudt:applicableUnit unit:OZ-PER-FT2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:applicableUnit unit:OZ-PER-YD2 ; + qudt:applicableUnit unit:SLUG-PER-FT2 ; + qudt:applicableUnit unit:TONNE-PER-HA ; + qudt:applicableUnit unit:TON_Metric-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Area_density"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_A = \\frac {m} {A}$"^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_A $"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MassPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Area"@en . + +quantitykind:MassPerAreaTime + a qudt:QuantityKind ; + dcterms:description "In Physics and Engineering, mass flux is the rate of mass flow per unit area. The common symbols are $j$, $J$, $\\phi$, or $\\Phi$ (Greek lower or capital Phi), sometimes with subscript $m$ to indicate mass is the flowing quantity. Its SI units are $ kg s^{-1} m^{-2}$."^^qudt:LatexString ; + qudt:applicableUnit unit:DYN-SEC-PER-CentiM3 ; + qudt:applicableUnit unit:GM-PER-CentiM2-YR ; + qudt:applicableUnit unit:GM-PER-M2-DAY ; + qudt:applicableUnit unit:GM-PER-M2-HR ; + qudt:applicableUnit unit:GM-PER-M2-YR ; + qudt:applicableUnit unit:GM_Carbon-PER-M2-DAY ; + qudt:applicableUnit unit:GM_Nitrogen-PER-M2-DAY ; + qudt:applicableUnit unit:KiloGM-PER-HA-YR ; + qudt:applicableUnit unit:KiloGM-PER-M2-DAY ; + qudt:applicableUnit unit:KiloGM-PER-M2-SEC ; + qudt:applicableUnit unit:KiloGM-PER-SEC-M2 ; + qudt:applicableUnit unit:MegaGM-PER-HA-YR ; + qudt:applicableUnit unit:MicroGM-PER-CentiM2-WK ; + qudt:applicableUnit unit:MicroGM-PER-M2-DAY ; + qudt:applicableUnit unit:MilliGM-PER-M2-DAY ; + qudt:applicableUnit unit:MilliGM-PER-M2-HR ; + qudt:applicableUnit unit:MilliGM-PER-M2-SEC ; + qudt:applicableUnit unit:NanoGM-PER-CentiM2-DAY ; + qudt:applicableUnit unit:TONNE-PER-HA-YR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_flux"^^xsd:anyURI ; + qudt:latexSymbol "$j_m = \\lim\\limits_{A \\rightarrow 0}\\frac{I_m}{A}$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MassPerAreaTime" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Area Time"@en . + +quantitykind:MassPerElectricCharge + a qudt:QuantityKind ; + dcterms:description "The mass-to-charge ratio ratio ($m/Q$) is a physical quantity that is widely used in the electrodynamics of charged particles, for example, in electron optics and ion optics. The importance of the mass-to-charge ratio, according to classical electrodynamics, is that two particles with the same mass-to-charge ratio move in the same path in a vacuum when subjected to the same electric and magnetic fields. Its SI units are $kg/C$, but it can also be measured in Thomson ($Th$)."^^qudt:LatexString ; + qudt:applicableUnit unit:T-SEC ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass-to-charge_ratio"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MassPerElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Electric Charge"@en . + +quantitykind:MassPerEnergy + a qudt:QuantityKind ; + dcterms:description "Mass per Energy ($m/E$) is a physical quantity that bridges mass and energy. The SI unit is $kg/J$ or equivalently $s^2/m^2$."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-CentiM3-BAR ; + qudt:applicableUnit unit:GM-PER-DeciM3-BAR ; + qudt:applicableUnit unit:GM-PER-L-BAR ; + qudt:applicableUnit unit:GM-PER-M3-BAR ; + qudt:applicableUnit unit:GM-PER-MilliL-BAR ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3-BAR ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3-BAR ; + qudt:applicableUnit unit:KiloGM-PER-GigaJ ; + qudt:applicableUnit unit:KiloGM-PER-J ; + qudt:applicableUnit unit:KiloGM-PER-L-BAR ; + qudt:applicableUnit unit:KiloGM-PER-M3-BAR ; + qudt:applicableUnit unit:KiloGM-PER-M3-PA ; + qudt:applicableUnit unit:KiloGM-PER-MegaBTU_IT ; + qudt:applicableUnit unit:LB-PER-FT3-PSI ; + qudt:applicableUnit unit:LB-PER-IN3-PSI ; + qudt:applicableUnit unit:MicroGM-PER-M3-BAR ; + qudt:applicableUnit unit:MilliGM-PER-M3-BAR ; + qudt:applicableUnit unit:TONNE-PER-M3-BAR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:plainTextDescription "Mass per Energy is a physical quantity that can be used to relate the energy of a system to its mass." ; + rdfs:comment "Applicable units are those of quantitykind:MassPerEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Energy"@en . + +quantitykind:MassPerLength + a qudt:QuantityKind ; + dcterms:description "Linear density, linear mass density or linear mass is a measure of mass per unit of length, and it is a characteristic of strings or other one-dimensional objects. The SI unit of linear density is the kilogram per metre ($kg/m$)."^^qudt:LatexString ; + qudt:applicableUnit unit:DENIER ; + qudt:applicableUnit unit:GM-PER-KiloM ; + qudt:applicableUnit unit:GM-PER-M ; + qudt:applicableUnit unit:GM-PER-MilliM ; + qudt:applicableUnit unit:KiloGM-PER-M ; + qudt:applicableUnit unit:KiloGM-PER-MilliM ; + qudt:applicableUnit unit:LB-PER-FT ; + qudt:applicableUnit unit:LB-PER-IN ; + qudt:applicableUnit unit:MilliGM-PER-M ; + qudt:applicableUnit unit:SLUG-PER-FT ; + qudt:applicableUnit unit:TEX ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Linear_density"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:MassPerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Length"@en . + +quantitykind:MassPerTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloGM-PER-HR ; + qudt:applicableUnit unit:KiloGM-PER-SEC ; + qudt:applicableUnit unit:KiloLB-PER-HR ; + qudt:applicableUnit unit:LB-PER-HR ; + qudt:applicableUnit unit:LB-PER-MIN ; + qudt:applicableUnit unit:N-SEC-PER-M ; + qudt:applicableUnit unit:NanoGM-PER-DAY ; + qudt:applicableUnit unit:SLUG-PER-SEC ; + qudt:applicableUnit unit:TONNE-PER-MO ; + qudt:applicableUnit unit:TONNE-PER-YR ; + qudt:applicableUnit unit:TON_SHORT-PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:MassPerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Mass per Time"@en . + +quantitykind:MassRatio + a qudt:QuantityKind ; + dcterms:description "In aerospace engineering, mass ratio is a measure of the efficiency of a rocket. It describes how much more massive the vehicle is with propellant than without; that is, it is the ratio of the rocket's wet mass (vehicle plus contents plus propellant) to its dry mass (vehicle plus contents)"^^qudt:LatexString ; + qudt:applicableUnit unit:FemtoGM-PER-KiloGM ; + qudt:applicableUnit unit:GM-PER-GM ; + qudt:applicableUnit unit:GM-PER-HectoGM ; + qudt:applicableUnit unit:GM-PER-KiloGM ; + qudt:applicableUnit unit:KiloGM-PER-KiloGM ; + qudt:applicableUnit unit:LB-PER-LB ; + qudt:applicableUnit unit:MicroGM-PER-GM ; + qudt:applicableUnit unit:MicroGM-PER-KiloGM ; + qudt:applicableUnit unit:MicroGM-PER-MilliGM ; + qudt:applicableUnit unit:MilliGM-PER-GM ; + qudt:applicableUnit unit:MilliGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-MilliGM ; + qudt:applicableUnit unit:PicoGM-PER-GM ; + qudt:applicableUnit unit:PicoGM-PER-KiloGM ; + qudt:applicableUnit unit:PicoGM-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD109" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD109"^^xsd:anyURI ; + qudt:plainTextDescription "In aerospace engineering, mass ratio is a measure of the efficiency of a rocket. It describes how much more massive the vehicle is with propellant than without; that is, it is the ratio of the rocket's wet mass (vehicle plus contents plus propellant) to its dry mass (vehicle plus contents)" ; + qudt:symbol "R or M_{R}" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Ratio"@en . + +quantitykind:MassRatioOfWaterToDryMatter + a qudt:QuantityKind ; + dcterms:description "\"Mass Ratio of Water to Dry Matter\" is one of a number of $\\textit{Concentration Ratio}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$u = m/m_d$, where $m$ is mass of water vapour and $m_d$ is mass of dry matter. Mass ratio of water to dry matter at saturation is denoted $u_{sat}$."^^qudt:LatexString ; + qudt:plainTextDescription "Mass Ratio of Water to Dry Matter is one of a number of Concentration Ratio quantities defined by ISO 80000." ; + qudt:symbol "u" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatioOfWaterToDryMatter" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Concentration of Water To Dry Matter"@en . + +quantitykind:MassRatioOfWaterVapourToDryGas + a qudt:QuantityKind ; + dcterms:description "\"Mass Ratio of Water Vapour to Dry Gas\" is one of a number of $\\textit{Concentration Ratio}$ quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$x = m/m_d$, where $m$ is mass of water vapour and $m_d$ is mass of dry gas. Mass ratio of water vapour to dry gas at saturation is denoted $x_{sat}$."^^qudt:LatexString ; + qudt:plainTextDescription "Mass Ratio of Water Vapour to Dry Gas is one of a number of Concentration Ratio quantities defined by ISO 80000." ; + qudt:symbol "x" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatioOfWaterVapourToDryGas" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Ratio of Water Vapour to Dry Gas"@en . + +quantitykind:MassRelatedElectricalCurrent + a qudt:QuantityKind ; + dcterms:description "electrical current intensity divided by the associated mass"@en ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:plainTextDescription "elektrische Stromstärke dividiert durch die zugehörige Masse"@de ; + qudt:symbol "0173-1#Z4-BAJ347#002" ; + rdfs:isDefinedBy ; + rdfs:label "mass-related electrical current"@en-US . + +quantitykind:MassSpecificBiogeochemicalRate + a qudt:QuantityKind ; + dcterms:description "the rate at which a specific chemical element or compound is processed or transformed within an ecosystem, calculated per unit mass of the relevant biological material. Unreduced, SI unit is kg * kg-1 * s-1" ; + qudt:applicableUnit unit:MicroGM-PER-GM-DAY ; + qudt:applicableUnit unit:MicroGM-PER-GM-HR ; + qudt:applicableUnit unit:MilliGM-PER-GM-HR ; + qudt:applicableUnit unit:MilliGM-PER-KiloGM-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://esajournals.onlinelibrary.wiley.com/doi/10.1002/ecs2.2228"^^xsd:anyURI ; + qudt:plainTextDescription "the rate at which a specific chemical element or compound is processed or transformed within an ecosystem, calculated per unit mass of the relevant biological material. Unreduced, SI unit is g * g-1 * s-1" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:MassSpecificBiogeochemicalRate" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Specific Biogeochemical Rate"@en . + +quantitykind:MassStoppingPower + a qudt:QuantityKind ; + qudt:applicableUnit unit:ERG-CentiM2 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD130" ; + qudt:iec61360Code "0112/2///62720#UAD290" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD130"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD290"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MassStoppingPower" ; + rdfs:isDefinedBy ; + rdfs:label "mass stopping power" . + +quantitykind:MassTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloGM-K ; + qudt:applicableUnit unit:LB-DEG_F ; + qudt:applicableUnit unit:LB-DEG_R ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:MassTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Mass Temperature"@en . + +quantitykind:MassicActivity + a qudt:QuantityKind ; + dcterms:description "\"Massic Activity\" is the activity divided by the total mass of the sample."^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-PER-KiloGM ; + qudt:applicableUnit unit:CI-PER-KiloGM ; + qudt:applicableUnit unit:KiloBQ-PER-KiloGM ; + qudt:applicableUnit unit:MegaBQ-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD110" ; + qudt:informativeReference "http://www.encyclo.co.uk/define/massic%20activity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD110"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Massic Activity\" is the activity divided by the total mass of the sample." ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:MassicActivity" ; + rdfs:isDefinedBy ; + rdfs:label "Massic Activity"@en . + +quantitykind:MassicElectricCurrent + a qudt:QuantityKind ; + qudt:applicableUnit unit:A-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD111" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD111"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MassicElectricCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "massic electric current" . + +quantitykind:MassicHeatCapacity + a qudt:QuantityKind ; + dcterms:description "ratio of heat capacity divided by mass"@en ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_R ; + qudt:applicableUnit unit:KiloCAL_IT-PER-GM-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD112" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD112"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient Wärmekapazität dividiert durch Masse"@de ; + qudt:symbol "0173-1#Z4-BAJ345#002" ; + rdfs:comment "Applicable units are those of quantitykind:MassicHeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "massic heat capacity" ; + rdfs:label "massic heat capacity"@en-US . + +quantitykind:MassicPower + a qudt:QuantityKind ; + dcterms:description "ratio energy divided by time and related mass"@en ; + qudt:applicableUnit unit:ERG-PER-GM-SEC ; + qudt:applicableUnit unit:GRAY-PER-HR ; + qudt:applicableUnit unit:GRAY-PER-MIN ; + qudt:applicableUnit unit:GRAY-PER-SEC ; + qudt:applicableUnit unit:MicroGRAY-PER-HR ; + qudt:applicableUnit unit:MicroGRAY-PER-MIN ; + qudt:applicableUnit unit:MicroGRAY-PER-SEC ; + qudt:applicableUnit unit:MicroSV-PER-MIN ; + qudt:applicableUnit unit:MicroSV-PER-SEC ; + qudt:applicableUnit unit:MilliGRAY-PER-HR ; + qudt:applicableUnit unit:MilliGRAY-PER-MIN ; + qudt:applicableUnit unit:MilliGRAY-PER-SEC ; + qudt:applicableUnit unit:MilliRAD_R-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-MIN ; + qudt:applicableUnit unit:MilliSV-PER-SEC ; + qudt:applicableUnit unit:MilliW-PER-MilliGM ; + qudt:applicableUnit unit:NanoGRAY-PER-HR ; + qudt:applicableUnit unit:NanoGRAY-PER-MIN ; + qudt:applicableUnit unit:NanoGRAY-PER-SEC ; + qudt:applicableUnit unit:NanoSV-PER-HR ; + qudt:applicableUnit unit:NanoSV-PER-MIN ; + qudt:applicableUnit unit:NanoSV-PER-SEC ; + qudt:applicableUnit unit:REM-PER-SEC ; + qudt:applicableUnit unit:SV-PER-HR ; + qudt:applicableUnit unit:SV-PER-MIN ; + qudt:applicableUnit unit:SV-PER-SEC ; + qudt:applicableUnit unit:W-PER-GM ; + qudt:applicableUnit unit:W-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD113" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD113"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient Energie durch Zeit und durch zugehöriger Masse"@de ; + qudt:symbol "0173-1#Z4-BAJ343#002" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificPower" ; + rdfs:isDefinedBy ; + rdfs:label "massic power" ; + rdfs:label "massic power"@en-US ; + skos:broader quantitykind:SpecificPower . + +quantitykind:MassicTorque + a qudt:QuantityKind ; + dcterms:description "ratio of torque divided by the mass to be moved"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD114" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD114"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient Drehmoment dividiert durch die Masse, die bewegt oder befördert wird"@de ; + qudt:symbol "0173-1#Z4-BAJ442#002" ; + rdfs:isDefinedBy ; + rdfs:label "massic torque" ; + rdfs:label "massic torque"@en-US . + +quantitykind:MassieuFunction + a qudt:QuantityKind ; + dcterms:description "The Massieu function, $\\Psi$, is defined as: $\\Psi = \\Psi (X_1, \\dots , X_i, Y_{i+1}, \\dots , Y_r )$, where for every system with degree of freedom $r$ one may choose $r$ variables, e.g. , to define a coordinate system, where $X$ and $Y$ are extensive and intensive variables, respectively, and where at least one extensive variable must be within this set in order to define the size of the system. The $(r + 1)^{th}$ variable,$\\Psi$ , is then called the Massieu function."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Massieu_function"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$J = -A/T$, where $A$ is Helmholtz energy and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:symbol "J" ; + rdfs:isDefinedBy ; + rdfs:label "Massieu Function"@en ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy . + +quantitykind:MaxExpectedOperatingThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Maximum Expected Operating Thrust"@en ; + skos:altLabel "MEOT" ; + skos:broader quantitykind:MaxOperatingThrust . + +quantitykind:MaxOperatingThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Max Operating Thrust"@en ; + skos:altLabel "MOT" ; + skos:broader quantitykind:Thrust . + +quantitykind:MaxSeaLevelThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:comment "Max Sea Level thrust (Mlbf) " ; + rdfs:isDefinedBy ; + rdfs:label "Max Sea Level Thrust"@en ; + skos:broader quantitykind:Thrust . + +quantitykind:MaximumBeta-ParticleEnergy + a qudt:QuantityKind ; + dcterms:description "\"Maximum Beta-Particle Energy\" is the maximum energy of the energy spectrum in a beta-particle disintegration process."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Maximum Beta-Particle Energy\" is the maximum energy of the energy spectrum in a beta-particle disintegration process." ; + qudt:symbol "Eᵦ" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Maximum Beta-Particle Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:MaximumExpectedOperatingPressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Maximum Expected Operating Pressure"@en ; + skos:altLabel "MEOP" ; + skos:broader quantitykind:Pressure . + +quantitykind:MaximumOperatingPressure + a qudt:QuantityKind ; + qudt:abbreviation "MOP" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Maximum Operating Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:MeanEnergyImparted + a qudt:QuantityKind ; + dcterms:description "The \"Mean Energy Imparted\", is the average energy imparted to irradiated matter."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ; + qudt:latexDefinition "To the matter in a given domain, $\\bar{\\varepsilon} = R_{in} - R_{out} + \\sum Q$, where $R_{in}$ is the radiant energy of all those charged and uncharged ionizing particles that enter the domain, $R_{out}$ is the radiant energy of all those charged and uncharged ionizing particles that leave the domain, and $\\sum Q$ is the sum of all changes of the rest energy of nuclei and elementary particles that occur in that domain."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Mean Energy Imparted\", is the average energy imparted to irradiated matter." ; + qudt:symbol "ε̅" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Energy Imparted"@en ; + skos:broader quantitykind:Energy . + +quantitykind:MeanFreePath + a qudt:QuantityKind ; + dcterms:description "\"Mean Free Path\" is the average distance travelled by a moving particle (such as an atom, a molecule, a photon) between successive impacts (collisions) which modify its direction or energy or other particle properties."^^qudt:LatexString ; + qudt:abbreviation "m" ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mean_free_path"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Mean Free Path\" is the average distance travelled by a moving particle (such as an atom, a molecule, a photon) between successive impacts (collisions) which modify its direction or energy or other particle properties." ; + qudt:symbol "λ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Free Path"@en ; + skos:broader quantitykind:Length . + +quantitykind:MeanLifetime + a qudt:QuantityKind ; + dcterms:description "The \"Mean Lifetime\" is the average length of time that an element remains in the set of discrete elements in a decaying quantity, $N(t)$."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Exponential_decay"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\tau = \\frac{1}{\\lambda}$, where $\\lambda$ is the decay constant."^^qudt:LatexString ; + qudt:latexSymbol "$\\tau$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Lifetime"@en ; + skos:broader quantitykind:Time . + +quantitykind:MeanLinearRange + a qudt:QuantityKind ; + dcterms:description "\"Mean Linear Range\" is, in a given material, for specified charged particles of a specified energy, the average displacement of the particles before they stop. That is, the mean totl rectified path length travelled by a particle in the course of slowing down to rest (or to some suitable cut-off energy) in a given substance under specified conditions averaged over a group of particles having the same initial energy."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://goldbook.iupac.org/M03782.html"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Mean Linear Range\" is, in a given material, for specified charged particles of a specified energy, the average displacement of the particles before they stop. That is, the mean totl rectified path length travelled by a particle in the course of slowing down to rest (or to some suitable cut-off energy) in a given substance under specified conditions averaged over a group of particles having the same initial energy." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Linear Range"@en ; + skos:broader quantitykind:Length . + +quantitykind:MeanMassRange + a qudt:QuantityKind ; + dcterms:description "\"Mean Mass Range\" is the mean linear range multiplied by the mass density of the material."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-IN2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:informativeReference "http://goldbook.iupac.org/M03783.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$R_\\rho = R\\rho$, where $R$ is the mean linear range and $\\rho$ is the mass density of the sample."^^qudt:LatexString ; + qudt:latexSymbol "$R_\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Mean Mass Range\" is the mean linear range multiplied by the mass density of the material." ; + rdfs:comment "Applicable units are those of quantitykind:MeanMassRange" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Mass Range"@en . + +quantitykind:MechanicalEnergy + a qudt:QuantityKind ; + dcterms:description "Mechanical Energy is the sum of potential energy and kinetic energy. It is the energy associated with the motion and position of an object."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mechanical_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mechanical_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$E = T + V$, where $T$ is kinetic energy and $V$ is potential energy."^^qudt:LatexString ; + qudt:plainTextDescription "Mechanical Energy is the sum of potential energy and kinetic energy. It is the energy associated with the motion and position of an object." ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Mechanical Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:MechanicalImpedance + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD115" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD115"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Mechanical Impedance"@en . + +quantitykind:MechanicalMobility + a qudt:QuantityKind ; + qudt:applicableUnit unit:MOHM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:MechanicalMobility" ; + rdfs:isDefinedBy ; + rdfs:label "Mechanical Mobility"@en . + +quantitykind:MechanicalSurfaceImpedance + a qudt:QuantityKind ; + dcterms:description "Mechanical surface impedance at a surface, is the complex quotient of the total force on the surface by the component of the average sound particle velocity at the surface in the direction of the force"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:latexDefinition "$Z_m = Z_a A^2$, where $A$ is the area of the surface considered and $Z_a$ is the acoustic impedance."^^qudt:LatexString ; + qudt:plainTextDescription "Mechanical surface impedance at a surface, is the complex quotient of the total force on the surface by the component of the average sound particle velocity at the surface in the direction of the force" ; + qudt:symbol "Z" ; + rdfs:comment "There are various interpretations of MechanicalSurfaceImpedance: Pressure/Velocity - https://apps.dtic.mil/sti/pdfs/ADA315595.pdf, Force / Speed - https://www.wikidata.org/wiki/Q6421317, and (Pressure / Velocity)**0.5 - https://www.sciencedirect.com/topics/engineering/mechanical-impedance. We are seeking a resolution to these differences." ; + rdfs:isDefinedBy ; + rdfs:label "Mechanical surface impedance"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:MechanicalTension + a qudt:QuantityKind ; + dcterms:description "at a point of a body upon which a force acts which attempts to change the shape of the body, the limit value of the ratio between the force and area of a flat surface around this point when the dimensions approach zero"@en ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:plainTextDescription "an einem Punkt eines Körpers, an dem eine Kraft angreift, welche die Form des Körpers zu verändern sucht, der Grenzwert des Quotienten Kraft durch Fläche einer ebenen Oberfläche um diesen Punkt, wenn deren Abmessungen gegen null gehen"@de ; + qudt:symbol "0173-1#Z4-BAJ204#005" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "mechanical tension"@en-US ; + skos:broader quantitykind:ForcePerArea . + +quantitykind:MeltingPoint + a qudt:QuantityKind ; + dcterms:description "A temperature that is the one at which a substance will change its physical state from a solid to a liquid. It is also the temperature where the solid and liquid forms of a pure substance can exist in equilibrium."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:plainTextDescription "A temperature that is the one at which a substance will change its physical state from a solid to a liquid. It is also the temperature where the solid and liquid forms of a pure substance can exist in equilibrium." ; + rdfs:comment "Applicable units are those of quantitykind:MeltingPoint" ; + rdfs:isDefinedBy ; + rdfs:label "Melting Point Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:MicroCanonicalPartitionFunction + a qudt:QuantityKind ; + dcterms:description "A \"Micro Canonical Partition Function\" applies to a micro canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and a fixed number of particles."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Microcanonical_ensemble"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Partition_function_(statistical_mechanics)#Grand_canonical_partition_function"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\Omega = \\sum_r 1$, where the sum is over all quantum states consistent with given energy. volume, external fields, and content."^^qudt:LatexString ; + qudt:latexSymbol "$\\Omega$"^^qudt:LatexString ; + qudt:plainTextDescription "A \"Micro Canonical Partition Function\" applies to a micro canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and a fixed number of particles." ; + rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Micro Canonical Partition Function"@en ; + skos:broader quantitykind:CanonicalPartitionFunction . + +quantitykind:MicrobialFormation + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:isDefinedBy ; + rdfs:label "Microbial Formation"@en . + +quantitykind:MigrationArea + a qudt:QuantityKind ; + dcterms:description "\"Migration Area\" is the sum of the slowing-down area from fission energy to thermal energy and the diffusion area for thermal neutrons."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/migration+area"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Migration Area\" is the sum of the slowing-down area from fission energy to thermal energy and the diffusion area for thermal neutrons." ; + qudt:symbol "M^2" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Migration Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:MigrationLength + a qudt:QuantityKind ; + dcterms:description "\"Migration Length\" is the square root of the migration area."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/migration+area"^^xsd:anyURI ; + qudt:latexDefinition "$M = \\sqrt{M^2}$, where $M^2$ is the migration area."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Migration Length\" is the square root of the migration area." ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Migration Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:Mobility + a qudt:QuantityKind ; + dcterms:description "\"Mobility\" characterizes how quickly a particle can move through a metal or semiconductor, when pulled by an electric field. The average drift speed imparted to a charged particle in a medium by an electric field, divided by the electric field strength."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-V-SEC ; + qudt:applicableUnit unit:M2-PER-V-SEC ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_mobility"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Mobility\" characterizes how quickly a particle can move through a metal or semiconductor, when pulled by an electric field. The average drift speed imparted to a charged particle in a medium by an electric field, divided by the electric field strength." ; + rdfs:comment "Applicable units are those of quantitykind:Mobility" ; + rdfs:isDefinedBy ; + rdfs:label "Beweglichkeit"@de ; + rdfs:label "mobilidade"@pt ; + rdfs:label "mobility"@en ; + rdfs:label "mobilità"@it ; + rdfs:label "mobilité"@fr ; + rdfs:label "mobilność"@pl ; + rdfs:label "movilidad"@es ; + rdfs:label "قابلية التحرك"@ar ; + rdfs:label "移動度"@ja ; + rdfs:label "迁移率"@zh ; + skos:altLabel "Mobilität"@de . + +quantitykind:MobilityRatio + a qudt:QuantityKind ; + dcterms:description "\"MobilityRatio\" describes permeability of a porous material to a given phase divided by the viscosity of that phase."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$b = \\frac{\\mu_n}{\\mu_p}$, where $\\mu_n$ and $\\mu_p$ are mobilities for electrons and holes, respectively."^^qudt:LatexString ; + qudt:plainTextDescription "\"MobilityRatio\" describes permeability of a porous material to a given phase divided by the viscosity of that phase." ; + qudt:symbol "b" ; + rdfs:comment "Applicable units are those of quantitykind:MobilityRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Mobility Ratio"@en . + +quantitykind:ModulusOfAdmittance + a qudt:QuantityKind ; + dcterms:description "\"Modulus Of Admittance\" is the absolute value of the quantity \"admittance\"."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_value"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Admittance"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-51"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$Y = \\left | \\underline{Y} \\right |$, where $\\underline{Y}$ is admittance."^^qudt:LatexString ; + qudt:plainTextDescription "\"Modulus Of Admittance\" is the absolute value of the quantity \"admittance\"." ; + qudt:symbol "Y" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus Of Admittance"@en ; + rdfs:seeAlso quantitykind:Admittance . + +quantitykind:ModulusOfElasticity + a qudt:QuantityKind ; + dcterms:description "The Modulus of Elasticity is the mathematical description of an object or substance's tendency to be deformed elastically (that is, non-permanently) when a force is applied to it."^^qudt:LatexString ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Elastic_modulus"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$E = \\frac{\\sigma}{\\varepsilon}$, where $\\sigma$ is the normal stress and $\\varepsilon$ is the linear strain."^^qudt:LatexString ; + qudt:plainTextDescription "The Modulus of Elasticity is the mathematical description of an object or substance's tendency to be deformed elastically (that is, non-permanently) when a force is applied to it." ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:ModulusOfElasticity" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus of Elasticity"@en . + +quantitykind:ModulusOfImpedance + a qudt:QuantityKind ; + dcterms:description """"Modulus Of Impedance} is the absolute value of the quantity $\\textit{impedance}$. Apparent impedance is defined more generally as + +the quotient of rms voltage and rms electric current; it is often denoted by $Z$."""^^qudt:LatexString ; + qudt:applicableUnit unit:OHM ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_value"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electrical_impedance"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$Z = \\left | \\underline{Z} \\right |$, where $\\underline{Z}$ is impedance."^^qudt:LatexString ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:ModulusOfImpedance" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus Of Impedance"@en ; + rdfs:seeAlso quantitykind:Impedance . + +quantitykind:ModulusOfLinearSubgradeReaction + a qudt:QuantityKind ; + dcterms:description "Modulus of Linear Subgrade Reaction is a measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in N/m^2"^^qudt:LatexString ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "https://www.lusas.com/user_area/documentation/1004_Winkler_spring_models.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "Modulus of Linear Subgrade Reaction is a measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in N/m^2" ; + rdfs:comment "Applicable units are those of quantitykind:ModulusOfLinearSubgradeReaction" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus of Linear Subgrade Reaction"@en ; + skos:broader quantitykind:ForcePerArea . + +quantitykind:ModulusOfRotationalSubgradeReaction + a qudt:QuantityKind ; + dcterms:description "Modulus of Rotational Subgrade Reaction is a measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in Nm/(m*rad)."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloN-M-PER-DEG-M ; + qudt:applicableUnit unit:N-M-PER-DEG-M ; + qudt:applicableUnit unit:N-M-PER-M-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofrotationalsubgradereactionselect.htm"^^xsd:anyURI ; + qudt:plainTextDescription "Modulus of Rotational Subgrade Reaction is a measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in Nm/(m*rad)." ; + rdfs:comment "Applicable units are those of quantitykind:ModulusOfRotationalSubgradeReaction" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus of Rotational Subgrade Reaction"@en ; + skos:broader quantitykind:ForcePerAngle . + +quantitykind:ModulusOfSubgradeReaction + a qudt:QuantityKind ; + dcterms:description "Modulus of Subgrade Reaction is a geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure. Usually measured in N/m3."^^qudt:LatexString ; + qudt:applicableUnit unit:N-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofsubgradereactionselect.htm"^^xsd:anyURI ; + qudt:plainTextDescription "Modulus of Subgrade Reaction is a geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure. Usually measured in N/m3." ; + rdfs:comment "Applicable units are those of quantitykind:ModulusOfSubgradeReaction" ; + rdfs:isDefinedBy ; + rdfs:label "Modulus of Subgrade Reaction"@en . + +quantitykind:MoistureDiffusivity + a qudt:QuantityKind ; + qudt:applicableUnit unit:BBL_UK_PET-PER-DAY ; + qudt:applicableUnit unit:BBL_UK_PET-PER-HR ; + qudt:applicableUnit unit:BBL_UK_PET-PER-MIN ; + qudt:applicableUnit unit:BBL_UK_PET-PER-SEC ; + qudt:applicableUnit unit:BBL_US-PER-DAY ; + qudt:applicableUnit unit:BBL_US-PER-MIN ; + qudt:applicableUnit unit:BBL_US_PET-PER-HR ; + qudt:applicableUnit unit:BBL_US_PET-PER-SEC ; + qudt:applicableUnit unit:BU_UK-PER-DAY ; + qudt:applicableUnit unit:BU_UK-PER-HR ; + qudt:applicableUnit unit:BU_UK-PER-MIN ; + qudt:applicableUnit unit:BU_UK-PER-SEC ; + qudt:applicableUnit unit:BU_US_DRY-PER-DAY ; + qudt:applicableUnit unit:BU_US_DRY-PER-HR ; + qudt:applicableUnit unit:BU_US_DRY-PER-MIN ; + qudt:applicableUnit unit:BU_US_DRY-PER-SEC ; + qudt:applicableUnit unit:CentiM3-PER-DAY ; + qudt:applicableUnit unit:CentiM3-PER-HR ; + qudt:applicableUnit unit:CentiM3-PER-MIN ; + qudt:applicableUnit unit:CentiM3-PER-SEC ; + qudt:applicableUnit unit:DeciM3-PER-DAY ; + qudt:applicableUnit unit:DeciM3-PER-HR ; + qudt:applicableUnit unit:DeciM3-PER-MIN ; + qudt:applicableUnit unit:DeciM3-PER-SEC ; + qudt:applicableUnit unit:FT3-PER-DAY ; + qudt:applicableUnit unit:FT3-PER-HR ; + qudt:applicableUnit unit:FT3-PER-MIN ; + qudt:applicableUnit unit:FT3-PER-SEC ; + qudt:applicableUnit unit:GAL_UK-PER-DAY ; + qudt:applicableUnit unit:GAL_UK-PER-HR ; + qudt:applicableUnit unit:GAL_UK-PER-MIN ; + qudt:applicableUnit unit:GAL_UK-PER-SEC ; + qudt:applicableUnit unit:GAL_US-PER-DAY ; + qudt:applicableUnit unit:GAL_US-PER-HR ; + qudt:applicableUnit unit:GAL_US-PER-MIN ; + qudt:applicableUnit unit:GAL_US-PER-SEC ; + qudt:applicableUnit unit:GI_UK-PER-DAY ; + qudt:applicableUnit unit:GI_UK-PER-HR ; + qudt:applicableUnit unit:GI_UK-PER-MIN ; + qudt:applicableUnit unit:GI_UK-PER-SEC ; + qudt:applicableUnit unit:GI_US-PER-DAY ; + qudt:applicableUnit unit:GI_US-PER-HR ; + qudt:applicableUnit unit:GI_US-PER-MIN ; + qudt:applicableUnit unit:GI_US-PER-SEC ; + qudt:applicableUnit unit:IN3-PER-HR ; + qudt:applicableUnit unit:IN3-PER-MIN ; + qudt:applicableUnit unit:IN3-PER-SEC ; + qudt:applicableUnit unit:KiloL-PER-HR ; + qudt:applicableUnit unit:L-PER-DAY ; + qudt:applicableUnit unit:L-PER-HR ; + qudt:applicableUnit unit:L-PER-MIN ; + qudt:applicableUnit unit:L-PER-SEC ; + qudt:applicableUnit unit:M3-PER-DAY ; + qudt:applicableUnit unit:M3-PER-HR ; + qudt:applicableUnit unit:M3-PER-MIN ; + qudt:applicableUnit unit:M3-PER-SEC ; + qudt:applicableUnit unit:M3-PER-YR ; + qudt:applicableUnit unit:MilliL-PER-DAY ; + qudt:applicableUnit unit:MilliL-PER-HR ; + qudt:applicableUnit unit:MilliL-PER-MIN ; + qudt:applicableUnit unit:MilliL-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_US-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_US-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_US-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_US-PER-SEC ; + qudt:applicableUnit unit:PINT_UK-PER-DAY ; + qudt:applicableUnit unit:PINT_UK-PER-HR ; + qudt:applicableUnit unit:PINT_UK-PER-MIN ; + qudt:applicableUnit unit:PINT_UK-PER-SEC ; + qudt:applicableUnit unit:PINT_US-PER-DAY ; + qudt:applicableUnit unit:PINT_US-PER-HR ; + qudt:applicableUnit unit:PINT_US-PER-MIN ; + qudt:applicableUnit unit:PINT_US-PER-SEC ; + qudt:applicableUnit unit:PK_UK-PER-DAY ; + qudt:applicableUnit unit:PK_UK-PER-HR ; + qudt:applicableUnit unit:PK_UK-PER-MIN ; + qudt:applicableUnit unit:PK_UK-PER-SEC ; + qudt:applicableUnit unit:PK_US_DRY-PER-DAY ; + qudt:applicableUnit unit:PK_US_DRY-PER-HR ; + qudt:applicableUnit unit:PK_US_DRY-PER-MIN ; + qudt:applicableUnit unit:PK_US_DRY-PER-SEC ; + qudt:applicableUnit unit:QT_UK-PER-DAY ; + qudt:applicableUnit unit:QT_UK-PER-HR ; + qudt:applicableUnit unit:QT_UK-PER-MIN ; + qudt:applicableUnit unit:QT_UK-PER-SEC ; + qudt:applicableUnit unit:QT_US-PER-DAY ; + qudt:applicableUnit unit:QT_US-PER-HR ; + qudt:applicableUnit unit:QT_US-PER-MIN ; + qudt:applicableUnit unit:QT_US-PER-SEC ; + qudt:applicableUnit unit:YD3-PER-DAY ; + qudt:applicableUnit unit:YD3-PER-HR ; + qudt:applicableUnit unit:YD3-PER-MIN ; + qudt:applicableUnit unit:YD3-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:symbol "q_V" ; + rdfs:comment "Applicable units are those of quantitykind:VolumeFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Moisture Diffusivity"@en ; + skos:broader quantitykind:VolumeFlowRate . + +quantitykind:MolalityOfSolute + a qudt:QuantityKind ; + dcterms:description "The \"Molality of Solute\" of a solution is defined as the amount of substance of solute divided by the mass in kg of the solvent."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-KiloGM ; + qudt:applicableUnit unit:KiloMOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL-PER-KiloGM ; + qudt:applicableUnit unit:MOL_LB-PER-LB ; + qudt:applicableUnit unit:MicroMOL-PER-GM ; + qudt:applicableUnit unit:NanoMOL-PER-GM ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molality"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$b_B = \\frac{n_B}{m_a}$, where $n_B$ is the amount of substance and $m_A$ is the mass."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Molality of Solute\" of a solution is defined as the amount of substance of solute divided by the mass in kg of the solvent." ; + qudt:symbol "b_B" ; + rdfs:comment "Applicable units are those of quantitykind:MolalityOfSolute" ; + rdfs:isDefinedBy ; + rdfs:label "Molality of Solute"@en ; + skos:broader quantitykind:AmountOfSubstancePerMass . + +quantitykind:MolarAbsorptionCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Molar Absorption Coefficient\" is a spectrophotometric unit indicating the light a substance absorbs with respect to length, usually centimeters, and concentration, usually moles per liter."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-MOL ; + qudt:exactMatch quantitykind:MolarAttenuationCoefficient ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://medical-dictionary.thefreedictionary.com/molar+absorption+coefficient"^^xsd:anyURI ; + qudt:latexDefinition "$x = aV_m$, where $a$ is the linear absorption coefficient and $V_m$ is the molar volume."^^qudt:LatexString ; + qudt:plainTextDescription "\"Molar Absorption Coefficient\" is a spectrophotometric unit indicating the light a substance absorbs with respect to length, usually centimeters, and concentration, usually moles per liter." ; + qudt:symbol "x" ; + rdfs:comment "Applicable units are those of quantitykind:MolarAbsorptionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Absorption Coefficient"@en . + +quantitykind:MolarAngularMomentum + a qudt:QuantityKind ; + qudt:applicableUnit unit:J-SEC-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://cvika.grimoar.cz/callen/callen_21.pdf"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MolarAngularMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Angular Momentum"@en . + +quantitykind:MolarAttenuationCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Molar Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per amount of substance."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-MOL ; + qudt:exactMatch quantitykind:MolarAbsorptionCoefficient ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD120" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_attenuation_coefficient"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD120"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu_c = -\\frac{\\mu}{c}$, where $\\mu$ is the linear attenuation coefficient and $c$ is the amount-of-substance concentration."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu_c$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Molar Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per amount of substance." ; + rdfs:comment "Applicable units are those of quantitykind:MolarAttenuationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Attenuation Coefficient"@en ; + skos:closeMatch quantitykind:MassAttenuationCoefficient . + +quantitykind:MolarConductivity + a qudt:QuantityKind ; + dcterms:description "\"Molar Conductivity\" is the conductivity of an electrolyte solution divided by the molar concentration of the electrolyte, and so measures the efficiency with which a given electrolyte conducts electricity in solution."^^qudt:LatexString ; + qudt:applicableUnit unit:S-M2-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E2L0I0M-1H0T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD121" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_conductivity"^^xsd:anyURI ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/molar+conductivity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD121"^^xsd:anyURI ; + qudt:latexDefinition "$\\Gamma_m = \\frac{x}{c_B}$, where $x$ is the electrolytic conductivity and $c_B$ is the amount-of-substance concentration."^^qudt:LatexString ; + qudt:latexSymbol "$\\Gamma_m$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Molar Conductivity\" is the conductivity of an electrolyte solution divided by the molar concentration of the electrolyte, and so measures the efficiency with which a given electrolyte conducts electricity in solution." ; + rdfs:comment "Applicable units are those of quantitykind:MolarConductivity" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Conductivity"@en . + +quantitykind:MolarDensity + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the quantity of material"@en ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M0H0T0D0 ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zu Stoffmengenwert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ372#002" ; + rdfs:isDefinedBy ; + rdfs:label "molar density"@en-US . + +quantitykind:MolarEnergy + a qudt:QuantityKind ; + dcterms:description "\"Molar Energy\" is the total energy contained by a thermodynamic system. The unit is $$J/mol$$, also expressed as $$joule/mole$$, or $$joules per mole$$. This unit is commonly used in the SI unit system. The quantity has the dimension of $$M \\cdot L^2 \\cdot T^{-2} \\cdot N^{-1}$$ where $$M$$ is mass, $$L$$ is length, $$T$$ is time, and $$N$$ is amount of substance."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:applicableUnit unit:KiloCAL-PER-MOL ; + qudt:applicableUnit unit:KiloJ-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--molar_energy--joule_per_mole.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Joule_per_mole"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$U_m = \\frac{U}{n}$, where $U$ is internal energy and $n$ is amount of substance."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:MOEG ; + qudt:symbol "U_M" ; + rdfs:comment "Applicable units are those of quantitykind:MolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Energy"@en ; + vaem:todo "dimensions are wrong" . + +quantitykind:MolarEntropy + a qudt:QuantityKind ; + dcterms:description "The \"Standard Molar Entropy\" is the entropy content of one mole of substance, under standard conditions (not standard temperature and pressure STP)."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL-K ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Standard_molar_entropy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$S_m = \\frac{S}{n}$, where $S$ is entropy and $n$ is amount of substance."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Standard Molar Entropy\" is the entropy content of one mole of substance, under standard conditions (not standard temperature and pressure STP)." ; + qudt:siExactMatch si-quantity:MOEN ; + qudt:symbol "S_m" ; + rdfs:comment "Applicable units are those of quantitykind:MolarEntropy" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Entropy"@en . + +quantitykind:MolarFlowRate + a qudt:QuantityKind ; + dcterms:description "Molar Flow Rate is a measure of the amount of substance (the number of molecules) that passes through a given area perpendicular to the flow in a given time. Typically this area is constrained, for example a section through a pipe, but it could also apply to an open flow."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloMOL-PER-MIN ; + qudt:applicableUnit unit:KiloMOL-PER-SEC ; + qudt:applicableUnit unit:MOL-PER-HR ; + qudt:applicableUnit unit:MOL-PER-MIN ; + qudt:applicableUnit unit:MOL-PER-SEC ; + qudt:applicableUnit unit:SCF-PER-HR ; + qudt:applicableUnit unit:SCF-PER-MIN ; + qudt:applicableUnit unit:SCM-PER-HR ; + qudt:applicableUnit unit:SCM-PER-MIN ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD122" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD122"^^xsd:anyURI ; + qudt:informativeReference "https://www.sciencedirect.com/topics/engineering/molar-flow-rate"^^xsd:anyURI ; + qudt:plainTextDescription "Molar Flow Rate is a measure of the amount of substance (the number of molecules) that passes through a given area perpendicular to the flow in a given time. Typically this area is constrained, for example a section through a pipe, but it could also apply to an open flow." ; + qudt:symbol "q_V" ; + rdfs:comment "Applicable units are those of quantitykind:MolarFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Flow Rate"@en . + +quantitykind:MolarFluxDensity + a qudt:QuantityKind ; + dcterms:description "the rate at which moles of a substance pass through a unit area per unit time. It is used for describing the flow of materials in terms of the transport of molecules or particles rather than bulk mass. The SI units are mol m-2 s-1" ; + qudt:applicableUnit unit:MilliMOL-PER-M2-HR ; + qudt:applicableUnit unit:NanoMOL-PER-M2-SEC ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Mass_flux#Molar_fluxes"^^xsd:anyURI ; + qudt:plainTextDescription "the rate at which moles of a substance pass through a unit area per unit time. It is used for describing the flow of materials in terms of the transport of molecules or particles rather than bulk mass. The SI units are mol m-2 s-1" ; + rdfs:comment "Applicable units are those of quantitykind:MolarFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Flux Density"@en . + +quantitykind:MolarFluxDensityVariance_NEON + a qudt:QuantityKind ; + dcterms:description "Variance for NEON Molar Flux Denisity data measured in unit:MicroMOL-PER-M2-SEC" ; + qudt:applicableUnit unit:MicroMOL2-PER-M4-SEC2 ; + qudt:hasDimensionVector qkdv:A2E0L-4I0M0H0T-2D0 ; + qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ; + qudt:plainTextDescription "Variance for NEON Molar Flux Denisity data measured in unit:MicroMOL-PER-M2-SEC" ; + rdfs:comment "Applicable units are those of quantitykind:MolarFluxDensityVariance_NEON" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Flux Density Variance, NEON"@en . + +quantitykind:MolarHeatCapacity + a qudt:QuantityKind ; + dcterms:description "\"Molar Heat Capacity\" is the amount of heat energy required to raise the temperature of 1 mole of a substance. In SI units, molar heat capacity (symbol: cn) is the amount of heat in joules required to raise 1 mole of a substance 1 Kelvin."^^qudt:LatexString ; + qudt:altSymbol "cn" ; + qudt:applicableUnit unit:BTU_IT-PER-MOL_LB-DEG_F ; + qudt:applicableUnit unit:J-PER-MOL-K ; + qudt:applicableUnit unit:KiloCAL-PER-MOL-DEG_C ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD123" ; + qudt:informativeReference "http://chemistry.about.com/od/chemistryglossary/g/Molar-Heat-Capacity-Definition.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD123"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$C_m = \\frac{C}{n}$, where $C$ is heat capacity and $n$ is amount of substance."^^qudt:LatexString ; + qudt:plainTextDescription "\"Molar Heat Capacity\" is the amount of heat energy required to raise the temperature of 1 mole of a substance. In SI units, molar heat capacity (symbol: cn) is the amount of heat in joules required to raise 1 mole of a substance 1 Kelvin." ; + qudt:symbol "C_m" ; + rdfs:comment "Applicable units are those of quantitykind:MolarHeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Heat Capacity"@en . + +quantitykind:MolarInternalEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:applicableUnit unit:KiloCAL-PER-MOL ; + qudt:applicableUnit unit:KiloJ-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD124" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD124"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:MolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "molar internal energy" ; + skos:broader quantitykind:MolarEnergy . + +quantitykind:MolarMass + a qudt:QuantityKind ; + dcterms:description "In chemistry, the molar mass M is defined as the mass of a given substance (chemical element or chemical compound) divided by its amount of substance. It is a physical property of a given substance. The base SI unit for molar mass is $kg/mol$."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-MOL ; + qudt:applicableUnit unit:KiloGM-PER-KiloMOL ; + qudt:applicableUnit unit:KiloGM-PER-MOL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Molar_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD125" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_mass"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD125"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:MolarMass" ; + rdfs:isDefinedBy ; + rdfs:label "Jisim molar"@ms ; + rdfs:label "Masa molowa"@pl ; + rdfs:label "Masă molară"@ro ; + rdfs:label "Molmasse"@de ; + rdfs:label "Molární hmotnost"@cs ; + rdfs:label "masa molar"@es ; + rdfs:label "massa molar"@pt ; + rdfs:label "massa molare"@it ; + rdfs:label "masse molaire"@fr ; + rdfs:label "molar kütle"@tr ; + rdfs:label "molar mass"@en ; + rdfs:label "molska masa"@sl ; + rdfs:label "Молярная масса"@ru ; + rdfs:label "جرم مولی"@fa ; + rdfs:label "كتلة مولية"@ar ; + rdfs:label "मोलर द्रव्यमान"@hi ; + rdfs:label "モル質量"@ja ; + rdfs:label "摩尔质量"@zh ; + skos:altLabel "molare Masse"@de ; + skos:altLabel "stoffmengenbezogene Masse"@de . + +quantitykind:MolarOpticalRotationalAbility + a qudt:QuantityKind ; + dcterms:description "material-specific quantity resulting as the specific angle of rotation of a substance for a particular wavelength and a particular temperature from the relationship: ratio between measured angle of rotation divided by the concentration of material and the covered path"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:plainTextDescription "materialspezifische Größe, die sich als spezifischer Drehwinkel einer Substanz für eine bestimmte Wellenlänge und eine bestimmte Temperatur ergibt durch die Beziehung: Quotient aus gemessener Drehwinkel dividiert durch die Stoffmenegenkonzentration und die durchstrahlte Wegstrecke"@de ; + qudt:symbol "0173-1#Z4-BAJ426#001" ; + rdfs:isDefinedBy ; + rdfs:label "molar optical rotational ability"@en-US . + +quantitykind:MolarOpticalRotatoryPower + a qudt:QuantityKind ; + dcterms:description "The \"Molar Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the amount concentration giving the molar optical rotatory power."^^qudt:LatexString ; + qudt:applicableUnit unit:RAD-M2-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD126" ; + qudt:informativeReference "http://goldbook.iupac.org/O04313.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD126"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_n = \\alpha \\frac{A}{n}$, where $\\alpha$ is the angle of optical rotation, and $n$ is the amount of substance of the optically active component in the path of a linearly polarized light beam of cross sectional area $A$."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_n$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Molar Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the amount concentration giving the molar optical rotatory power." ; + rdfs:comment "Applicable units are those of quantitykind:MolarOpticalRotatoryPower" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Optical Rotatory Power"@en . + +quantitykind:MolarRefractivity + a qudt:QuantityKind ; + dcterms:description "A quantity kind that is a measure of the total polarizability of a mole of substance that depends on the temperature, the index of refraction and the pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-MOL ; + qudt:applicableUnit unit:DeciM3-PER-MOL ; + qudt:applicableUnit unit:L-PER-MOL ; + qudt:applicableUnit unit:L-PER-MicroMOL ; + qudt:applicableUnit unit:M3-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:plainTextDescription "A quantity kind that is a measure of the total polarizability of a mole of substance that depends on the temperature, the index of refraction and the pressure." ; + rdfs:comment "Applicable units are those of quantitykind:MolarRefractivity" ; + rdfs:isDefinedBy ; + rdfs:label "Molar Refractivity"@en . + +quantitykind:MolarThermalCapacity + a qudt:QuantityKind ; + dcterms:description "thermal capacity divided by the amount of substance"@en ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:plainTextDescription "auf die Stoffmenge bezogene Wärmekapazität"@de ; + qudt:symbol "0173-1#Z4-BAJ355#002" ; + rdfs:isDefinedBy ; + rdfs:label "molar thermal capacity"@en-US . + +quantitykind:MolarThermodynamicEnergy + a qudt:QuantityKind ; + dcterms:description "energy in relation to the amount of a substance"@en ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:applicableUnit unit:KiloCAL-PER-MOL ; + qudt:applicableUnit unit:KiloJ-PER-MOL ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "auf die Stoffmenge bezogene Energie"@de ; + qudt:symbol "0173-1#Z4-BAJ353#002" ; + rdfs:comment "Applicable units are those of quantitykind:MolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "molar thermodynamic energy"@en-US ; + skos:broader quantitykind:MolarEnergy . + +quantitykind:MolarVolume + a qudt:QuantityKind ; + dcterms:description "The molar volume, symbol $V_m$, is the volume occupied by one mole of a substance (chemical element or chemical compound) at a given temperature and pressure. It is equal to the molar mass ($M$) divided by the mass density ($\\rho$). It has the SI unit cubic metres per mole ($m^{1}/mol$). For ideal gases, the molar volume is given by the ideal gas equation: this is a good approximation for many common gases at standard temperature and pressure. For crystalline solids, the molar volume can be measured by X-ray crystallography."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-MOL ; + qudt:applicableUnit unit:DeciM3-PER-MOL ; + qudt:applicableUnit unit:L-PER-MOL ; + qudt:applicableUnit unit:L-PER-MicroMOL ; + qudt:applicableUnit unit:M3-PER-MOL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Molar_volume"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD127" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_volume"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD127"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$V_m = \\frac{V}{n}$, where $V$ is volume and $n$ is amount of substance."^^qudt:LatexString ; + qudt:symbol "V_m" ; + rdfs:comment "Applicable units are those of quantitykind:MolarVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Isipadu molar"@ms ; + rdfs:label "Molvolumen"@de ; + rdfs:label "molar hacim"@tr ; + rdfs:label "molar volume"@en ; + rdfs:label "molski volumen"@sl ; + rdfs:label "molární objem"@cs ; + rdfs:label "volum molar"@ro ; + rdfs:label "volume molaire"@fr ; + rdfs:label "volume molar"@pl ; + rdfs:label "volume molar"@pt ; + rdfs:label "volume molare"@it ; + rdfs:label "volumen molar"@es ; + rdfs:label "Молярный объём"@ru ; + rdfs:label "حجم مولي"@ar ; + rdfs:label "حجم مولی"@fa ; + rdfs:label "モル体積"@ja ; + rdfs:label "摩尔体积"@zh ; + skos:altLabel "molares Volumen"@de ; + skos:altLabel "stoffmengenbezogenes Volumen"@de . + +quantitykind:MoleFraction + a qudt:QuantityKind ; + dcterms:description "In chemistry, the mole fraction of a component in a mixture is the relative proportion of molecules belonging to the component to those in the mixture, by number of molecules. It is one way of measuring concentration."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mole_fraction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "In chemistry, the mole fraction of a component in a mixture is the relative proportion of molecules belonging to the component to those in the mixture, by number of molecules. It is one way of measuring concentration." ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Mole Fraction"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:MolecularConcentration + a qudt:QuantityKind ; + dcterms:description "The \"Molecular Concentration\" of substance B is defined as the number of molecules of B divided by the volume of the mixture "^^qudt:LatexString ; + qudt:abbreviation "m^{-3}" ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_concentration"^^xsd:anyURI ; + qudt:latexDefinition "$C_B = \\frac{N_B}{V}$, where $N_B$ is the number of molecules of $B$ and $V$ is the volume."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Molecular Concentration\" of substance B is defined as the number of molecules of B divided by the volume of the mixture " ; + qudt:symbol "C_B" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Molecular Concentration"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:MolecularMass + a qudt:QuantityKind ; + dcterms:description "The molecular mass, or molecular weight of a chemical compound is the mass of one molecule of that compound, relative to the unified atomic mass unit, u. Molecular mass should not be confused with molar mass, which is the mass of one mole of a substance."^^qudt:LatexString ; + qudt:applicableUnit unit:DA ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Molecular_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molecular_mass#Relative_molecular_mass"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The molecular mass, or molecular weight of a chemical compound is the mass of one molecule of that compound, relative to the unified atomic mass unit, u. Molecular mass should not be confused with molar mass, which is the mass of one mole of a substance." ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:MolecularMass" ; + rdfs:isDefinedBy ; + rdfs:label "Molecular Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:MolecularViscosity + a qudt:QuantityKind ; + dcterms:description "Molecules in a fluid close to a solid boundary sometime strike the boundary and transfer momentum to it. Molecules further from the boundary collide with molecules that have struck the boundary, further transferring the change in momentum into the interior of the fluid. This transfer of momentum is molecular viscosity. Molecules, however, travel only micrometers between collisions, and the process is very inefficient for transferring momentum even a few centimeters. Molecular viscosity is important only within a few millimeters of a boundary. The coefficient of molecular viscosity has the same value as the dynamic viscosity."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:informativeReference "http://oceanworld.tamu.edu/resources/ocng_textbook/chapter08/chapter08_01.htm"^^xsd:anyURI ; + qudt:plainTextDescription "Molecules in a fluid close to a solid boundary sometime strike the boundary and transfer momentum to it. Molecules further from the boundary collide with molecules that have struck the boundary, further transferring the change in momentum into the interior of the fluid. This transfer of momentum is molecular viscosity. Molecules, however, travel only micrometers between collisions, and the process is very inefficient for transferring momentum even a few centimeters. Molecular viscosity is important only within a few millimeters of a boundary. The coefficient of molecular viscosity has the same value as the dynamic viscosity." ; + rdfs:isDefinedBy ; + rdfs:label "Molecular Viscosity"@en ; + rdfs:seeAlso quantitykind:DynamicViscosity ; + rdfs:seeAlso quantitykind:KinematicViscosity . + +quantitykind:MomentOfForce + a qudt:QuantityKind ; + dcterms:description "Moment of force (often just moment) is the tendency of a force to twist or rotate an object."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN-M ; + qudt:applicableUnit unit:DYN-CentiM ; + qudt:applicableUnit unit:DYN-M ; + qudt:applicableUnit unit:DeciN-M ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:IN-PDL ; + qudt:applicableUnit unit:KiloGM_F-M ; + qudt:applicableUnit unit:KiloN-M ; + qudt:applicableUnit unit:LB_F-FT ; + qudt:applicableUnit unit:LB_F-IN ; + qudt:applicableUnit unit:MegaN-M ; + qudt:applicableUnit unit:MicroN-M ; + qudt:applicableUnit unit:MilliN-M ; + qudt:applicableUnit unit:N-CentiM ; + qudt:applicableUnit unit:N-M ; + qudt:applicableUnit unit:OZ_F-IN ; + qudt:applicableUnit unit:PDL-FT ; + qudt:applicableUnit unit:PDL-IN ; + qudt:exactMatch quantitykind:Torque ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moment_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$M = r \\cdot F$, where $r$ is the position vector and $F$ is the force."^^qudt:LatexString ; + qudt:plainTextDescription "Moment of force (often just moment) is the tendency of a force to twist or rotate an object." ; + qudt:siExactMatch si-quantity:TORQ ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:MomentOfForce" ; + rdfs:isDefinedBy ; + rdfs:label "Moment of Force"@en . + +quantitykind:MomentOfInertia + a qudt:QuantityKind ; + dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-CentiM2 ; + qudt:applicableUnit unit:KiloGM-M2 ; + qudt:applicableUnit unit:KiloGM-MilliM2 ; + qudt:applicableUnit unit:LB-FT2 ; + qudt:applicableUnit unit:LB-IN2 ; + qudt:exactMatch quantitykind:RotationalMass ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD128" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moment_of_inertia"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD128"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$I_Q = \\int r^2_Q dm$, where $r_Q$ is the radial distance from a $Q-axis$ and $m$ is mass."^^qudt:LatexString ; + qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia" ; + rdfs:isDefinedBy ; + rdfs:label "Eylemsizlik momenti"@tr ; + rdfs:label "Massenträgheitsmoment"@de ; + rdfs:label "Momen inersia"@ms ; + rdfs:label "Moment bezwładności"@pl ; + rdfs:label "Moment de inerție"@ro ; + rdfs:label "Moment setrvačnosti"@cs ; + rdfs:label "moment d'inertie"@fr ; + rdfs:label "moment of inertia"@en ; + rdfs:label "momento de inercia"@es ; + rdfs:label "momento de inércia"@pt ; + rdfs:label "momento di inerzia"@it ; + rdfs:label "Момент инерции"@ru ; + rdfs:label "عزم القصور الذاتي"@ar ; + rdfs:label "گشتاور لختی"@fa ; + rdfs:label "जड़त्वाघूर्ण"@hi ; + rdfs:label "慣性モーメント"@ja ; + rdfs:label "轉動慣量"@zh ; + skos:altLabel "MOI" . + +quantitykind:Momentum + a qudt:QuantityKind ; + dcterms:description "The momentum of a system of particles is given by the sum of the momentums of the individual particles which make up the system or by the product of the total mass of the system and the velocity of the center of gravity of the system. The momentum of a continuous medium is given by the integral of the velocity over the mass of the medium or by the product of the total mass of the medium and the velocity of the center of gravity of the medium."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC ; + qudt:applicableUnit unit:MegaEV-PER-SpeedOfLight ; + qudt:applicableUnit unit:N-M-SEC-PER-M ; + qudt:applicableUnit unit:N-SEC ; + qudt:applicableUnit unit:PlanckMomentum ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Momentum"^^xsd:anyURI ; + qudt:exactMatch quantitykind:LinearMomentum ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Momentum"^^xsd:anyURI ; + qudt:plainTextDescription "The momentum of a system of particles is given by the sum of the momentums of the individual particles which make up the system or by the product of the total mass of the system and the velocity of the center of gravity of the system. The momentum of a continuous medium is given by the integral of the velocity over the mass of the medium or by the product of the total mass of the medium and the velocity of the center of gravity of the medium." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:Momentum" ; + rdfs:isDefinedBy ; + rdfs:label "Impuls"@de ; + rdfs:label "Momentum"@ms ; + rdfs:label "Momentum"@tr ; + rdfs:label "cantidad de movimiento"@es ; + rdfs:label "gibalna količina"@sl ; + rdfs:label "hybnost"@cs ; + rdfs:label "impuls"@ro ; + rdfs:label "momento linear"@pt ; + rdfs:label "momentum"@en ; + rdfs:label "pęd"@pl ; + rdfs:label "quantità di moto"@it ; + rdfs:label "quantité de mouvement"@fr ; + rdfs:label "импульс"@ru ; + rdfs:label "تکانه"@fa ; + rdfs:label "زخم الحركة"@ar ; + rdfs:label "动量"@zh ; + rdfs:label "運動量"@ja . + +quantitykind:MomentumPerAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:N-SEC-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:MomentumPerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Momentum per Angle"@en . + +quantitykind:MorbidityRate + a qudt:QuantityKind ; + dcterms:description "Morbidity rate is a measure of the incidence of a disease in a particular population, scaled to the size of that population, per unit of time."^^qudt:LatexString ; + qudt:applicableUnit unit:CASES-PER-KiloINDIV-YR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Morbidity rate is a measure of the incidence of a disease in a particular population, scaled to the size of that population, per unit of time." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:MorbidityRate" ; + rdfs:isDefinedBy ; + rdfs:label "Morbidity Rate"@en ; + skos:broader quantitykind:Incidence . + +quantitykind:MortalityRate + a qudt:QuantityKind ; + dcterms:description "Mortality rate, or death rate, is a measure of the number of deaths (in general, or due to a specific cause) in a particular population, scaled to the size of that population, per unit of time."^^qudt:LatexString ; + qudt:applicableUnit unit:DEATHS-PER-KiloINDIV-YR ; + qudt:applicableUnit unit:DEATHS-PER-MegaINDIV-YR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ; + qudt:plainTextDescription "Mortality rate, or death rate, is a measure of the number of deaths (in general, or due to a specific cause) in a particular population, scaled to the size of that population, per unit of time." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:MortalityRate" ; + rdfs:isDefinedBy ; + rdfs:label "Mortality Rate"@en ; + skos:broader quantitykind:Incidence . + +quantitykind:MotorConstant + a qudt:QuantityKind ; + dcterms:description "quantitiy/variable which identifies a characteristic of a motor"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD129" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD129"^^xsd:anyURI ; + qudt:plainTextDescription "Größe, die eine Eigenschaft eines Motors kennzeichnet"@de ; + qudt:symbol "0173-1#Z4-BAJ358#003" ; + rdfs:isDefinedBy ; + rdfs:label "motor constant" ; + rdfs:label "motor constant"@en-US . + +quantitykind:MultiplicationFactor + a qudt:QuantityKind ; + dcterms:description "The \"Multiplication Factor\" is the ratio of the total number of fission or fission-dependent neutrons produced in a time interval to the total number of neutrons lost by absorption and leakage during the same interval."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Neutron_multiplication_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Multiplication Factor\" is the ratio of the total number of fission or fission-dependent neutrons produced in a time interval to the total number of neutrons lost by absorption and leakage during the same interval." ; + qudt:symbol "k" ; + rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Multiplication Factor"@en . + +quantitykind:MutualInductance + a qudt:QuantityKind ; + dcterms:description "$\\textit{Mutual Inductance}$ is the non-diagonal term of the inductance matrix. For two loops, the symbol $M$ is used for $L_{12}$."^^qudt:LatexString ; + qudt:applicableUnit unit:H ; + qudt:applicableUnit unit:H_Ab ; + qudt:applicableUnit unit:H_Stat ; + qudt:applicableUnit unit:KiloH ; + qudt:applicableUnit unit:MicroH ; + qudt:applicableUnit unit:MilliH ; + qudt:applicableUnit unit:NanoH ; + qudt:applicableUnit unit:PicoH ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-36"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$L_{mn} = \\frac{\\Psi_m}{I_n}$, where $I_n$ is an electric current in a thin conducting loop $n$ and $\\Psi_m$ is the linked flux caused by that electric current in another loop $m$."^^qudt:LatexString ; + qudt:symbol "L_{mn}" ; + rdfs:comment "Applicable units are those of quantitykind:Inductance" ; + rdfs:isDefinedBy ; + rdfs:label "Mutual Inductance"@en ; + rdfs:seeAlso quantitykind:Inductance ; + skos:broader quantitykind:Inductance . + +quantitykind:NOMINAL-ASCENT-PROPELLANT-MASS + a qudt:QuantityKind ; + dcterms:description "The amount of propellant mass within a stage that is available for impulse for use in nominal payload performance prediction. This mass excludes loaded propellant that has been set aside for off- nominal performance behavior (FPR and fuel bias)."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://elib.dlr.de/68314/1/IAF10-D2.3.1.pdf"^^xsd:anyURI ; + qudt:plainTextDescription "The amount of propellant mass within a stage that is available for impulse for use in nominal payload performance prediction. This mass excludes loaded propellant that has been set aside for off- nominal performance behavior (FPR and fuel bias)." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Nominal Ascent Propellant Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:NapierianAbsorbance + a qudt:QuantityKind ; + dcterms:description "Napierian Absorbance is the natural (Napierian) logarithm of the reciprocal of the spectral internal transmittance."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Absorbance#Beer-Lambert_law"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Beer%E2%80%93Lambert_law#Formulation"^^xsd:anyURI ; + qudt:latexDefinition "$A_e(\\lambda) = -ln(\\tau(\\lambda))$, where $\\tau$ is the transmittance at a given wavelength $\\lambda$."^^qudt:LatexString ; + qudt:plainTextDescription "Napierian Absorbance is the natural (Napierian) logarithm of the reciprocal of the spectral internal transmittance." ; + qudt:symbol "A_e, B" ; + rdfs:comment "Applicable units are those of quantitykind:NapierianAbsorbance" ; + rdfs:isDefinedBy ; + rdfs:label "Napierian Absorbance"@en . + +quantitykind:NeelTemperature + a qudt:QuantityKind ; + dcterms:description "\"Neel Temperature\" is the critical thermodynamic temperature of an antiferromagnet."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Néel_temperature"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Neel Temperature\" is the critical thermodynamic temperature of an antiferromagnet." ; + qudt:symbol "T_C" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Neel Temperature"@en ; + skos:broader quantitykind:Temperature ; + skos:closeMatch quantitykind:CurieTemperature ; + skos:closeMatch quantitykind:SuperconductionTransitionTemperature . + +quantitykind:NeutralRatio + a qudt:QuantityKind ; + dcterms:description "ratio between two physical variables of the same type, expressed as a number which describes the relationship between these variables where the units are cancelled against each other"@en ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Quotient aus zwei physikalischen Größen gleicher Art als Zahl, welche das Verhältnis dieser Größen zueinander ausdrückt, wobei die einheiten gegeneinander gekürzt sind"@de ; + qudt:symbol "0173-1#Z4-BAJ359#002" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "neutral ratio"@en-US ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:NeutronDiffusionCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Diffusion Coefficient\" is "^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/Diffusion+of+Neutrons"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$D_n = -\\frac{J_x}{\\frac{\\partial dn}{\\partial dx}}$, where $J_x$ is the $x-component$ of the particle current and $n$ is the particle number density."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Diffusion Coefficient\" is " ; + qudt:symbol "D" ; + rdfs:comment "Applicable units are those of quantitykind:NeutronDiffusionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusionskoeffizient"@de ; + rdfs:label "coefficient de diffusion"@fr ; + rdfs:label "coefficiente di diffusione"@it ; + rdfs:label "coeficiente de difusión"@es ; + rdfs:label "coeficiente de difusão"@pt ; + rdfs:label "diffusion coefficient"@en ; + rdfs:label "difuzijski koeficient"@sl . + +quantitykind:NeutronDiffusionLength + a qudt:QuantityKind ; + dcterms:description "The neutron diffusion length is equivalent to the relaxation length, that is, to the distance, in which the neutron flux decreases by a factor e"^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "The neutron diffusion length is equivalent to the relaxation length, that is, to the distance, in which the neutron flux decreases by a factor e" ; + qudt:symbol "L_{r}" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Neutron Diffusion Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:NeutronNumber + a qudt:QuantityKind ; + dcterms:description "\"Neutron Number\", symbol $N$, is the number of neutrons in a nuclide. Nuclides with the same value of $N$ but different values of $Z$ are called isotones. $N - Z$ is called the neutron excess number."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Neutron_number"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "N" ; + rdfs:comment "Applicable units are those of quantitykind:NeutronNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Neutronenzahl"@de ; + rdfs:label "Neutronové číslo"@cs ; + rdfs:label "Nombor neutron"@ms ; + rdfs:label "Nombre de neutrons"@fr ; + rdfs:label "liczba neutronowa"@pl ; + rdfs:label "neutron number"@en ; + rdfs:label "numero neutronico"@it ; + rdfs:label "nötron snumarası"@tr ; + rdfs:label "número de neutrons"@pt ; + rdfs:label "número neutrónico"@es ; + rdfs:label "число нейтронов"@ru ; + rdfs:label "عدد النيوترونات"@ar ; + rdfs:label "عدد نوترون"@fa ; + rdfs:label "中子數"@zh ; + skos:broader quantitykind:Count . + +quantitykind:NeutronYieldPerAbsorption + a qudt:QuantityKind ; + dcterms:description "The \"Neutron Yield per Absorption\" is the average number of fission neutrons, both prompt and delayed, emitted per neutron absorbed in a fissionable nuclide or in a nuclear fuel, as specified."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fission_product_yield"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\eta$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Neutron Yield per Absorption\" is the average number of fission neutrons, both prompt and delayed, emitted per neutron absorbed in a fissionable nuclide or in a nuclear fuel, as specified." ; + rdfs:comment "Applicable units are those of quantitykind:NeutronYieldPerAbsorption" ; + rdfs:isDefinedBy ; + rdfs:label "Neutron Yield per Absorption"@en . + +quantitykind:NeutronYieldPerFission + a qudt:QuantityKind ; + dcterms:description "The \"Neutron Yield per Fission\" is the average number of fission neutrons, both prompt and delayed, emitted per fission event."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fission_product_yield"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\nu$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Neutron Yield per Fission\" is the average number of fission neutrons, both prompt and delayed, emitted per fission event." ; + rdfs:comment "Applicable units are those of quantitykind:NeutronYieldPerFission" ; + rdfs:isDefinedBy ; + rdfs:label "Neutron Yield per Fission"@en . + +quantitykind:Non-LeakageProbability + a qudt:QuantityKind ; + dcterms:description "The \"Non-Leakage Probability\" is the probability that a neutron will not escape from the reactor during the slowing-down process or while it diffuses as a thermal neutron"^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Six_factor_formula"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexSymbol "$\\Lambda$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Non-Leakage Probability\" is the probability that a neutron will not escape from the reactor during the slowing-down process or while it diffuses as a thermal neutron" ; + rdfs:comment "Applicable units are those of quantitykind:Non-LeakageProbability" ; + rdfs:isDefinedBy ; + rdfs:label "Non-Leakage Probability"@en . + +quantitykind:NonActivePower + a qudt:QuantityKind ; + dcterms:description "\"Non-active Power\", for a two-terminal element or a two-terminal circuit under periodic conditions, is the quantity equal to the square root of the difference of the squares of the apparent power and the active power."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaVA ; + qudt:applicableUnit unit:GigaVA ; + qudt:applicableUnit unit:MicroVA ; + qudt:applicableUnit unit:MilliVA ; + qudt:applicableUnit unit:NanoVA ; + qudt:applicableUnit unit:PetaVA ; + qudt:applicableUnit unit:PicoVA ; + qudt:applicableUnit unit:TeraVA ; + qudt:applicableUnit unit:VA ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-43"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$Q^{'} = \\sqrt{{\\left | \\underline{S} \\right |}^2 - P^2}$, where $\\underline{S}$ is apparent power and $P$ is active power."^^qudt:LatexString ; + qudt:plainTextDescription "\"Non-active Power\", for a two-terminal element or a two-terminal circuit under periodic conditions, is the quantity equal to the square root of the difference of the squares of the apparent power and the active power." ; + qudt:symbol "Q'" ; + rdfs:comment "Applicable units are those of quantitykind:NonActivePower" ; + rdfs:isDefinedBy ; + rdfs:label "Non-active Power"@en ; + rdfs:seeAlso quantitykind:ActivePower ; + rdfs:seeAlso quantitykind:ApparentPower . + +quantitykind:NonNegativeLength + a qudt:QuantityKind ; + dcterms:description "\"NonNegativeLength\" is a measure of length greater than or equal to zero."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "\"NonNegativeLength\" is a measure of length greater than or equal to zero." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:NormalStress + a qudt:QuantityKind ; + dcterms:description "Normal stress is defined as the stress resulting from a force acting normal to a body surface. Normal stress can be caused by several loading methods, the most common being axial tension and compression, bending, and hoop stress."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stress_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\sigma = \\frac{dF_n}{dA}$, where $dF_n$ is the normal component of force and $dA$ is the area of the surface element."^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + qudt:plainTextDescription "Normal stress is defined as the stress resulting from a force acting normal to a body surface. Normal stress can be caused by several loading methods, the most common being axial tension and compression, bending, and hoop stress." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Normal Stress"@en ; + skos:broader quantitykind:Stress . + +quantitykind:NormalizedDimensionlessRatio + a qudt:QuantityKind ; + dcterms:description "A \"Normalized Dimensionless Ratio\" is a dimensionless ratio ranging from 0.0 to 1.0"^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "A \"Normalized Dimensionless Ratio\" is a dimensionless ratio ranging from 0.0 to 1.0" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Dimensionless Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:NozzleThroatCrossSectionalArea + a qudt:QuantityKind ; + dcterms:description "Cross-sectional area of the nozzle at the throat."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:plainTextDescription "Cross-sectional area of the nozzle at the throat." ; + qudt:symbol "A^*" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Nozzle Throat Cross-sectional Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:NozzleThroatDiameter + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Nozzle Throat Diameter"@en ; + skos:broader quantitykind:Length . + +quantitykind:NozzleThroatPressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:symbol "p^*" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Nozzle Throat Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:NozzleWallsThrustReaction + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:symbol "F_R" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Nozzle Walls Thrust Reaction"@en ; + skos:broader quantitykind:Force . + +quantitykind:NuclearEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD131" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD131"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "nuclear energy" ; + skos:broader quantitykind:Energy . + +quantitykind:NuclearQuadrupoleMoment + a qudt:QuantityKind ; + dcterms:description "\"Nuclear Quadrupole Moment\" is a quantity that characterizes the deviation from spherical symmetry of the electrical charge distribution in an atomic nucleus."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_quadrupole_resonance"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$Q = (\\frac{1}{e}) \\int (3z^2 - r^2)\\rho(x, y, z)dV$, in the quantum state with the nuclear spin in the field direction $(z)$, where $\\rho(x, y, z)$ is the nuclear electric charge density, $e$ is the elementary charge, $r^2 = x^2 + y^2 + z^2$, and $dV$ is the volume element $dx$ $dy$ $dz$."^^qudt:LatexString ; + qudt:plainTextDescription "\"Nuclear Quadrupole Moment\" is a quantity that characterizes the deviation from spherical symmetry of the electrical charge distribution in an atomic nucleus." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:NuclearQuadrupoleMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Nuclear Quadrupole Moment"@en . + +quantitykind:NuclearRadius + a qudt:QuantityKind ; + dcterms:description "\"Nuclear Radius\" is the conventional radius of sphere in which the nuclear matter is included"^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_nucleus"^^xsd:anyURI ; + qudt:latexDefinition "This quantity is not exactly defined. It is given approximately for nuclei in their ground state only by $R = r_0 A^{\\frac{1}{3}}$, where $r_0 \\approx 1.2 x 10^{-15} m$ and $A$ is the nucleon number."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Nuclear Radius\" is the conventional radius of sphere in which the nuclear matter is included" ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Nuclear Radius"@en ; + skos:broader quantitykind:Length . + +quantitykind:NuclearSpinQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Spin Quantum Number\" describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis"^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$I^2 = \\hbar^2 I(I + 1)$, where $\\hbar$ is the Planck constant."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Spin Quantum Number\" describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis" ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:NuclearSpinQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Spin Quantum Number"@en ; + skos:broader quantitykind:SpinQuantumNumber . + +quantitykind:NucleonNumber + a qudt:QuantityKind ; + dcterms:description "Number of nucleons in an atomic nucleus.A = Z+N. Nuclides with the same value of A are called isobars."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "Number of nucleons in an atomic nucleus.A = Z+N. Nuclides with the same value of A are called isobars." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:NucleonNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Nombor nukleon"@ms ; + rdfs:label "Nukleonenzahl"@de ; + rdfs:label "Nukleové číslo"@cs ; + rdfs:label "liczba masowa"@pl ; + rdfs:label "nombre de masse"@fr ; + rdfs:label "nucleon number"@en ; + rdfs:label "numero di massa"@it ; + rdfs:label "número de massa"@pt ; + rdfs:label "número másico"@es ; + rdfs:label "nükleon numarası"@tr ; + rdfs:label "عدد جرمی"@fa ; + rdfs:label "عدد كتلي"@ar ; + rdfs:label "質量数"@ja ; + rdfs:label "质量数"@zh ; + skos:altLabel "Massenzahl"@de ; + skos:altLabel "kütle numarası"@tr ; + skos:altLabel "mass number"@en ; + skos:altLabel "nombor jisim"@ms ; + skos:altLabel "numero di nucleoni"@it ; + skos:broader quantitykind:Count . + +quantitykind:NumberDensity + a qudt:QuantityKind ; + dcterms:description "In physics, astronomy, and chemistry, number density (symbol: n) is a kind of quantity used to describe the degree of concentration of countable objects (atoms, molecules, dust particles, galaxies, etc.) in the three-dimensional physical space."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Number_density"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Number_density"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$n = \\frac{N}{V}$, where $N$ is the number of particles and $V$ is volume."^^qudt:LatexString ; + qudt:plainTextDescription "In physics, astronomy, and chemistry, number density (symbol: n) is a kind of quantity used to describe the degree of concentration of countable objects (atoms, molecules, dust particles, galaxies, etc.) in the three-dimensional physical space." ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Number Density"@en ; + skos:broader quantitykind:InverseVolume . + +quantitykind:NumberOfParticles + a qudt:QuantityKind ; + dcterms:description "\"Number of Particles\", also known as the particle number, of a thermodynamic system, conventionally indicated with the letter N, is the number of constituent particles in that system."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "\"Number of Particles\", also known as the particle number, of a thermodynamic system, conventionally indicated with the letter N, is the number of constituent particles in that system." ; + qudt:symbol "N_B" ; + rdfs:comment "Applicable units are those of quantitykind:NumberOfParticles" ; + rdfs:isDefinedBy ; + rdfs:label "Number of Particles"@en . + +quantitykind:OlfactoryThreshold + a qudt:QuantityKind ; + dcterms:description "\"Olfactory Threshold\" are thresholds for the concentrations of various classes of smell that can be detected."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiMOL-PER-L ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:NanoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Odor_detection_threshold"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_o}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Olfactory Threshold\" are thresholds for the concentrations of various classes of smell that can be detected." ; + rdfs:comment "Applicable units are those of quantitykind:Concentration" ; + rdfs:isDefinedBy ; + rdfs:label "Olfactory Threshold"@en ; + skos:broader quantitykind:Concentration . + +quantitykind:OpeningRatio + a qudt:QuantityKind ; + dcterms:description """In the context of mechanical systems, "opening ratio" might refer to the proportion of time + or the extent to which a valve or gate is open relative to its maximum capacity.""" ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription """In the context of mechanical systems, "opening ratio" might refer to the proportion of time + or the extent to which a valve or gate is open relative to its maximum capacity.""" ; + rdfs:comment "Applicable units are those of quantitykind:OpeningRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Opening Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:OrbitalAngularMomentumPerMass + a qudt:QuantityKind ; + dcterms:description "Angular momentum of the orbit per mass of the vehicle"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:plainTextDescription "Angular momentum of the orbit per mass of the vehicle" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:symbol "h" ; + rdfs:isDefinedBy ; + rdfs:label "Orbital Angular Momentum per Mass"@en . + +quantitykind:OrbitalAngularMomentumQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Principal Quantum Number\" describes the electron shell, or energy level, of an atom. The value of $n$ ranges from 1 to the shell containing the outermost electron of that atom."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$l^2 = \\hbar^2 l(l + 1), l = 0, 1, ..., n - 1$, where $l_i$ refers to a specific particle $i$."^^qudt:LatexString ; + qudt:symbol "l" ; + rdfs:comment "Applicable units are those of quantitykind:OrbitalAngularMomentumQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Orbital Angular Momentum Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber ; + skos:closeMatch quantitykind:MagneticQuantumNumber ; + skos:closeMatch quantitykind:PrincipalQuantumNumber ; + skos:closeMatch quantitykind:SpinQuantumNumber . + +quantitykind:OrbitalRadialDistance + a qudt:QuantityKind ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:symbol "r" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Orbital Radial Distance"@en ; + skos:broader quantitykind:Length . + +quantitykind:OrderOfReflection + a qudt:QuantityKind ; + dcterms:description "\"Order of Reflection\" is $n$ in the Bragg's Law equation."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.answers.com/topic/order-of-reflection"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:OrderOfReflection" ; + rdfs:isDefinedBy ; + rdfs:label "Order of Reflection"@en . + +quantitykind:OsmoticCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Osmotic Coefficient\" is a quantity which characterises the deviation of a solvent from ideal behavior."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Osmotic_coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = -(M_A\\sum b_B)^{-1} \\ln a_A$, where $M_A$ is the molar mass of the solvent $A$, $\\sum$ denotes summation over all the solutes, $b_B$ is the molality of solute $B$, and $a_A$ is the activity of solvent $A$."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Osmotic Coefficient\" is a quantity which characterises the deviation of a solvent from ideal behavior." ; + rdfs:comment "Applicable units are those of quantitykind:OsmoticCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Osmotic Coefficient"@en . + +quantitykind:OsmoticConcentration + a qudt:QuantityKind ; + dcterms:description "The \"Osmotic Concentration\" is the moles of an osmotically active entity (solute) in the volume of a solution."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:informativeReference "https://doi.org/10.1351/goldbook.O04343"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Osmotic_concentration"^^xsd:anyURI ; + qudt:latexDefinition "$osmolarity = \\sum_{i} \\varphi_i n_i C_i, where \\varphi is the osmotic coefficient of the solution n, is the number of particles (e.g. ions), C is the molar concentration of the solute, and i is the index of solute$"^^qudt:LatexString ; + qudt:latexSymbol "$\\c$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Osmotic Concentration\" is the moles of an osmotically active entity (solute) in the volume of a solution." ; + rdfs:isDefinedBy ; + rdfs:label "Osmotic Concentration"@en . + +quantitykind:OsmoticPressure + a qudt:QuantityKind ; + dcterms:description "The \"Osmotic Pressure\" is the pressure which needs to be applied to a solution to prevent the inward flow of water across a semipermeable membrane."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Osmotic_pressure"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = -(M_A\\sum b_B)^{-1} \\ln a_A$, where $M_A$ is the molar mass of the solvent $A$, $\\sum$ denotes summation over all the solutes, $b_B$ is the molality of solute $B$, and $a_A$ is the activity of solvent $A$."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Osmotic Pressure\" is the pressure which needs to be applied to a solution to prevent the inward flow of water across a semipermeable membrane." ; + qudt:symbol "Π" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Osmotický tlak"@cs ; + rdfs:label "Tekanan osmotik"@ms ; + rdfs:label "osmotic pressure"@en ; + rdfs:label "osmotischer Druck"@de ; + rdfs:label "ozmotik basıç"@tr ; + rdfs:label "presión osmótica"@es ; + rdfs:label "pression osmotique"@fr ; + rdfs:label "pressione osmotica"@it ; + rdfs:label "pressão osmótica"@pt ; + rdfs:label "فشار اسمزی"@fa ; + rdfs:label "渗透压"@zh ; + skos:broader quantitykind:Pressure . + +quantitykind:OverRangeDistance + a qudt:QuantityKind ; + dcterms:description "Additional distance traveled by a rocket because Of excessive initial velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Additional distance traveled by a rocket because Of excessive initial velocity." ; + qudt:symbol "s_i" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Over-range distance"@en ; + skos:broader quantitykind:Length . + +quantitykind:PREDICTED-MASS + a qudt:QuantityKind ; + dcterms:description "Sum of the basic mass and the MGA. Current prediction of the final mass based on the current requirements and design."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Sum of the basic mass and the MGA. Current prediction of the final mass based on the current requirements and design." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Predicted Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:PRODUCT-OF-INERTIA + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Product of Inertia}$ is a measure of a body's dynamic + (or coupled) imbalance resulting in a precession when rotating about an axis + other than the body's principal axis. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis." ; + rdfs:isDefinedBy ; + rdfs:label "Product of Inertia"@en . + +quantitykind:PRODUCT-OF-INERTIA_X + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Product of Inertia in the X axis}$ is a measure of a body's + dynamic (or coupled) imbalance resulting in a precession when rotating about an + axis other than the body's principal axis. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis." ; + rdfs:isDefinedBy ; + rdfs:label "Product of Inertia in the X axis"@en ; + skos:broader quantitykind:PRODUCT-OF-INERTIA . + +quantitykind:PRODUCT-OF-INERTIA_Y + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Product of Inertia in the Y axis}$ is a measure of a body's + dynamic (or coupled) imbalance resulting in a precession when rotating about an axis + other than the body's principal axis. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription """ + The quantity kind 'Product of Inertia in the Y axis' is a measure of a body's + dynamic (or coupled) imbalance resulting in a precession when rotating about an axis + other than the body's principal axis. + """ ; + rdfs:isDefinedBy ; + rdfs:label "Product of Inertia in the Y axis"@en ; + skos:broader quantitykind:PRODUCT-OF-INERTIA . + +quantitykind:PRODUCT-OF-INERTIA_Z + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Product of Inertia in the Z axis}$ is a measure of a body's + dynamic (or coupled) imbalance resulting in a precession when rotating about an axis + other than the body's principal axis. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis." ; + rdfs:isDefinedBy ; + rdfs:label "Product of Inertia in the Z axis"@en ; + skos:broader quantitykind:PRODUCT-OF-INERTIA . + +quantitykind:PackingFraction + a qudt:QuantityKind ; + dcterms:description "The \"Packing Fraction\" is the fraction of volume in a crystal structure that is occupied by atoms."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_packing_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$f = \\frac{\\Delta_r}{A}$, where $\\Delta_r$ is the relative mass excess and $A$ is the nucleon number."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Packing Fraction\" is the fraction of volume in a crystal structure that is occupied by atoms." ; + qudt:symbol "f" ; + rdfs:comment "Applicable units are those of quantitykind:PackingFraction" ; + rdfs:isDefinedBy ; + rdfs:label "Packing Fraction"@en . + +quantitykind:PartialPressure + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Partial Pressure}$ is the pressure that the gas would + have if it alone occupied the volume of the mixture at the same temperature. + """^^qudt:LatexString ; + qudt:abbreviation "pa" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Partial_pressure"^^xsd:anyURI ; + qudt:latexDefinition "$p_B = x_B \\cdot p$, where $x_B$ is the amount-of-substance fraction of substance $B$ and $p$ is the total pressure."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "\"Partial Pressure\" is the pressure that the gas would have if it alone occupied the volume of the mixture at the same temperature." ; + qudt:symbol "p_B" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Partial Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:ParticleCurrent + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Particle Current}$ can be used to describe the net number + of particles passing through a surface in an infinitesimal time interval. + """^^qudt:LatexString ; + qudt:altSymbol "S" ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\int J \\cdot e_n dA = \\frac{dN}{dt}$, where $e_ndA$ is the vector surface element, $N$ is the net number of particles passing over a surface, and $dt$ describes the time interval."^^qudt:LatexString ; + qudt:plainTextDescription "\"Particle Current\" can be used to describe the net number of particles passing through a surface in an infinitesimal time interval." ; + qudt:symbol "J" ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Current"@en ; + skos:broader quantitykind:Frequency . + +quantitykind:ParticleCurrentDensity + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Particle Current Density}$ is a vector whose component is + perpendicular to a surface equal to the net number of particles crossing that surface + in the positive direction per unit area and per unit time. + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD132" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD132"^^xsd:anyURI ; + qudt:plainTextDescription "Vektor, dessen Komponente senkrecht zu einer Fläche gleich der Nettoanzahl von Teilchen ist, die flächen- und zeitbezogen in positiver Richtung durch diese Fläche hindurchgehen"@de ; + qudt:symbol "0173-1#Z4-BAJ388#002" ; + rdfs:isDefinedBy ; + rdfs:label "particle current density" ; + rdfs:label "particle current density"@en-US . + +quantitykind:ParticleFluence + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Particle Fluence}$ is the total number of particles that + intersect a unit area in a specific time interval of interest, and has units of $m^{-2}$ + (number of particles per meter squared). + """^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-HA ; + qudt:applicableUnit unit:NUM-PER-KiloM2 ; + qudt:applicableUnit unit:NUM-PER-M2 ; + qudt:applicableUnit unit:PER-IN2 ; + qudt:applicableUnit unit:PER-M-NanoM ; + qudt:applicableUnit unit:PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD133" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fluence"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD133"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\Phi = \\frac{dN}{dA}$, where $dN$ describes the number of particles incident on a small spherical domain at a given point in space, and $dA$ describes the cross-sectional area of that domain."^^qudt:LatexString ; + qudt:latexSymbol "$\\Phi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Particle Fluence\" is the total number of particles that intersect a unit area in a specific time interval of interest, and has units of /m2 (number of particles per meter squared)." ; + rdfs:comment "Applicable units are those of quantitykind:ParticleFluence" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Fluence"@en . + +quantitykind:ParticleFluenceRate + a qudt:QuantityKind ; + dcterms:description "\"Particle Fluence Rate\" can be defined as the total number of particles (typically Gamma Ray Photons ) crossing over a sphere of unit cross section which surrounds a Point Source of Ionising Radiation."^^qudt:LatexString ; + qudt:applicableUnit unit:MicroM-PER-L-DAY ; + qudt:applicableUnit unit:PER-M2-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:informativeReference "http://www.encyclo.co.uk/define/Fluence%20Rate"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\theta = \\frac{d\\Phi}{dt}$, where $d\\Phi$ is the increment of the particle fluence during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ; + qudt:latexSymbol "$\\theta$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Particle Fluence Rate\" can be defined as the total number of particles (typically Gamma Ray Photons ) crossing over a sphere of unit cross section which surrounds a Point Source of Ionising Radiation." ; + rdfs:comment "Applicable units are those of quantitykind:ParticleFluenceRate" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Fluence Rate"@en . + +quantitykind:ParticleNumberDensity + a qudt:QuantityKind ; + dcterms:description "The \"Particle Number Density\" is obtained by dividing the particle number of a system by its volume."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM-PER-L ; + qudt:applicableUnit unit:NUM-PER-M3 ; + qudt:applicableUnit unit:NUM-PER-MicroL ; + qudt:applicableUnit unit:NUM-PER-MilliL ; + qudt:applicableUnit unit:NUM-PER-MilliM3 ; + qudt:applicableUnit unit:NUM-PER-NanoL ; + qudt:applicableUnit unit:NUM-PER-PicoL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_number#Particle_number_density"^^xsd:anyURI ; + qudt:latexDefinition "$n = \\frac{N}{V}$, where $N$ is the number of particles in the 3D domain with the volume $V$."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Particle Number Density\" is obtained by dividing the particle number of a system by its volume." ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:NumberDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Number Density"@en ; + skos:broader quantitykind:NumberDensity . + +quantitykind:ParticlePositionVector + a qudt:QuantityKind ; + dcterms:description "\"Particle Position Vector\" is the position vector of a particle."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Position_(vector)"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Particle Position Vector\" is the position vector of a particle." ; + qudt:symbol "r, R" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Position Vector"@en ; + skos:broader quantitykind:Length . + +quantitykind:ParticleSourceDensity + a qudt:QuantityKind ; + dcterms:description "\"Particle Source Density\" is the rate of production of particles in a 3D domain divided by the volume of that element."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-M3-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Particle Source Density\" is the rate of production of particles in a 3D domain divided by the volume of that element." ; + qudt:symbol "S" ; + rdfs:comment "Applicable units are those of quantitykind:ParticleSourceDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Particle Source Density"@en . + +quantitykind:PathLength + a qudt:QuantityKind ; + dcterms:description "\"PathLength\" is "^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Path_length"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"PathLength\" is " ; + qudt:symbol "s" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Path Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:PayloadMass + a qudt:QuantityKind ; + dcterms:description "Payload mass is the mass of the payload carried by the craft. In a multistage spacecraft the payload mass of the last stage is the mass of the payload and the payload masses of the other stages are considered to be the gross masses of the next stages."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "Payload mass is the mass of the payload carried by the craft. In a multistage spacecraft the payload mass of the last stage is the mass of the payload and the payload masses of the other stages are considered to be the gross masses of the next stages." ; + qudt:symbol "M_P" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Payload Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:PayloadRatio + a qudt:QuantityKind ; + dcterms:description "The payload ratio is defined as the mass of the payload divided by the empty mass of the structure. Because of the extra cost involved in staging rockets, given the choice, it's often more economic to use few stages with a small payload ratio rather than more stages each with a high payload ratio."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "The payload ratio is defined as the mass of the payload divided by the empty mass of the structure. Because of the extra cost involved in staging rockets, given the choice, it's often more economic to use few stages with a small payload ratio rather than more stages each with a high payload ratio." ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Payload Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:PeltierCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Peltier Coefficient\" represents how much heat current is carried per unit charge through a given material. It is the heat power developed at a junction, divided by the electric current flowing from substance a to substance b."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermoelectric_effect"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\Pi_{ab}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Peltier Coefficient\" represents how much heat current is carried per unit charge through a given material. It is the heat power developed at a junction, divided by the electric current flowing from substance a to substance b." ; + rdfs:isDefinedBy ; + rdfs:label "Peltier Coefficient"@en . + +quantitykind:Period + a qudt:QuantityKind ; + dcterms:description "Duration of one cycle of a periodic phenomenon."^^qudt:LatexString ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:plainTextDescription "Duration of one cycle of a periodic phenomenon." ; + rdfs:comment "Applicable units are those of quantitykind:Period" ; + rdfs:isDefinedBy ; + rdfs:label "Period"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:Permeability + a qudt:QuantityKind ; + qudt:applicableUnit unit:H-PER-M ; + qudt:applicableUnit unit:H_Stat-PER-CentiM ; + qudt:applicableUnit unit:MicroH-PER-M ; + qudt:applicableUnit unit:NanoH-PER-M ; + qudt:exactMatch quantitykind:ElectromagneticPermeability ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD134" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD134"^^xsd:anyURI ; + qudt:siExactMatch si-quantity:PRME ; + rdfs:comment "Applicable units are those of quantitykind:Permeability" ; + rdfs:isDefinedBy ; + rdfs:label "Permeability"@en . + +quantitykind:PermeabilityRatio + a qudt:QuantityKind ; + dcterms:description "The ratio of the effective permeability of a porous phase to the absolute permeability."^^qudt:LatexString ; + qudt:applicableUnit unit:PERMEABILITY_REL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ; + qudt:plainTextDescription "The ratio of the effective permeability of a porous phase to the absolute permeability." ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:PermeabilityRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Permeability Ratio"@en . + +quantitykind:Permeance + a qudt:QuantityKind ; + dcterms:description "\"Permeance\" is the inverse of reluctance. Permeance is a measure of the quantity of flux for a number of current-turns in magnetic circuit. A magnetic circuit almost acts as though the flux is \"conducted\", therefore permeance is larger for large cross sections of a material and smaller for longer lengths. This concept is analogous to electrical conductance in the electric circuit."^^qudt:LatexString ; + qudt:applicableUnit unit:NanoH ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD135" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Permeance"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD135"^^xsd:anyURI ; + qudt:latexDefinition "$\\Lambda = \\frac{1}{R_m}$, where $R_m$ is reluctance."^^qudt:LatexString ; + qudt:latexSymbol "$\\Lambda$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Permeance\" is the inverse of reluctance. Permeance is a measure of the quantity of flux for a number of current-turns in magnetic circuit. A magnetic circuit almost acts as though the flux is \"conducted\", therefore permeance is larger for large cross sections of a material and smaller for longer lengths. This concept is analogous to electrical conductance in the electric circuit." ; + rdfs:comment "Applicable units are those of quantitykind:Permeance" ; + rdfs:isDefinedBy ; + rdfs:label "Permeance"@en ; + rdfs:seeAlso quantitykind:Reluctance . + +quantitykind:Permittivity + a qudt:QuantityKind ; + dcterms:description "\"Permittivity\" is a physical quantity that describes how an electric field affects, and is affected by a dielectric medium, and is determined by the ability of a material to polarize in response to the field, and thereby reduce the total electric field inside the material. Permittivity is often a scalar valued quantity, however in the general case it is tensor-valued."^^qudt:LatexString ; + qudt:applicableUnit unit:FARAD-PER-KiloM ; + qudt:applicableUnit unit:FARAD-PER-M ; + qudt:applicableUnit unit:FARAD_Ab-PER-CentiM ; + qudt:applicableUnit unit:MicroFARAD-PER-KiloM ; + qudt:applicableUnit unit:MicroFARAD-PER-M ; + qudt:applicableUnit unit:NanoFARAD-PER-M ; + qudt:applicableUnit unit:PicoFARAD-PER-M ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:iec61360Code "0112/2///62720#UAD136" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Permittivity?oldid=494094133"^^xsd:anyURI ; + qudt:informativeReference "http://maxwells-equations.com/materials/permittivity.php"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD136"^^xsd:anyURI ; + qudt:latexDefinition "$\\epsilon = \\frac{D}{E}$, where $D$ is electric flux density and $E$ is electric field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\epsilon$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Permittivity\" is a physical quantity that describes how an electric field affects, and is affected by a dielectric medium, and is determined by the ability of a material to polarize in response to the field, and thereby reduce the total electric field inside the material. Permittivity is often a scalar valued quantity, however in the general case it is tensor-valued." ; + qudt:siExactMatch si-quantity:PRMI ; + rdfs:comment "Applicable units are those of quantitykind:Permittivity" ; + rdfs:isDefinedBy ; + rdfs:label "Permittivity"@en . + +quantitykind:PermittivityRatio + a qudt:QuantityKind ; + dcterms:description "\"Permittivity Ratio\" is the ratio of permittivity to the permittivity of a vacuum."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ; + qudt:expression "$rel-permittivity$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\epsilon_r = \\epsilon / \\epsilon_0$, where $\\epsilon$ is permittivity and $\\epsilon_0$ is the electric constant."^^qudt:LatexString ; + qudt:latexSymbol "$\\epsilon_r$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Permittivity Ratio\" is the ratio of permittivity to the permittivity of a vacuum." ; + qudt:qkdvDenominator qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:qkdvNumerator qkdv:A0E2L-3I0M-1H0T4D0 ; + rdfs:comment "Applicable units are those of quantitykind:PermittivityRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Permittivity Ratio"@en ; + rdfs:seeAlso quantitykind:Permittivity ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:PhaseCoefficient + a qudt:QuantityKind ; + dcterms:description "The phase coefficient is the amount of phase shift that occurs as the wave travels one meter. Increasing the loss of the material, via the manipulation of the material's conductivity, will decrease the wavelength (increase $\\beta$) and increase the attenuation coefficient (increase $\\alpha$)."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ; + qudt:latexDefinition "If $F(x) = Ae^{-\\alpha x} \\cos{[\\beta (x - x_0)]}$, then $\\alpha$ is the attenuation coefficient and $\\beta$ is the phase coefficient."^^qudt:LatexString ; + qudt:latexSymbol "$\\beta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:PhaseCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Phase coefficient"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:PhaseDifference + a qudt:QuantityKind ; + dcterms:description "\"Phase Difference\" is the difference, expressed in electrical degrees or time, between two waves having the same frequency and referenced to the same point in time. Two oscillators that have the same frequency and different phases have a phase difference, and the oscillators are said to be out of phase with each other. The amount by which such oscillators are out of step with each other can be expressed in degrees from $0^\\circ$ to $360^\\circ$, or in radians from 0 to ${2\\pi}$. If the phase difference is $180^\\circ$ ($\\pi$ radians), then the two oscillators are said to be in antiphase."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:expression "$phase-difference$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Phase_(waves)#Phase_difference"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=103-07-06"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = \\varphi_u - \\varphi_i$, where $\\varphi_u$ is the initial phase of the voltage and $\\varphi_i$ is the initial phase of the electric current."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Phasenverschiebungswinkel"@de ; + rdfs:label "diferencia de fase"@es ; + rdfs:label "diferença de fase"@pt ; + rdfs:label "différence de phase"@fr ; + rdfs:label "phase difference"@en ; + rdfs:label "przesunięcie fazowe"@pl ; + rdfs:label "sfasamento angolare"@it ; + rdfs:label "اختلاف طور"@ar ; + rdfs:label "位相差"@ja ; + skos:altLabel "desfasagem"@pt ; + skos:altLabel "déphasage"@fr ; + skos:broader quantitykind:Angle . + +quantitykind:PhaseSpeedOfSound + a qudt:QuantityKind ; + dcterms:description "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. Each frequency component propagates at its own Phase Velocity of Sound."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:KiloHZ-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ; + qudt:latexDefinition "$c = \\frac{\\omega}{k} = \\lambda f$, where $\\omega$ is the angular frequency, $k$ is angular wavenumber, $\\lambda$ is the wavelength, and $f$ is the frequency."^^qudt:LatexString ; + qudt:plainTextDescription "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. Each frequency component propagates at its own Phase Velocity of Sound." ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:PhaseSpeedOfSound" ; + rdfs:isDefinedBy ; + rdfs:label "Phase speed of sound"@en ; + skos:broader quantitykind:SpeedOfSound ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:PhononMeanFreePath + a qudt:QuantityKind ; + dcterms:description "\"Phonon Mean Free Path\" is the mean free path of phonons."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Phonon Mean Free Path\" is the mean free path of phonons." ; + qudt:symbol "l_{ph}" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Phonon Mean Free Path"@en ; + skos:broader quantitykind:Length . + +quantitykind:PhotoThresholdOfAwarenessFunction + a qudt:QuantityKind ; + dcterms:description "\"Photo Threshold of Awareness Function\" is the ability of the human eye to detect a light that results in a $1^o$ radial angle at the eye with a given duration (temporal summation)."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "https://www.britannica.com/science/human-eye/Colour-vision"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Photo Threshold of Awareness Function"@en . + +quantitykind:PhotonIntensity + a qudt:QuantityKind ; + dcterms:description "A measure of flux of photons per solid angle"^^qudt:LatexString ; + qudt:applicableUnit unit:PER-SEC-SR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD137" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD137"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Photon_counting"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:PhotonIntensity" ; + rdfs:isDefinedBy ; + rdfs:label "Photon Intensity"@en . + +quantitykind:PhotonLuminance + a qudt:QuantityKind ; + dcterms:description "ratio between the photon flux at a point on a surface and in a given direction and the product of the solid angle and the orthogonal projection of this element on a plane perpendicular to the given direction "@en ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD138" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD138"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient aus dem durch eine Fläche in einer Richtung durchgehenden Photonenstrom und dem Produkt aus dem durchstrahlten Raumwinkel und der Projektion dieser Fläche auf eine Ebene senkrecht zur betrachteten Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ363#002" ; + rdfs:isDefinedBy ; + rdfs:label "photon luminance" ; + rdfs:label "photon luminance"@en-US . + +quantitykind:PhotonRadiance + a qudt:QuantityKind ; + dcterms:description "A measure of flux of photons per surface area per solid angle"^^qudt:LatexString ; + qudt:applicableUnit unit:PER-SEC-M2-SR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Photon_counting"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:PhotonRadiance" ; + rdfs:isDefinedBy ; + rdfs:label "Photon Radiance"@en . + +quantitykind:PhotosyntheticPhotonFlux + a qudt:QuantityKind ; + dcterms:description "Photosynthetic Photon Flux (PPF) is a measurement of the total number of photons emitted by a light source each second within the PAR wavelength range and is measured in μmol/s. Lighting manufacturers may specify their grow light products in terms of PPF. It can be considered as analogous to measuring the luminous flux (lumens) of visible light which would typically require the use of an integrating sphere or a goniometer system with spectroradiometer sensor."^^qudt:LatexString ; + prov:wasDerivedFrom ; + qudt:applicableUnit unit:MicroMOL-PER-SEC ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Photosynthetically_active_radiation#Units"^^xsd:anyURI ; + qudt:plainTextDescription "Photosynthetic Photon Flux (PPF) is a measurement of the total number of photons emitted by a light source each second within the PAR wavelength range and is measured in μmol/s. Lighting manufacturers may specify their grow light products in terms of PPF. It can be considered as analogous to measuring the luminous flux (lumens) of visible light which would typically require the use of an integrating sphere or a goniometer system with spectroradiometer sensor." ; + rdfs:comment "Applicable units are those of quantitykind:PhotosyntheticPhotonFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Photosynthetic Photon Flux"@en ; + skos:altLabel "PPF" . + +quantitykind:PhotosyntheticPhotonFluxDensity + a qudt:QuantityKind ; + dcterms:description "Photosynthetically Active Radiation are the wavelengths of light within the visible range of 400 to 700 nanometers (nm) that are critical for photosynthesis. PPFD measures the amount of PAR light (photons) that arrive at the plant’s surface each second. The PPFD is measured at various distances with a Full-spectrum Quantum Sensor, also known as a PAR meter. Natural sunlight has a PAR value of 900-1500μMol/m2/s when the sun is directly overhead. For a grow light to be effective, it should have PAR values of 500-1500 μMol/m2/s."^^qudt:LatexString ; + prov:wasDerivedFrom ; + qudt:applicableUnit unit:MOL-PER-M2-DAY ; + qudt:applicableUnit unit:MOL-PER-M2-SEC ; + qudt:applicableUnit unit:MicroMOL-PER-M2-DAY ; + qudt:applicableUnit unit:MicroMOL-PER-M2-HR ; + qudt:applicableUnit unit:MicroMOL-PER-M2-SEC ; + qudt:applicableUnit unit:MilliMOL-PER-M2-DAY ; + qudt:applicableUnit unit:MilliMOL-PER-M2-SEC ; + qudt:applicableUnit unit:NanoMOL-PER-M2-DAY ; + qudt:applicableUnit unit:PicoMOL-PER-M2-DAY ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:informativeReference "https://www.gigahertz-optik.com/en-us/service-and-support/knowledge-base/measurement-of-par/"^^xsd:anyURI ; + qudt:plainTextDescription "Photosynthetically Active Radiation are the wavelengths of light within the visible range of 400 to 700 nanometers (nm) that are critical for photosynthesis. PPFD measures the amount of PAR light (photons) that arrive at the plant’s surface each second. The PPFD is measured at various distances with a Full-spectrum Quantum Sensor, also known as a PAR meter. Natural sunlight has a PAR value of 900-1500μMol/m2/s when the sun is directly overhead. For a grow light to be effective, it should have PAR values of 500-1500 μMol/m2/s." ; + rdfs:comment "Applicable units are those of quantitykind:PhotosyntheticPhotonFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Photosynthetic Photon Flux Density"@en ; + skos:altLabel "PPFD" . + +quantitykind:PictureElement + a qudt:QuantityKind ; + dcterms:description "smallest element of a display space (cell size) of a digitized two-dimensional field representation of an image which has an address (x and y coordinates corresponding to its position in the field) and a specific brightness value"@en ; + qudt:applicableUnit unit:PIXEL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD299" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD299"^^xsd:anyURI ; + qudt:plainTextDescription "kleinstes Element einer Darstellungsfläche (Zellgröße) einer digitalisierten zweidimensionalen Felddarstellung eines Bildes, die eine Adresse (x- und y-Koordinaten entsprechend seiner Position im Feld) und einen spezifischen Helligkeitswert besitzt"@de ; + qudt:symbol "0173-1#Z4-BAJ437#002" ; + rdfs:comment "Applicable units are those of quantitykind:PictureElement" ; + rdfs:isDefinedBy ; + rdfs:label "picture element" ; + rdfs:label "picture element"@en-US . + +quantitykind:Piece + a qudt:QuantityKind ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD146" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD146"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Count" ; + rdfs:isDefinedBy ; + rdfs:label "piece" ; + skos:broader quantitykind:Count . + +quantitykind:PlanarForce + a qudt:QuantityKind ; + dcterms:description "Another name for Force Per Area, used by the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pressure"^^xsd:anyURI ; + qudt:plainTextDescription "Another name for Force Per Area, used by the Industry Foundation Classes (IFC) standard." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Flächenlast"@de ; + rdfs:label "Planar Force"@en ; + skos:broader quantitykind:ForcePerArea . + +quantitykind:PlanckFunction + a qudt:QuantityKind ; + dcterms:description "The $\\textit{Planck function}$ is used to compute the radiance emitted from objects that radiate like a perfect \"Black Body\". The inverse of the $\\textit{Planck Function}$ is used to find the $\\textit{Brightness Temperature}$ of an object. The precise formula for the Planck Function depends on whether the radiance is determined on a $\\textit{per unit wavelength}$ or a $\\textit{per unit frequency}$. In the ISO System of Quantities, $\\textit{Planck Function}$ is defined by the formula: $Y = -G/T$, where $G$ is Gibbs Energy and $T$ is thermodynamic temperature."^^qudt:LatexString ; + qudt:expression "$B_{\\nu}(T)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://pds-atmospheres.nmsu.edu/education_and_outreach/encyclopedia/planck_function.htm"^^xsd:anyURI ; + qudt:informativeReference "http://www.star.nesdis.noaa.gov/smcd/spb/calibration/planck.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition """The Planck function, $B_{\\tilde{\\nu}}(T)$, is given by: +$B_{\\nu}(T) = \\frac{2h c^2\\tilde{\\nu}^3}{e^{hc / k \\tilde{\\nu} T}-1}$ +where, $\\tilde{\\nu}$ is wavelength, $h$ is Planck's Constant, $k$ is Boltzman's Constant, $c$ is the speed of light in a vacuum, $T$ is thermodynamic temperature."""^^qudt:LatexString ; + rdfs:isDefinedBy ; + rdfs:label "Planck Function"@en ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy . + +quantitykind:PlaneAngle + a qudt:QuantityKind ; + dcterms:description "The inclination to each other of two intersecting lines, measured by the arc of a circle intercepted between the two lines forming the angle, the center of the circle being the point of intersection. An acute angle is less than $90^\\circ$, a right angle $90^\\circ$; an obtuse angle, more than $90^\\circ$ but less than $180^\\circ$; a straight angle, $180^\\circ$; a reflex angle, more than $180^\\circ$ but less than $360^\\circ$; a perigon, $360^\\circ$. Any angle not a multiple of $90^\\circ$ is an oblique angle. If the sum of two angles is $90^\\circ$, they are complementary angles; if $180^\\circ$, supplementary angles; if $360^\\circ$, explementary angles."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Plane_angle"^^xsd:anyURI ; + qudt:exactMatch quantitykind:Angle ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD140" ; + qudt:informativeReference "http://www.thefreedictionary.com/plane+angle"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD140"^^xsd:anyURI ; + qudt:plainTextDescription "An angle formed by two straight lines (in the same plane) angle - the space between two lines or planes that intersect; the inclination of one line to another; measured in degrees or radians" ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siExactMatch si-quantity:ANGP ; + rdfs:comment "Applicable units are those of quantitykind:PlaneAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Rovinný úhel"@cs ; + rdfs:label "Sudut satah"@ms ; + rdfs:label "angle plan"@fr ; + rdfs:label "angolo piano"@it ; + rdfs:label "angulus planus"@la ; + rdfs:label "düzlemsel açı"@tr ; + rdfs:label "ebener Winkel"@de ; + rdfs:label "kąt płaski"@pl ; + rdfs:label "medida angular"@pt ; + rdfs:label "plane angle"@en ; + rdfs:label "ravninski kot"@sl ; + rdfs:label "szög"@hu ; + rdfs:label "unghi plan"@ro ; + rdfs:label "ángulo plano"@es ; + rdfs:label "Επίπεδη γωνία"@el ; + rdfs:label "Плоский угол"@ru ; + rdfs:label "Равнинен ъгъл"@bg ; + rdfs:label "זווית"@he ; + rdfs:label "الزاوية النصف قطرية"@ar ; + rdfs:label "زاویه مستوی"@fa ; + rdfs:label "क्षेत्र"@hi ; + rdfs:label "弧度"@ja ; + rdfs:label "角度"@zh . + +quantitykind:PoissonRatio + a qudt:QuantityKind ; + dcterms:description "The Poisson Ratio is the negative ratio of transverse to axial strain. In fact, when a sample object is stretched (or squeezed), to an extension (or contraction) in the direction of the applied load, it corresponds a contraction (or extension) in a direction perpendicular to the applied load. The ratio between these two quantities is the Poisson's ratio."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Poisson%27s_ratio"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\frac{\\Delta \\delta}{\\Delta l}$, where $\\Delta \\delta$ is the lateral contraction and $\\Delta l$ is the elongation."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "The Poisson Ratio is the negative ratio of transverse to axial strain. In fact, when a sample object is stretched (or squeezed), to an extension (or contraction) in the direction of the applied load, it corresponds a contraction (or extension) in a direction perpendicular to the applied load. The ratio between these two quantities is the Poisson's ratio." ; + rdfs:comment "Applicable units are those of quantitykind:PoissonRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Poisson Ratio"@en . + +quantitykind:PolarMomentOfInertia + a qudt:QuantityKind ; + dcterms:description "The polar moment of inertia is a quantity used to predict an object's ability to resist torsion, in objects (or segments of objects) with an invariant circular cross-section and no significant warping or out-of-plane deformation. It is used to calculate the angular displacement of an object subjected to a torque. It is analogous to the area moment of inertia, which characterizes an object's ability to resist bending. "^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-CentiM2 ; + qudt:applicableUnit unit:KiloGM-M2 ; + qudt:applicableUnit unit:KiloGM-MilliM2 ; + qudt:applicableUnit unit:LB-FT2 ; + qudt:applicableUnit unit:LB-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Second_moment_of_area"^^xsd:anyURI ; + qudt:plainTextDescription "The polar moment of inertia is a quantity used to predict an object's ability to resist torsion, in objects (or segments of objects) with an invariant circular cross-section and no significant warping or out-of-plane deformation. It is used to calculate the angular displacement of an object subjected to a torque. It is analogous to the area moment of inertia, which characterizes an object's ability to resist bending. " ; + qudt:symbol "J_{zz}" ; + rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia" ; + rdfs:isDefinedBy ; + rdfs:label "Polar moment of inertia"@en ; + skos:broader quantitykind:MomentOfInertia . + +quantitykind:Polarizability + a qudt:QuantityKind ; + dcterms:description "\"Polarizability\" is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which may be caused by the presence of a nearby ion or dipole. The electronic polarizability $\\alpha$ is defined as the ratio of the induced dipole moment of an atom to the electric field that produces this dipole moment. Polarizability is often a scalar valued quantity, however in the general case it is tensor-valued."^^qudt:LatexString ; + dcterms:description "measure of the deformability of the electron shell of molecules and atoms"@en ; + qudt:applicableUnit unit:C-M2-PER-V ; + qudt:applicableUnit unit:C2-M2-PER-J ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Polarizability"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ; + qudt:iec61360Code "0112/2///62720#UAD141" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD141"^^xsd:anyURI ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:plainTextDescription "Maß für die Deformierbarkeit der Elektronenhülle von Molekülen und Atomen "@de ; + qudt:symbol "0173-1#Z4-BAJ365#002" ; + rdfs:comment "Applicable units are those of quantitykind:Polarizability" ; + rdfs:isDefinedBy ; + rdfs:label "Polarizability"@en-US ; + rdfs:label "polarisability"@en . + +quantitykind:PolarizationField + a qudt:QuantityKind ; + dcterms:description "The Polarization Field is the vector field that expresses the density of permanent or induced electric dipole moments in a dielectric material. The polarization vector P is defined as the ratio of electric dipole moment per unit volume."^^qudt:LatexString ; + qudt:applicableUnit unit:A-HR-PER-M2 ; + qudt:applicableUnit unit:C-PER-CentiM2 ; + qudt:applicableUnit unit:C-PER-M2 ; + qudt:applicableUnit unit:C-PER-MilliM2 ; + qudt:applicableUnit unit:C_Ab-PER-CentiM2 ; + qudt:applicableUnit unit:C_Stat-PER-CentiM2 ; + qudt:applicableUnit unit:KiloC-PER-M2 ; + qudt:applicableUnit unit:MegaC-PER-M2 ; + qudt:applicableUnit unit:MicroC-PER-M2 ; + qudt:applicableUnit unit:MilliC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:plainTextDescription "The Polarization Field is the vector field that expresses the density of permanent or induced electric dipole moments in a dielectric material. The polarization vector P is defined as the ratio of electric dipole moment per unit volume." ; + qudt:symbol "P" ; + rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Polarization Field"@en ; + skos:broader quantitykind:ElectricChargePerArea . + +quantitykind:Population + a qudt:QuantityKind ; + dcterms:description "Population typically refers to the number of people in a single area, whether it be a city or town, region, country, continent, or the world, but can also represent the number of any kind of entity."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Population"^^xsd:anyURI ; + qudt:plainTextDescription "Population typically refers to the number of people in a single area, whether it be a city or town, region, country, continent, or the world, but can also represent the number of any kind of entity." ; + rdfs:comment "Applicable units are those of quantitykind:Population" ; + rdfs:isDefinedBy ; + rdfs:label "Population"@en ; + skos:broader quantitykind:Count . + +quantitykind:PositionVector + a qudt:QuantityKind ; + dcterms:description "A \"Position Vector\", also known as location vector or radius vector, is a Euclidean vector which represents the position of a point P in space in relation to an arbitrary reference origin O."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Position_(vector)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$r = \\overrightarrow{OP}$, where $O$ and $P$ are two points in space."^^qudt:LatexString ; + qudt:plainTextDescription "A \"Position Vector\", also known as location vector or radius vector, is a Euclidean vector which represents the position of a point P in space in relation to an arbitrary reference origin O." ; + qudt:symbol "r" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Position Vector"@en ; + skos:broader quantitykind:Length . + +quantitykind:PositiveDimensionlessRatio + a qudt:QuantityKind ; + dcterms:description "A \"Positive Dimensionless Ratio\" is a dimensionless ratio that is greater than zero"^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "A \"Positive Dimensionless Ratio\" is a dimensionless ratio that is greater than zero" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Dimensionless Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:PositiveLength + a qudt:QuantityKind ; + dcterms:description "\"PositiveLength\" is a measure of length strictly greater than zero."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "\"PositiveLength\" is a measure of length strictly greater than zero." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Length"@en ; + skos:broader quantitykind:NonNegativeLength . + +quantitykind:PositivePlaneAngle + a qudt:QuantityKind ; + dcterms:description "A \"PositivePlaneAngle\" is a plane angle strictly greater than zero."^^qudt:LatexString ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.thefreedictionary.com/plane+angle"^^xsd:anyURI ; + qudt:plainTextDescription "A \"PositivePlaneAngle\" is a plane angle strictly greater than zero." ; + rdfs:comment "Applicable units are those of quantitykind:PlaneAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Positive Plane Angle"@en ; + skos:broader quantitykind:PlaneAngle . + +quantitykind:PotentialEnergy + a qudt:QuantityKind ; + dcterms:description "Energy possessed by a body by virtue of its position in a gravity field in contrast with kinetic energy, that possessed by virtue of its motion."^^qudt:LatexString ; + qudt:altSymbol "U" ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Potential_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Potential_energy"^^xsd:anyURI ; + qudt:latexDefinition "$V = -\\int F \\cdot dr$, where $F$ is a conservative force and $R$ is a position vector."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:plainTextDescription "Energy possessed by a body by virtue of its position in a gravity field in contrast with kinetic energy, that possessed by virtue of its motion." ; + qudt:symbol "PE" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Energia potencjalna"@pl ; + rdfs:label "Energie potențială"@ro ; + rdfs:label "Potansiyel enerji"@tr ; + rdfs:label "Tenaga keupayaan"@ms ; + rdfs:label "energia potencial"@pt ; + rdfs:label "energia potenziale"@it ; + rdfs:label "energía potencial"@es ; + rdfs:label "potenciální energie"@cs ; + rdfs:label "potential energy"@en ; + rdfs:label "potentielle Energie"@de ; + rdfs:label "énergie potentielle"@fr ; + rdfs:label "потенциальная энергия"@ru ; + rdfs:label "انرژی پتانسیل"@fa ; + rdfs:label "طاقة وضع"@ar ; + rdfs:label "स्थितिज ऊर्जा"@hi ; + rdfs:label "位置エネルギー"@ja ; + rdfs:label "势能"@zh ; + skos:broader quantitykind:Energy . + +quantitykind:Power + a qudt:QuantityKind ; + dcterms:description "Power is the rate at which work is performed or energy is transmitted, or the amount of energy required or expended for a given unit of time. As a rate of change of work done or the energy of a subsystem, power is: $P = W/t$, where $P$ is power, $W$ is work and {t} is time."^^qudt:LatexString ; + qudt:altSymbol "p" ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Power"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Power"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Power_%28physics%29"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$P = F \\cdot v$, where $F$ is force and $v$ is velocity."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:POWR ; + qudt:symbol "P" ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Kuasa"@ms ; + rdfs:label "Leistung"@de ; + rdfs:label "Výkon"@cs ; + rdfs:label "güç"@tr ; + rdfs:label "moc"@pl ; + rdfs:label "moč"@sl ; + rdfs:label "potencia"@es ; + rdfs:label "potentia"@la ; + rdfs:label "potenza"@it ; + rdfs:label "potência"@pt ; + rdfs:label "power"@en ; + rdfs:label "puissance"@fr ; + rdfs:label "putere"@ro ; + rdfs:label "teljesítmény , hőáramlás"@hu ; + rdfs:label "Ισχύς"@el ; + rdfs:label "Мощност"@bg ; + rdfs:label "Мощность"@ru ; + rdfs:label "הספק"@he ; + rdfs:label "القدرة"@ar ; + rdfs:label "توان، نرخ جریان گرما"@fa ; + rdfs:label "शक्ति"@hi ; + rdfs:label "功率、热流"@zh ; + rdfs:label "電力・仕事率"@ja ; + skos:altLabel "flux energetic"@ro ; + skos:altLabel "strumień promieniowania"@pl ; + skos:altLabel "ısı akış oranı"@tr ; + skos:altLabel "विकिरणी बहाव"@hi . + +quantitykind:PowerArea + a qudt:QuantityKind ; + qudt:applicableUnit unit:W-M2 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:PowerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Power Area"@en . + +quantitykind:PowerAreaPerSolidAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:W-M2-PER-SR ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:PowerAreaPerSolidAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Power Area per Solid Angle"@en . + +quantitykind:PowerConstant + a qudt:QuantityKind ; + dcterms:description "ratio indicating the relationship between continuous power and continuous current"@en ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:plainTextDescription "Verhältnis, das den Zusammenhang zwischen der Dauerkraft zum Dauerstrom kennzeichnet"@de ; + qudt:symbol "0173-1#Z4-BAJ330#003" ; + rdfs:isDefinedBy ; + rdfs:label "power constant"@en-US . + +quantitykind:PowerFactor + a qudt:QuantityKind ; + dcterms:description "\"Power Factor\", under periodic conditions, is the ratio of the absolute value of the active power $P$ to the apparent power $S$."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:expression "$power-factor$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-46"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda = \\left | P \\right | / \\left | S \\right |$, where $P$ is active power and $S$ is apparent power."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:PowerFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Leistungsfaktor"@de ; + rdfs:label "Współczynnik mocy"@pl ; + rdfs:label "facteur de puissance"@fr ; + rdfs:label "factor de potencia"@es ; + rdfs:label "factor de putere"@ro ; + rdfs:label "faktor kuasa"@ms ; + rdfs:label "fator de potência"@pt ; + rdfs:label "fattore di potenza"@it ; + rdfs:label "güç faktörü"@tr ; + rdfs:label "power factor"@en ; + rdfs:label "Účiník"@cs ; + rdfs:label "Коэффициент_мощности"@ru ; + rdfs:label "ضریب توان"@fa ; + rdfs:label "معامل القدرة"@ar ; + rdfs:label "शक्ति गुणांक"@hi ; + rdfs:label "力率"@ja ; + rdfs:label "功率因数"@zh ; + rdfs:seeAlso quantitykind:ActivePower ; + rdfs:seeAlso quantitykind:ApparentPower . + +quantitykind:PowerPerArea + a qudt:QuantityKind ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://www.physicsforums.com/library.php?do=view_item&itemid=406"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Power Per Area"@en . + +quantitykind:PowerPerAreaAngle + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + rdfs:isDefinedBy ; + rdfs:label "Power per Area Angle"@en . + +quantitykind:PowerPerAreaQuarticTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:W-PER-M2-K4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-4T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerAreaQuarticTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Power per area quartic temperature"@en . + +quantitykind:PowerPerElectricCharge + a qudt:QuantityKind ; + dcterms:description "\"Power Per Electric Charge\" is the amount of energy generated by a unit of electric charge."^^qudt:LatexString ; + qudt:applicableUnit unit:MilliV-PER-MIN ; + qudt:applicableUnit unit:V-PER-MicroSEC ; + qudt:applicableUnit unit:V-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:plainTextDescription "\"Power Per Electric Charge\" is the amount of energy generated by a unit of electric charge." ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Power Per Electric Charge"@en . + +quantitykind:PoyntingVector + a qudt:QuantityKind ; + dcterms:description """ + A $\\textit{Poynting Vector}$ is the vector product of the electric field strength $\\mathbf{E}$ + and the magnetic field strength $\\mathbf{H}$ of the electromagnetic field at a given point. + The flux of the Poynting vector through a closed surface is equal to the electromagnetic power passing + through this surface. + For a periodic electromagnetic field, the time average of the Poynting vector is a vector of which, + with certain reservations, the direction may be considered as being the direction of propagation + of electromagnetic energy and the magnitude considered as being the average electromagnetic power + flux density. + """^^qudt:LatexString ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:expression "$poynting-vector$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-66"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{S} = \\mathbf{E} \\times \\mathbf{H} $, where $\\mathbf{E}$ is electric field strength and \\mathbf{H} is magnetic field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\mathbf{S} $"^^qudt:LatexString ; + qudt:plainTextDescription "\"Poynting Vector\" is the vector product of the electric field strength $\\mathbf{E}$ and the magnetic field strength $\\mathbf{H}\" of the electromagnetic field at a given point. The flux of the Poynting vector through a closed surface is equal to the electromagnetic power passing through this surface. For a periodic electromagnetic field, the time average of the Poynting vector is a vector of which, with certain reservations, the direction may be considered as being the direction of propagation of electromagnetic energy and the magnitude considered as being the average electromagnetic power flux density." ; + rdfs:comment "Applicable units are those of quantitykind:PoyntingVector" ; + rdfs:isDefinedBy ; + rdfs:label "Poynting vector"@en ; + rdfs:label "Poynting-Vektor"@de ; + rdfs:label "vecteur de Poynting"@fr ; + rdfs:label "vector de Poynting"@es ; + rdfs:label "vector de Poynting"@pt ; + rdfs:label "vettore di Poynting"@it ; + rdfs:label "wektor Poyntinga"@pl ; + rdfs:label "вектор Пойнтинга"@ru ; + rdfs:label "متجَه بوينتنج"@ar ; + rdfs:label "ポインティングベクトル"@ja . + +quantitykind:Pressure + a qudt:QuantityKind ; + dcterms:description "Pressure is an effect which occurs when a force is applied on a surface. Pressure is the amount of force acting on a unit area. Pressure is distinct from stress, as the former is the ratio of the component of force normal to a surface to the surface area. Stress is a tensor that relates the vector force to the vector area."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pressure"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD142" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pressure"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD142"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$p = \\frac{dF}{dA}$, where $dF$ is the force component perpendicular to the surface element of area $dA$."^^qudt:LatexString ; + qudt:plainTextDescription "Pressure is an effect which occurs when a force is applied on a surface. Pressure is the amount of force acting on a unit area. Pressure is distinct from stress, as the former is the ratio of the component of force normal to a surface to the surface area. Stress is a tensor that relates the vector force to the vector area." ; + qudt:siExactMatch si-quantity:PRES ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Druck"@de ; + rdfs:label "Tekanan"@ms ; + rdfs:label "Tlak"@cs ; + rdfs:label "basınç"@tr ; + rdfs:label "ciśnienie"@pl ; + rdfs:label "nyomás"@hu ; + rdfs:label "presiune"@ro ; + rdfs:label "presión"@es ; + rdfs:label "pressio"@la ; + rdfs:label "pression"@fr ; + rdfs:label "pressione"@it ; + rdfs:label "pressure"@en ; + rdfs:label "pressão"@pt ; + rdfs:label "tlak"@sl ; + rdfs:label "Πίεση - τάση"@el ; + rdfs:label "Давление"@ru ; + rdfs:label "Налягане"@bg ; + rdfs:label "לחץ"@he ; + rdfs:label "الضغط أو الإجهاد"@ar ; + rdfs:label "فشار، تنش"@fa ; + rdfs:label "दबाव"@hi ; + rdfs:label "压强、压力"@zh ; + rdfs:label "圧力"@ja ; + skos:altLabel "naprężenie"@pl ; + skos:altLabel "pritisk"@sl ; + skos:altLabel "tegasan"@ms ; + skos:altLabel "tensione meccanica"@it ; + skos:altLabel "tensiune mecanică"@ro ; + skos:altLabel "tensão"@pt ; + skos:altLabel "механично напрежение"@bg ; + skos:altLabel "दाब"@hi ; + skos:broader quantitykind:ForcePerArea . + +quantitykind:PressureBasedAmountOfSubstanceConcentration + a qudt:QuantityKind ; + dcterms:description "ratio between the amount-of-substance of a dissolved material and the mass of its solvent divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Molarität (Quotient aus der Stoffmenge eines gelösten Stoffes und dem Volumen der Lösung) dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ307#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based amount-of-substance concentration"@en-US . + +quantitykind:PressureBasedDensity + a qudt:QuantityKind ; + dcterms:description "ratio of density divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Dichte dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ299#003" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based density"@en-US . + +quantitykind:PressureBasedDynamicViscosity + a qudt:QuantityKind ; + dcterms:description "ratio of dynamic viscosity divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:plainTextDescription "Quotient aus der dynamischen Viskosität dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ300#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based dynamic viscosity"@en-US . + +quantitykind:PressureBasedElectricCurrent + a qudt:QuantityKind ; + dcterms:description "ratio of electric current divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient elektrische Stromstärke dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ309#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based electric current"@en-US . + +quantitykind:PressureBasedElectricVoltage + a qudt:QuantityKind ; + dcterms:description "ratio of electric voltage divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient elektrischer Spannung dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ301#003" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based electric voltage"@en-US . + +quantitykind:PressureBasedKinematicViscosity + a qudt:QuantityKind ; + dcterms:description "ratio of dynamic viscosity and density of the material divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ303#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based kinematic viscosity"@en-US . + +quantitykind:PressureBasedLength + a qudt:QuantityKind ; + dcterms:description "ratio of length divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Länge dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ304#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based length"@en-US . + +quantitykind:PressureBasedMass + a qudt:QuantityKind ; + dcterms:description "ratio of mass divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Masse dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ305#003" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based mass"@en-US . + +quantitykind:PressureBasedMassFlow + a qudt:QuantityKind ; + dcterms:description "ratio of mass flow divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Massenstrom dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ310#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based mass flow"@en-US . + +quantitykind:PressureBasedMolality + a qudt:QuantityKind ; + dcterms:description "ratio of molality divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:A1E0L1I0M-2H0T2D0 ; + qudt:plainTextDescription "Quotient Molalität dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ306#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based molality"@en-US . + +quantitykind:PressureBasedQuantity + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based quantity"@en-US . + +quantitykind:PressureBasedTemperature + a qudt:QuantityKind ; + dcterms:description "ratio of temperature divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Temperatur dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ308#003" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based temperature"@en-US . + +quantitykind:PressureBasedVelocity + a qudt:QuantityKind ; + dcterms:description "ratio of velocity divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Geschwindigkeit dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ302#001" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based velocity"@en-US . + +quantitykind:PressureBasedVolume + a qudt:QuantityKind ; + dcterms:description "ratio of volume divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Volumen dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ312#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based volume"@en-US . + +quantitykind:PressureBasedVolumeFlow + a qudt:QuantityKind ; + dcterms:description "ratio of volume flow divided by the related pressure"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient Volumenstrom dividiert durch den zugehörigen Druck"@de ; + qudt:symbol "0173-1#Z4-BAJ311#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure-based volume flow"@en-US . + +quantitykind:PressureBurningRateConstant + a qudt:QuantityKind ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Pressure Burning Rate Constant"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:PressureBurningRateIndex + a qudt:QuantityKind ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\beta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Pressure Burning Rate Index"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:PressureCoefficient + a qudt:QuantityKind ; + qudt:applicableUnit unit:BAR-PER-DEG_C ; + qudt:applicableUnit unit:BAR-PER-K ; + qudt:applicableUnit unit:HectoPA-PER-K ; + qudt:applicableUnit unit:KiloPA-PER-K ; + qudt:applicableUnit unit:MegaPA-PER-K ; + qudt:applicableUnit unit:PA-PER-K ; + qudt:expression "$pres-coef$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD143" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD143"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\beta = \\left (\\frac{\\partial p}{\\partial T} \\right )_V$, where $p$ is $pressure$, $T$ is thermodynamic temperature and $V$ is volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\beta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:PressureCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Pressure Coefficient"@en . + +quantitykind:PressureGradient + a qudt:QuantityKind ; + dcterms:description "differential pressure divided by the associated length"@en ; + qudt:applicableUnit unit:ATM-PER-M ; + qudt:applicableUnit unit:ATM_T-PER-M ; + qudt:applicableUnit unit:HectoPA-PER-M ; + qudt:applicableUnit unit:KiloPA-PER-M ; + qudt:applicableUnit unit:MilliPA-PER-M ; + qudt:applicableUnit unit:PSI-PER-IN ; + qudt:applicableUnit unit:TORR-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD144" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD144"^^xsd:anyURI ; + qudt:plainTextDescription "Differenzdruck dividiert durch die zugehörige Länge"@de ; + qudt:symbol "0173-1#Z4-BAJ313#003" ; + rdfs:comment "Applicable units are those of quantitykind:PressureGradient" ; + rdfs:isDefinedBy ; + rdfs:label "pressure gradient" ; + rdfs:label "pressure gradient"@en-US . + +quantitykind:PressureInRelationToVolumeFlow + a qudt:QuantityKind ; + dcterms:description "ratio between pressure and the volume flow at a given cross-sectional area, passing through this cross-sectional area "@en ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ; + qudt:plainTextDescription "an einer festgelegten Querschnittsfläche der Quotient Druck durch den Volumenstrom, der durch diese Querschnittsfläche hindurchgeht"@de ; + qudt:symbol "0173-1#Z4-BAJ290#002" ; + rdfs:isDefinedBy ; + rdfs:label "pressure in relation to volume flow"@en-US . + +quantitykind:PressureInRelationToVolumeFlowRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:DYN-SEC-PER-CentiM5 ; + qudt:applicableUnit unit:PA-SEC-PER-L ; + qudt:applicableUnit unit:PA-SEC-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD145" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD145"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:PressureInRelationToVolumeFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "pressure in relation to volume flow rate" . + +quantitykind:PressureLossPerLength + a qudt:QuantityKind ; + dcterms:description "\"Pressure Loss per Length\" refers to the power lost in overcoming the friction between two moving surfaces. Also referred to as \"Friction Loss\"."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M2-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Friction_loss"^^xsd:anyURI ; + qudt:plainTextDescription "\"Pressure Loss per Length\" refers to the power lost in overcoming the friction between two moving surfaces. Also referred to as \"Friction Loss\"." ; + rdfs:comment "Applicable units are those of quantitykind:PressureLossPerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Pressure Loss per Length"@en . + +quantitykind:PressureRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:BAR-PER-BAR ; + qudt:applicableUnit unit:HectoPA-PER-BAR ; + qudt:applicableUnit unit:KiloPA-PER-BAR ; + qudt:applicableUnit unit:MegaPA-PER-BAR ; + qudt:applicableUnit unit:MilliBAR-PER-BAR ; + qudt:applicableUnit unit:PA-PER-BAR ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PSI-PER-PSI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:PressureRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Pressure Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Prevalence + a qudt:QuantityKind ; + dcterms:description "In epidemiology, prevalence is the proportion of a particular population found to be affected by a medical condition (typically a disease or a risk factor such as smoking or seatbelt use) at a specific time. (Wikipedia)"^^qudt:LatexString ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Prevalence"^^xsd:anyURI ; + qudt:plainTextDescription "In epidemiology, prevalence is the proportion of a particular population found to be affected by a medical condition (typically a disease or a risk factor such as smoking or seatbelt use) at a specific time. (Wikipedia)" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:Prevalence" ; + rdfs:isDefinedBy ; + rdfs:label "Prevalence"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:PrincipalQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Principal Quantum Number\" describes the electron shell, or energy level, of an atom. The value of $n$ ranges from 1 to the shell containing the outermost electron of that atom."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:PrincipalQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Principal Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber ; + skos:closeMatch quantitykind:MagneticQuantumNumber ; + skos:closeMatch quantitykind:OrbitalAngularMomentumQuantumNumber ; + skos:closeMatch quantitykind:SpinQuantumNumber . + +quantitykind:PropagationCoefficient + a qudt:QuantityKind ; + dcterms:description "The propagation constant, symbol $\\gamma$, for a given system is defined by the ratio of the amplitude at the source of the wave to the amplitude at some distance x."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Propagation_constant"^^xsd:anyURI ; + qudt:latexDefinition "$\\gamma = \\alpha + j\\beta$, where $\\alpha$ is the attenuation coefficient and $\\beta$ is the phase coefficient."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:PropagationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Propagation coefficient"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:PropellantBurnRate + a qudt:QuantityKind ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:PropellantBurnRate" ; + rdfs:isDefinedBy ; + rdfs:label "Propellant Burn Rate"@en ; + skos:broader quantitykind:BurnRate . + +quantitykind:PropellantMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_f" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Propellant Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:PropellantMeanBulkTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Propellant Mean Bulk Temperature"@en ; + skos:altLabel "PMBT" ; + skos:broader quantitykind:PropellantTemperature . + +quantitykind:PropellantTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Propellant Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:QualityFactor + a qudt:QuantityKind ; + dcterms:description "\"Quality Factor\", of a resonant circuit, is a measure of the \"goodness\" or quality of a resonant circuit. A higher value for this figure of merit correspondes to a more narrow bandwith, which is desirable in many applications. More formally, $Q$ is the ratio of power stored to power dissipated in the circuit reactance and resistance, respectively"^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.sourcetronic.com/electrical-measurement-glossary/quality-factor.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.allaboutcircuits.com/vol_2/chpt_6/6.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "If $\\underline{Z} = R + jX$, then $Q = \\left | X \\right |/R$, where $\\underline{Z}$ is impedance, $R$ is resistance, and $X$ is reactance."^^qudt:LatexString ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:QualityFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Quality Factor"@en ; + rdfs:seeAlso quantitykind:Impedance ; + rdfs:seeAlso quantitykind:Resistance ; + vaem:todo "Resolve Quality Facor - electronics and also doses" . + +quantitykind:QuantityOfLight + a qudt:QuantityKind ; + dcterms:description "work of a light source provided in the form of light as the product of the luminous flux Φ produced by the light source and the time t for which this is radiated"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD147" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD147"^^xsd:anyURI ; + qudt:plainTextDescription "in Form von Licht aufgebrachte Arbeit einer Lichtquelle als Produkt aus dem von der Lichtquelle ausgehenden Lichtstrom Φ und der Zeit t, während dieser ausgestrahlt wird"@de ; + qudt:symbol "0173-1#Z4-BAJ243#002" ; + rdfs:isDefinedBy ; + rdfs:label "quantity of light" ; + rdfs:label "quantity of light"@en-US . + +quantitykind:QuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Quantum Number\" describes values of conserved quantities in the dynamics of the quantum system. Perhaps the most peculiar aspect of quantum mechanics is the quantization of observable quantities, since quantum numbers are discrete sets of integers or half-integers."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Quantum Number\" describes values of conserved quantities in the dynamics of the quantum system. Perhaps the most peculiar aspect of quantum mechanics is the quantization of observable quantities, since quantum numbers are discrete sets of integers or half-integers." ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:QuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Quantum Number"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:RESERVE-MASS + a qudt:QuantityKind ; + dcterms:description "A quantity of mass held by Program/project management to mitigate the risk of over-predicted performance estimates, under predicted mass estimates, and future operational and mission specific requirements (program mass reserve, manager's mass reserve, launch window reserve, performance reserve, etc.)."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "A quantity of mass held by Program/project management to mitigate the risk of over-predicted performance estimates, under predicted mass estimates, and future operational and mission specific requirements (program mass reserve, manager's mass reserve, launch window reserve, performance reserve, etc.)." ; + qudt:symbol "M_{E}" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Reserve Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:RF-Power + a qudt:QuantityKind ; + dcterms:description "Radio-Frequency Power. Power level of electromagnetic waves alternating at the frequency of radio waves (up to 10^10 Hz)."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-M ; + qudt:applicableUnit unit:V_Ab-PER-CentiM ; + qudt:applicableUnit unit:V_Stat-PER-CentiM ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:informativeReference "https://www.analog.com/en/technical-articles/measurement-control-rf-power-parti.html"^^xsd:anyURI ; + qudt:plainTextDescription "Radio-Frequency Power. Power level of electromagnetic waves alternating at the frequency of radio waves (up to 10^10 Hz)." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricField" ; + rdfs:isDefinedBy ; + rdfs:label "RF-Power Level"@en ; + skos:broader quantitykind:SignalStrength . + +quantitykind:RadialDistance + a qudt:QuantityKind ; + dcterms:description "In classical geometry, the \"Radial Distance\" is a coordinate in polar coordinate systems (r, $\\theta$). Basically the radial distance is the scalar Euclidean distance between a point and the origin of the system of coordinates."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radial_distance_(geometry)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$d = \\sqrt{r_1^2 + r_2^2 -2r_1r_2\\cos{(\\theta_1 - \\theta_2)}}$, where $P_1$ and $P_2$ are two points with polar coordinates $(r_1, \\theta_1)$ and $(r_2, \\theta_2)$, respectively, and $d$ is the distance."^^qudt:LatexString ; + qudt:latexSymbol "$r_Q, \\rho$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Radial Distance"@en ; + skos:broader quantitykind:Length . + +quantitykind:Radiance + a qudt:QuantityKind ; + dcterms:description "\"Radiance\" is a radiometric measure that describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle in a specified direction."^^qudt:LatexString ; + qudt:applicableUnit unit:W-PER-M2-SR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD148" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD148"^^xsd:anyURI ; + qudt:latexDefinition "$L = \\frac{dI}{dA}\\frac{1}{cos\\alpha}$, where $dI$ is the radiant intensity emitted from an element of the surface area $dA$, and angle $\\alpha$ is the angle between the normal to the surface and the given direction."^^qudt:LatexString ; + qudt:plainTextDescription "\"Radiance\" is a radiometric measure that describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle in a specified direction." ; + qudt:siExactMatch si-quantity:RADI ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:Radiance" ; + rdfs:isDefinedBy ; + rdfs:label "Radiance"@en ; + skos:broader quantitykind:PowerPerAreaAngle . + +quantitykind:RadianceFactor + a qudt:QuantityKind ; + dcterms:description "Radiance Factor is the ratio of the radiance of the surface element in the given direction to that of a perfect reflecting or transmitting diffuser identically irradiated unit."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.encyclo.co.uk/define/radiance%20factor"^^xsd:anyURI ; + qudt:latexDefinition "$\\beta = \\frac{L_n}{L_d}$, where $L_n$ is the radiance of a surface element in a given direction and $L_d$ is the radiance of the perfect reflecting or transmitting diffuser identically irradiated and viewed. Reflectance factor is equivalent to radiance factor or luminance factor (when the cone angle is infinitely small, and is equivalent to reflectance when the cone angle is $2π sr$."^^qudt:LatexString ; + qudt:latexSymbol "$\\beta$"^^qudt:LatexString ; + qudt:plainTextDescription "Radiance Factor is the ratio of the radiance of the surface element in the given direction to that of a perfect reflecting or transmitting diffuser identically irradiated unit." ; + rdfs:comment "Applicable units are those of quantitykind:RadianceFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Radiance Factor"@en . + +quantitykind:RadiantEmmitance + a qudt:QuantityKind ; + dcterms:description "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Irradiance"^^xsd:anyURI ; + qudt:latexDefinition "$M = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the radiant flux leaving the element of the surface area $dA$."^^qudt:LatexString ; + qudt:plainTextDescription "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface." ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Emmitance"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:RadiantEnergy + a qudt:QuantityKind ; + dcterms:description """ + In radiometry, $\\textit{Radiant Energy}$ is the energy of electromagnetic waves. + The quantity of radiant energy may be calculated by integrating radiant flux (or power) with respect to time. + In nuclear physics, $\\textit{Radiant Energy}$ is energy, excluding rest energy, of the particles that are emitted, transferred, or received. + """^^qudt:LatexString ; + qudt:abbreviation "M-L2-PER-T2" ; + qudt:altSymbol "R" ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy"^^xsd:anyURI ; + qudt:latexDefinition "$Q_e$"^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "In radiometry,\"Radiant Energy} is the energy of electromagnetic waves. The quantity of radiant energy may be calculated by integrating radiant flux (or power) with respect to time. In nuclear physics, $\\textit{Radiant Energy\" is energy, excluding rest energy, of the particles that are emitted, transferred, or received." ; + qudt:symbol "Q_e" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Işınım erkesi"@tr ; + rdfs:label "Strahlungsenergie"@de ; + rdfs:label "Tenaga sinaran"@ms ; + rdfs:label "energia promienista"@pl ; + rdfs:label "energia radiante"@it ; + rdfs:label "energia radiante"@pt ; + rdfs:label "energie záření"@cs ; + rdfs:label "energía radiante"@es ; + rdfs:label "radiant energy"@en ; + rdfs:label "énergie rayonnante"@fr ; + rdfs:label "энергия излучения"@ru ; + rdfs:label "انرژی تابشی"@fa ; + rdfs:label "طاقة إشعاعية"@ar ; + rdfs:label "विकिरण ऊर्जा"@hi ; + rdfs:label "放射エネルギー"@ja ; + rdfs:label "辐射能"@zh ; + skos:broader quantitykind:Energy ; + skos:closeMatch quantitykind:LuminousEnergy . + +quantitykind:RadiantEnergyDensity + a qudt:QuantityKind ; + dcterms:description "\"Radiant Energy Density\", or radiant power, is the radiant energy per unit volume."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy_density"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31892"^^xsd:anyURI ; + qudt:latexDefinition "$w$, $\\rho = \\frac{dQ}{dV}$, where $dQ$ is the radiant energy in an elementary three-dimensional domain, and $dV$ is the volume."^^qudt:LatexString ; + qudt:latexSymbol "$w, \\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Radiant Energy Density\", or radiant power, is the radiant energy per unit volume." ; + rdfs:comment "Applicable units are those of quantitykind:RadiantEnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Energy Density"@en . + +quantitykind:RadiantEnergyExposure + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD149" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD149"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "radiant energy exposure" . + +quantitykind:RadiantExposure + a qudt:QuantityKind ; + dcterms:description "Radiant exposure is a measure of the total radiant energy incident on a surface per unit area; equal to the integral over time of the radiant flux density. Also known as exposure."^^qudt:LatexString ; + qudt:abbreviation "J-PER-CM2" ; + qudt:applicableUnit unit:BTU_IT-PER-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2 ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2 ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:ERG-PER-CentiM2 ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2 ; + qudt:applicableUnit unit:FT-LB_F-PER-M2 ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:J-PER-CentiM2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:KiloBTU_IT-PER-FT2 ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-SEC2 ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloW-HR-PER-M2 ; + qudt:applicableUnit unit:LANGLEY ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:MegaJ-PER-M2 ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:W-HR-PER-M2 ; + qudt:applicableUnit unit:W-SEC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD150" ; + qudt:informativeReference "http://omlc.ogi.edu/education/ece532/class1/irradiance.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD150"^^xsd:anyURI ; + qudt:latexDefinition "$H = \\int_{0}^{\\Delta t}{E}{dt}$, where $E$ is the irradiance acting during the time interval with duration $\\Delta t$."^^qudt:LatexString ; + qudt:plainTextDescription "Radiant exposure is a measure of the total radiant energy incident on a surface per unit area; equal to the integral over time of the radiant flux density. Also known as exposure." ; + qudt:symbol "H_e" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Exposure"@en ; + skos:broader quantitykind:EnergyPerArea . + +quantitykind:RadiantFluence + a qudt:QuantityKind ; + dcterms:description "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:LANGLEY ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:latexDefinition "$H_0 = \\int_{0}^{\\Delta t}{E_0}{dt}$, where $E_0$ is the spherical radiance acting during time interval with duration $\\Delta t$."^^qudt:LatexString ; + qudt:plainTextDescription "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere." ; + qudt:symbol "H_e,0" ; + rdfs:comment "Applicable units are those of quantitykind:RadiantFluence" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Fluence"@en . + +quantitykind:RadiantFluenceRate + a qudt:QuantityKind ; + dcterms:description "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere."^^qudt:LatexString ; + qudt:abbreviation "M-PER-T3" ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://goldbook.iupac.org/FT07376.html"^^xsd:anyURI ; + qudt:latexDefinition "$E_0 = \\int{L}{d\\Omega}$, where $d\\Omega$ is the solid angle of each elementary beam passing through the given point and $L$ its radiance at that point in the direction of the beam."^^qudt:LatexString ; + qudt:plainTextDescription "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere." ; + qudt:symbol "E_e,0" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Fluence Rate"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:RadiantFlux + a qudt:QuantityKind ; + dcterms:description "Radiant Flux, or radiant power, is the measure of the total power of electromagnetic radiation (including infrared, ultraviolet, and visible light). The power may be the total emitted from a source, or the total landing on a particular surface."^^qudt:LatexString ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_flux"^^xsd:anyURI ; + qudt:latexDefinition "$\\Phi = \\frac{dQ}{dt}$, where $dQ$ is the radiant energy emitted, transferred, or received during a time interval of the duration $dt$."^^qudt:LatexString ; + qudt:latexSymbol "$\\phi$"^^qudt:LatexString ; + qudt:plainTextDescription "Radiant Flux, or radiant power, is the measure of the total power of electromagnetic radiation (including infrared, ultraviolet, and visible light). The power may be the total emitted from a source, or the total landing on a particular surface." ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Strahlungsfluss"@de ; + rdfs:label "flusso radiante"@it ; + rdfs:label "flux énergétique"@fr ; + rdfs:label "moc promieniowania"@pl ; + rdfs:label "potencia radiante"@es ; + rdfs:label "potência radiante"@pt ; + rdfs:label "radiant flux"@en ; + rdfs:label "قدرة إشعاعية"@ar ; + rdfs:label "放射パワー"@ja ; + skos:altLabel "Strahlungsleistung"@de ; + skos:altLabel "flujo radiante"@es ; + skos:altLabel "fluxo energético"@pt ; + skos:altLabel "moc promienista"@pl ; + skos:altLabel "potenza radiante"@it ; + skos:altLabel "puissance rayonnante"@fr ; + skos:altLabel "radiant power"@en ; + skos:broader quantitykind:Power . + +quantitykind:RadiantIntensity + a qudt:QuantityKind ; + dcterms:description "Radiant Intensity is a measure of the intensity of electromagnetic radiation. It is defined as power per unit solid angle."^^qudt:LatexString ; + qudt:applicableUnit unit:W-PER-SR ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD151" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_intensity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD151"^^xsd:anyURI ; + qudt:latexDefinition "$I = \\frac{d\\Phi}{d\\Omega}$, where $d\\Phi$ is the radiant flux leaving the source in an elementary cone containing the given direction with the solid angle $d\\Omega$."^^qudt:LatexString ; + qudt:plainTextDescription "Radiant Intensity is a measure of the intensity of electromagnetic radiation. It is defined as power per unit solid angle." ; + qudt:siExactMatch si-quantity:RAIN ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:RadiantIntensity" ; + rdfs:isDefinedBy ; + rdfs:label "Radiant Intensity"@en . + +quantitykind:RadiativeHeatTransfer + a qudt:QuantityKind ; + dcterms:description "\"Radiative Heat Transfer\" is proportional to $(T_1^4 - T_2^4)$ and area of the surface, where $T_1$ and $T_2$ are thermodynamic temperatures of two black surfaces, for non totally black surfaces an additional factor less than 1 is needed."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-MIN ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:BTU_TH-PER-HR ; + qudt:applicableUnit unit:BTU_TH-PER-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloBTU_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloCAL_TH-PER-HR ; + qudt:applicableUnit unit:KiloCAL_TH-PER-MIN ; + qudt:applicableUnit unit:KiloCAL_TH-PER-SEC ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_transfer#Radiation"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi_r$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Radiative Heat Transfer"@en ; + skos:broader quantitykind:HeatFlowRate . + +quantitykind:RadioactiveDecay + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD152" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD152"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "radioactive decay" ; + skos:broader quantitykind:InverseTime . + +quantitykind:Radioactivity + a qudt:QuantityKind ; + dcterms:description "number of spontaneous nuclear transformations in a defined amount of substance during a sufficiently small period of time divided by this period, expressed as a ratio ∂N/∂t, where ∂N is the expected value for the number of spontaneous transformations from this state within the time period ∂t"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Anzahl der spontanen Kernumwandlungen in einer gegebenen Menge eines Stoffes während eines hinreichend kleinen Zeitintervalls, dividiert durch dieses Zeitintervall, ausgedrückt als Quotient ∂N/∂t, wobei ∂N der Erwartungswert für die Anzahl der spontanen Übergänge aus diesem Zustand im Zeitintervall ∂t ist"@de ; + qudt:symbol "0173-1#Z4-BAJ230#002" ; + rdfs:isDefinedBy ; + rdfs:label "radioactivity"@en-US . + +quantitykind:Radiosity + a qudt:QuantityKind ; + dcterms:description "Radiosity is the total emitted and reflected radiation leaving a surface."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:plainTextDescription "Radiosity is the total emitted and reflected radiation leaving a surface." ; + rdfs:comment "Applicable units are those of quantitykind:Radiosity" ; + rdfs:isDefinedBy ; + rdfs:label "Radiosity"@en ; + skos:broader quantitykind:PowerPerArea . + +quantitykind:Radius + a qudt:QuantityKind ; + dcterms:description "In classical geometry, the \"Radius\" of a circle or sphere is any line segment from its center to its perimeter the radius of a circle or sphere is the length of any such segment."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Radius"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radius"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexDefinition "$r = \\frac{d}{2}$, where $d$ is the circle diameter."^^qudt:LatexString ; + qudt:plainTextDescription "In classical geometry, the \"Radius\" of a circle or sphere is any line segment from its center to its perimeter the radius of a circle or sphere is the length of any such segment." ; + qudt:symbol "r" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Radius"@en ; + skos:broader quantitykind:Length . + +quantitykind:RadiusOfCurvature + a qudt:QuantityKind ; + dcterms:description "In geometry, the \"Radius of Curvature\", R, of a curve at a point is a measure of the radius of the circular arc which best approximates the curve at that point."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radius_of_curvature_(mathematics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "In geometry, the \"Radius of Curvature\", R, of a curve at a point is a measure of the radius of the circular arc which best approximates the curve at that point." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Radius of Curvature"@en ; + skos:broader quantitykind:Length . + +quantitykind:RankineTemperature + a qudt:QuantityKind ; + dcterms:description "quantity which uses a temperature scale with a zero value at the absolute temperature zero (0 K) like the Kelvin scale, but, in contrast with it, uses the scale intervals of the Fahrenheit scale"@en ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD308" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD308"^^xsd:anyURI ; + qudt:plainTextDescription "Größe, die eine Temperaturskala benutzt, die wie die Kelvin-Skala beim absoluten Temperatur-Nullpunkt (0 K) ihren Nullwert hat, jedoch im Gegensatz zu dieser den Skalenabstand der Fahrenheit-Skala verwendet"@de ; + qudt:symbol "0173-1#Z4-BAJ367#002" ; + rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Rankine temperature" ; + rdfs:label "Rankine temperature"@en-US ; + skos:broader quantitykind:ThermodynamicTemperature . + +quantitykind:RateOfRiseOfVoltage + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:iec61360Code "0112/2///62720#UAD153" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD153"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "rate of rise of voltage" . + +quantitykind:Ratio + a qudt:QuantityKind ; + qudt:applicableUnit unit:ONE-PER-ONE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD154" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD154"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Ratio" ; + rdfs:isDefinedBy ; + rdfs:label "ratio" . + +quantitykind:RatioOfSpecificHeatCapacities + a qudt:QuantityKind ; + dcterms:description """ + The specific heat ratio of a gas is the ratio of the specific heat at constant pressure, + $c_p$, to the specific heat at constant volume, $c_V$. + It is sometimes referred to as the $\\textit{adiabatic index}$, + or the $\\textit{heat capacity ratio}$, + or the $\\textit{isentropic expansion factor}$, + or the $\\textit{adiabatic exponent}$, + or the $\\textit{isentropic exponent}$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Specific_heat_ratio"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\gamma = c_p / c_V$, where $c$ is the specific heat of a gas, $c_p$ is specific heat capacity at constant pressure, $c_V$ is specific heat capacity at constant volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:latexSymbol "$\\varkappa$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:RatioOfSpecificHeatCapacities" ; + rdfs:isDefinedBy ; + rdfs:label "Ratio of Specific Heat Capacities"@en ; + rdfs:seeAlso quantitykind:IsentropicExponent . + +quantitykind:Reactance + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Reactance}$ is the opposition of a circuit element to a change of electric current or voltage, + due to that element's inductance or capacitance. + A built-up electric field resists the change of voltage on the element, + while a magnetic field resists the change of current. + The notion of reactance is similar to electrical resistance, but they differ in several respects. + Capacitance and inductance are inherent properties of an element, just like resistance. + """^^qudt:LatexString ; + qudt:applicableUnit unit:OHM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electrical_reactance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electrical_reactance?oldid=494180019"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-46"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$X = im \\underline{Z}$, where $\\underline{Z}$ is impedance and $im$ denotes the imaginary part."^^qudt:LatexString ; + qudt:plainTextDescription "\"Reactance\" is the opposition of a circuit element to a change of electric current or voltage, due to that element's inductance or capacitance. A built-up electric field resists the change of voltage on the element, while a magnetic field resists the change of current. The notion of reactance is similar to electrical resistance, but they differ in several respects. Capacitance and inductance are inherent properties of an element, just like resistance." ; + qudt:symbol "X" ; + rdfs:comment "Applicable units are those of quantitykind:Reactance" ; + rdfs:isDefinedBy ; + rdfs:label "Reactance"@en ; + rdfs:seeAlso quantitykind:Impedance . + +quantitykind:ReactionEnergy + a qudt:QuantityKind ; + dcterms:description "\"Reaction Energy\" in a nuclear reaction, is the sum of the kinetic energies and photon energies of the reaction products minus the sum of the kinetic and photon energies of the reactants."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_reaction"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Reaction Energy\" in a nuclear reaction, is the sum of the kinetic energies and photon energies of the reaction products minus the sum of the kinetic and photon energies of the reactants." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Reaction Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:ReactivePower + a qudt:QuantityKind ; + dcterms:description "\"Reactive Power\", for a linear two-terminal element or two-terminal circuit, under sinusoidal conditions, is the quantity equal to the product of the apparent power $S$ and the sine of the displacement angle $\\psi$. The absolute value of the reactive power is equal to the non-active power. The ISO (and SI) unit for reactive power is the voltampere. The special name $\\textit{var}$ and symbol $\\textit{var}$ are given in IEC 60027 1."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaVAR ; + qudt:applicableUnit unit:KiloVAR ; + qudt:applicableUnit unit:MegaVAR ; + qudt:applicableUnit unit:MicroVAR ; + qudt:applicableUnit unit:MilliVAR ; + qudt:applicableUnit unit:NanoVAR ; + qudt:applicableUnit unit:PicoVAR ; + qudt:applicableUnit unit:TeraVAR ; + qudt:applicableUnit unit:VAR ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD155" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-44"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD155"^^xsd:anyURI ; + qudt:latexDefinition "$Q = lm \\underline{S}$, where $\\underline{S}$ is complex power. Alternatively expressed as: $Q = S \\cdot \\sin \\psi$, where $\\psi$ is the displacement angle."^^qudt:LatexString ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:ReactivePower" ; + rdfs:isDefinedBy ; + rdfs:label "Blindleistung"@de ; + rdfs:label "Jalový výkon"@cs ; + rdfs:label "Kuasa reaktif"@ms ; + rdfs:label "moc bierna"@pl ; + rdfs:label "potencia reactiva"@es ; + rdfs:label "potenza reattiva"@it ; + rdfs:label "potência reativa"@pt ; + rdfs:label "puissance réactive"@fr ; + rdfs:label "reactive power"@en ; + rdfs:label "reaktif güç"@tr ; + rdfs:label "القدرة الكهربائية الردفعلية;الردية"@ar ; + rdfs:label "توان راکتیو"@fa ; + rdfs:label "无功功率"@zh ; + rdfs:label "無効電力"@ja ; + rdfs:seeAlso quantitykind:ComplexPower ; + skos:broader quantitykind:ComplexPower . + +quantitykind:Reactivity + a qudt:QuantityKind ; + dcterms:description "\"Reactivity\" characterizes the deflection of reactor from the critical state."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_chain_reaction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = \\frac{k_{eff} - 1}{k_{eff}}$, where $k_{eff}$ is the effective multiplication factor."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Reactivity\" characterizes the deflection of reactor from the critical state." ; + rdfs:comment "Applicable units are those of quantitykind:Reactivity" ; + rdfs:isDefinedBy ; + rdfs:label "Reactivity"@en . + +quantitykind:ReactorTimeConstant + a qudt:QuantityKind ; + dcterms:description "The \"Reactor Time Constant\", also called the reactor period, is the time during which the neutron flux density in a reactor changes by the factor e = 2.718 (e: basis of natural logarithms), when the neutron flux density increases or decreases exponentially."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "https://www.euronuclear.org/glossary/reactor-time-constant/"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Reactor Time Constant\", also called the reactor period, is the time during which the neutron flux density in a reactor changes by the factor e = 2.718 (e: basis of natural logarithms), when the neutron flux density increases or decreases exponentially." ; + qudt:symbol "T" ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Reactor Time Constant"@en ; + skos:broader quantitykind:Time . + +quantitykind:ReciprocalElectricResistance + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the resistance value"@en ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Widerstandswert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ375#002" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal electric resistance"@en-US . + +quantitykind:ReciprocalEnergy + a qudt:QuantityKind ; + dcterms:description "multiplicative inverse of energy"@en ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:plainTextDescription "Kehrwert der Energie"@de ; + qudt:symbol "0173-1#Z4-BAJ417#002" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal energy"@en-US . + +quantitykind:ReciprocalPlaneAngle + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the angle value"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Winkelwert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ376#002" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal plane angle"@en-US . + +quantitykind:ReciprocalVoltage + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the voltage value"@en ; + qudt:applicableUnit unit:PER-V ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T3D0 ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Spannungswert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ371#002" ; + rdfs:comment "Applicable units are those of quantitykind:ReciprocalVoltage" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal voltage"@en-US . + +quantitykind:RecombinationCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Recombination Coefficient\" is the rate of recombination of positive ions with electrons or negative ions in a gas, per unit volume, divided by the product of the number of positive ions per unit volume and the number of electrons or negative ions per unit volume."^^qudt:LatexString ; + qudt:applicableUnit unit:M3-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/recombination+coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$-\\frac{dn^+}{dt} = -\\frac{dn^-}{dt} = an^+n^-$, where $n^+$ and $n^-$ are the ion number densities of positive and negative ions, respectively, recombined during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Recombination Coefficient\" is the rate of recombination of positive ions with electrons or negative ions in a gas, per unit volume, divided by the product of the number of positive ions per unit volume and the number of electrons or negative ions per unit volume." ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:RecombinationCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Recombination Coefficient"@en . + +quantitykind:Reflectance + a qudt:QuantityKind ; + dcterms:description "Reflectance generally refers to the fraction of incident power that is reflected at an interface, while the term \"reflection coefficient\" is used for the fraction of electric field reflected. Reflectance is always a real number between zero and 1.0."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reflectivity"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = \\frac{\\Phi_t}{\\Phi_m}$, where $\\Phi_t$ is the reflected radiant flux, the reflected luminous flux, or the reflected sound power and $\\Phi_m$ is the incident radiant flux, incident luminous flux, or incident sound power, respectively."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "Reflectance generally refers to the fraction of incident power that is reflected at an interface, while the term \"reflection coefficient\" is used for the fraction of electric field reflected. Reflectance is always a real number between zero and 1.0." ; + rdfs:comment "Applicable units are those of quantitykind:Reflectance" ; + rdfs:isDefinedBy ; + rdfs:label "Reflectance"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:ReflectanceFactor + a qudt:QuantityKind ; + dcterms:description "Reflectance Factor is the measure of the ability of a surface to reflect light or other electromagnetic radiation, equal to the ratio of the reflected flux to the incident flux."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.thefreedictionary.com/reflectance+factor"^^xsd:anyURI ; + qudt:latexDefinition "$R = \\frac{\\Phi_n}{\\Phi_d}$, where $\\Phi_n$ is the radiant flux or luminous flux reflected in the directions delimited by a given cone and $\\Phi_d$ is the flux reflected in the same directions by an identically radiated diffuser of reflectance equal to 1."^^qudt:LatexString ; + qudt:plainTextDescription "Reflectance Factor is the measure of the ability of a surface to reflect light or other electromagnetic radiation, equal to the ratio of the reflected flux to the incident flux." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:ReflectanceFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Reflectance Factor"@en . + +quantitykind:Reflectivity + a qudt:QuantityKind ; + dcterms:description """

For homogeneous and semi-infinite materials, reflectivity is the same as reflectance. Reflectivity is the square of the magnitude of the Fresnel reflection coefficient, which is the ratio of the reflected to incident electric field; as such the reflection coefficient can be expressed as a complex number as determined by the Fresnel equations for a single layer, whereas the reflectance is always a positive real number.

+ +

For layered and finite media, according to the CIE, reflectivity is distinguished from reflectance by the fact that reflectivity is a value that applies to thick reflecting objects. When reflection occurs from thin layers of material, internal reflection effects can cause the reflectance to vary with surface thickness. Reflectivity is the limit value of reflectance as the sample becomes thick; it is the intrinsic reflectance of the surface, hence irrespective of other parameters such as the reflectance of the rear surface. Another way to interpret this is that the reflectance is the fraction of electromagnetic power reflected from a specific sample, while reflectivity is a property of the material itself, which would be measured on a perfect machine if the material filled half of all space.

"""^^rdf:HTML ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reflectivity"^^xsd:anyURI ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription """For homogeneous and semi-infinite materials, reflectivity is the same as reflectance. Reflectivity is the square of the magnitude of the Fresnel reflection coefficient, which is the ratio of the reflected to incident electric field; as such the reflection coefficient can be expressed as a complex number as determined by the Fresnel equations for a single layer, whereas the reflectance is always a positive real number. + +For layered and finite media, according to the CIE, reflectivity is distinguished from reflectance by the fact that reflectivity is a value that applies to thick reflecting objects. When reflection occurs from thin layers of material, internal reflection effects can cause the reflectance to vary with surface thickness. Reflectivity is the limit value of reflectance as the sample becomes thick; it is the intrinsic reflectance of the surface, hence irrespective of other parameters such as the reflectance of the rear surface. Another way to interpret this is that the reflectance is the fraction of electromagnetic power reflected from a specific sample, while reflectivity is a property of the material itself, which would be measured on a perfect machine if the material filled half of all space.""" ; + rdfs:comment "Applicable units are those of quantitykind:Reflectance" ; + rdfs:isDefinedBy ; + rdfs:label "Reflectivity"@en ; + skos:broader quantitykind:Reflectance . + +quantitykind:RefractiveIndex + a qudt:QuantityKind ; + dcterms:description "\"refractive index\" or index of refraction n of a substance (optical medium) is a dimensionless number that describes how light, or any other radiation, propagates through that medium."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Refractive_index"^^xsd:anyURI ; + qudt:latexDefinition "$n = \\frac{c_0}{c}$, where $c_0$ is the speed of light in vacuum, and $c$ is the speed of light in the medium."^^qudt:LatexString ; + qudt:plainTextDescription "\"refractive index\" or index of refraction n of a substance (optical medium) is a dimensionless number that describes how light, or any other radiation, propagates through that medium." ; + qudt:symbol "n" ; + rdfs:comment "Applicable units are those of quantitykind:RefractiveIndex" ; + rdfs:isDefinedBy ; + rdfs:label "Brechzahl"@de ; + rdfs:label "Indeks biasan"@ms ; + rdfs:label "Index lomu"@cs ; + rdfs:label "Indice de refracție"@ro ; + rdfs:label "Współczynnik załamania"@pl ; + rdfs:label "indice de réfraction"@fr ; + rdfs:label "indice di rifrazione"@it ; + rdfs:label "kırılma indeksi"@tr ; + rdfs:label "refractive index"@en ; + rdfs:label "índice de refracción"@es ; + rdfs:label "índice refrativo"@pt ; + rdfs:label "Показатель преломления"@ru ; + rdfs:label "ضریب شکست"@fa ; + rdfs:label "معامل الانكسار"@ar ; + rdfs:label "अपवर्तनांक"@hi ; + rdfs:label "屈折率"@ja ; + rdfs:label "折射率"@zh ; + skos:altLabel "Brechungsindex"@de . + +quantitykind:RelativeAtomicMass + a qudt:QuantityKind ; + dcterms:description "\"Relative Atomic Mass \" is a dimensionless physical quantity, the ratio of the average mass of atoms of an element (from a given source) to 1/12 of the mass of an atom of carbon-12 (known as the unified atomic mass unit)"^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_atomic_mass"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "\"Relative Atomic Mass \" is a dimensionless physical quantity, the ratio of the average mass of atoms of an element (from a given source) to 1/12 of the mass of an atom of carbon-12 (known as the unified atomic mass unit)" ; + qudt:symbol "A_r" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Atomic Mass"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:RelativeHumidity + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Relative Humidity}$ is the ratio of the partial pressure of water vapor in an air-water mixture to the saturated vapor pressure of water at a prescribed temperature. + The relative humidity of air depends not only on temperature but also on the pressure of the system of interest. + $$$$ + $\\textit{Relative Humidity}$ is also referred to as $\\textit{Relative Partial Pressure}$. + $$$$ + Relative partial pressure is often referred to as $RH$ and expressed in percent. + """^^qudt:LatexString ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERCENT_RH ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_humidity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = p / p_{sat}$, where $p$ is partial pressure of vapour, $p_{sat}$ is thermodynamic temperature and $V$ is its partial pressure at saturation (at the same temperature). Relative partial pressure is often referred to as $RH$ and expressed in percent. $\\textit{Relative Humidity}$ is also referred to as $\\textit{Relative Partial Pressure}$."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:RelativeHumidity" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Humidity"@en ; + rdfs:seeAlso quantitykind:AbsoluteHumidity ; + skos:altLabel "RH" ; + skos:broader quantitykind:RelativePartialPressure . + +quantitykind:RelativeMassConcentrationOfVapour + a qudt:QuantityKind ; + dcterms:description "\"Relative Mass Concentration of Vapour\" is one of a number of \"Relative Concentration\" quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = v / v_{sat}$, where $v$ is mass concentration of water vapour, $v_{sat}$ is its mass concentration of water vapour at saturation (at the same temperature). For normal cases, the relative partial pressure may be assumed to be equal to relative mass concentration of vapour."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + qudt:plainTextDescription "Relative Mass Concentration of Vapour is one of a number of Relative Concentration quantities defined by ISO 80000." ; + rdfs:comment "Applicable units are those of quantitykind:RelativeMassConcentrationOfVapour" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Mass Concentration of Vapour"@en ; + rdfs:seeAlso quantitykind:RelativePartialPressure . + +quantitykind:RelativeMassDefect + a qudt:QuantityKind ; + dcterms:description "The \"Relative Mass Defect\" is the mass defect between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Binding_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$B_r = \\frac{B}{m_u}$, where $B$ is the mass defect and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Relative Mass Defect\" is the mass defect between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "B_r" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Mass Defect"@en ; + rdfs:seeAlso quantitykind:MassDefect ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:RelativeMassDensity + a qudt:QuantityKind ; + dcterms:description "Relative density, or specific gravity, is the ratio of the density (mass of a unit volume) of a substance to the density of a given reference material."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_density"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$d = \\frac{\\rho}{\\rho_0}$, where $\\rho$ is mass density of a substance and $\\rho_0$ is the mass density of a reference substance under conditions that should be specified for both substances."^^qudt:LatexString ; + qudt:plainTextDescription "Relative density, or specific gravity, is the ratio of the density (mass of a unit volume) of a substance to the density of a given reference material." ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:RelativeMassDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Mass Density"@en . + +quantitykind:RelativeMassExcess + a qudt:QuantityKind ; + dcterms:description "The \"Relative Mass Excess\" is the mass excess between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster (extrapolated from relative mass defect)."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_excess"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\Delta_r = \\frac{\\Delta}{m_u}$, where $\\Delta$ is the mass excess and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ; + qudt:latexSymbol "$\\Delta_r$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Relative Mass Excess\" is the mass excess between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster (extrapolated from relative mass defect)." ; + rdfs:comment "Applicable units are those of quantitykind:RelativeMassExcess" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Mass Excess"@en . + +quantitykind:RelativeMassRatioOfVapour + a qudt:QuantityKind ; + dcterms:description "\"Relative Mass Ratio of Vapour\" is one of a number of \"Relative Concentration\" quantities defined by ISO 80000."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\psi = x / x_{sat}$, where $x$ is mass ratio of water vapour to dry gas, $x_{sat}$ is its mass raio of water vapour to dry gas at saturation (at the same temperature)."^^qudt:LatexString ; + qudt:latexSymbol "$\\psi$"^^qudt:LatexString ; + qudt:plainTextDescription "Relative Mass Ratio of Vapour is one of a number of Relative Concentration quantities defined by ISO 80000." ; + rdfs:comment "Applicable units are those of quantitykind:RelativeMassRatioOfVapour" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Mass Ratio of Vapour"@en . + +quantitykind:RelativeMolecularMass + a qudt:QuantityKind ; + dcterms:description "\"Relative Molecular Mass \" is equivalent to the numerical value of the molecular mass expressed in unified atomic mass units. The molecular mass (m) is the mass of a molecule."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Molecular_mass#Relative_molecular_mass"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "\"Relative Molecular Mass \" is equivalent to the numerical value of the molecular mass expressed in unified atomic mass units. The molecular mass (m) is the mass of a molecule." ; + qudt:symbol "M_r" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Molecular Mass"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:RelativePartialPressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi = p / p_{sat}$, where $p$ is partial pressure of vapour, $p_{sat}$ is thermodynamic temperature and $V$ is its partial pressure at saturation (at the same temperature). Relative partial pressure is often referred to as $RH$ and expressed in percent. $\\textit{Relative Partial Pressure}$ is also referred to as $\\textit{Relative Humidity}$."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:RelativePartialPressure" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Partial Pressure"@en ; + skos:altLabel "RH" ; + skos:broader quantitykind:PressureRatio . + +quantitykind:RelativePressureCoefficient + a qudt:QuantityKind ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:expression "$rel-pres-coef$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_p = \\frac{1}{p}\\left (\\frac{\\partial p}{\\partial T} \\right )_V$, where $p$ is $pressure$, $T$ is thermodynamic temperature and $V$ is volume."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_p$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:RelativePressureCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Pressure Coefficient"@en . + +quantitykind:RelaxationTIme + a qudt:QuantityKind ; + dcterms:description "\"Relaxation TIme\" is a time constant for exponential decay towards equilibrium."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relaxation_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\tau$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Relaxation TIme\" is a time constant for exponential decay towards equilibrium." ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Relaxation TIme"@en ; + skos:broader quantitykind:Time . + +quantitykind:Reluctance + a qudt:QuantityKind ; + dcterms:description "\"Reluctance\" or magnetic resistance, is a concept used in the analysis of magnetic circuits. It is analogous to resistance in an electrical circuit, but rather than dissipating electric energy it stores magnetic energy. In likeness to the way an electric field causes an electric current to follow the path of least resistance, a magnetic field causes magnetic flux to follow the path of least magnetic reluctance. It is a scalar, extensive quantity, akin to electrical resistance."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-H ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T2D0 ; + qudt:iec61360Code "0112/2///62720#UAD159" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_reluctance"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD159"^^xsd:anyURI ; + qudt:latexDefinition "$R_m = \\frac{U_m}{\\Phi}$, where $U_m$ is magnetic tension, and $\\Phi$ is magnetic flux."^^qudt:LatexString ; + qudt:plainTextDescription "\"Reluctance\" or magnetic resistance, is a concept used in the analysis of magnetic circuits. It is analogous to resistance in an electrical circuit, but rather than dissipating electric energy it stores magnetic energy. In likeness to the way an electric field causes an electric current to follow the path of least resistance, a magnetic field causes magnetic flux to follow the path of least magnetic reluctance. It is a scalar, extensive quantity, akin to electrical resistance." ; + qudt:symbol "R_m" ; + rdfs:comment "Applicable units are those of quantitykind:Reluctance" ; + rdfs:isDefinedBy ; + rdfs:label "Reluctance"@en ; + rdfs:seeAlso quantitykind:MagneticFlux ; + rdfs:seeAlso quantitykind:MagneticTension . + +quantitykind:Repetency + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the length value"@en ; + qudt:applicableUnit unit:PER-IN ; + qudt:applicableUnit unit:PERCENT-PER-IN ; + qudt:applicableUnit unit:PERCENT-PER-MilliM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD160" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD160"^^xsd:anyURI ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Längenwert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ370#002" ; + rdfs:comment "Applicable units are those of quantitykind:Repetency" ; + rdfs:isDefinedBy ; + rdfs:label "repetency" ; + rdfs:label "repetency"@en-US . + +quantitykind:ResidualResistivity + a qudt:QuantityKind ; + dcterms:description "\"Residual Resistivity\" for metals, is the resistivity extrapolated to zero thermodynamic temperature."^^qudt:LatexString ; + qudt:applicableUnit unit:MegaOHM-KiloM ; + qudt:applicableUnit unit:OHM-KiloM ; + qudt:applicableUnit unit:OHM-M ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Residual-resistance_ratio"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\rho_R$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Residual Resistivity\" for metals, is the resistivity extrapolated to zero thermodynamic temperature." ; + rdfs:comment "Applicable units are those of quantitykind:ResidualResistivity" ; + rdfs:isDefinedBy ; + rdfs:label "Residual Resistivity"@en . + +quantitykind:Resistance + a qudt:QuantityKind ; + dcterms:description "The electrical resistance of an object is a measure of its opposition to the passage of a steady electric current."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaOHM ; + qudt:applicableUnit unit:KiloOHM ; + qudt:applicableUnit unit:MegaOHM ; + qudt:applicableUnit unit:MicroOHM ; + qudt:applicableUnit unit:MilliOHM ; + qudt:applicableUnit unit:OHM ; + qudt:applicableUnit unit:OHM_Ab ; + qudt:applicableUnit unit:OHM_Stat ; + qudt:applicableUnit unit:PlanckImpedance ; + qudt:applicableUnit unit:TeraOHM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Resistance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-45"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$R = \\frac{u}{i}$, where $u$ is instantaneous voltage and $i$ is instantaneous electric current."^^qudt:LatexString ; + qudt:plainTextDescription "The electrical resistance of an object is a measure of its opposition to the passage of a steady electric current." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:Resistance" ; + rdfs:isDefinedBy ; + rdfs:label "Resistance"@en ; + rdfs:seeAlso quantitykind:ElectricCurrent ; + rdfs:seeAlso quantitykind:Impedance ; + rdfs:seeAlso quantitykind:InstantaneousPower . + +quantitykind:ResistanceBasedInductance + a qudt:QuantityKind ; + dcterms:description "magnetic flux through the loop, caused by an electric current in the loop, divided by the product of this current and the resistance which prevents the flow of current"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:plainTextDescription "Magnetfluss durch die Schleife, verursacht durch einen elektrischen Strom in der Schleife, dividiert durch das Produkt aus diesen Strom und dem Widerstand, der diesen Stromfluss behindert"@de ; + qudt:symbol "0173-1#Z4-BAJ411#002" ; + rdfs:isDefinedBy ; + rdfs:label "resistance-based inductance"@en-US . + +quantitykind:ResistanceRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:qkdvNumerator qkdv:A0E-2L2I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:ResistanceRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Resistance Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Resistivity + a qudt:QuantityKind ; + dcterms:description "\"Resistivity\" is the inverse of the conductivity when this inverse exists."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaOHM-M ; + qudt:applicableUnit unit:KiloOHM-M ; + qudt:applicableUnit unit:MegaOHM-KiloM ; + qudt:applicableUnit unit:MegaOHM-M ; + qudt:applicableUnit unit:MicroOHM-M ; + qudt:applicableUnit unit:MilliOHM-M ; + qudt:applicableUnit unit:NanoOHM-M ; + qudt:applicableUnit unit:OHM-CentiM ; + qudt:applicableUnit unit:OHM-KiloM ; + qudt:applicableUnit unit:OHM-M ; + qudt:applicableUnit unit:OHM-M2-PER-M ; + qudt:applicableUnit unit:OHM_CIRC-MIL-PER-FT ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD161" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-04"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD161"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho = \\frac{1}{\\sigma}$, if it exists, where $\\sigma$ is conductivity."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Resistivity\" is the inverse of the conductivity when this inverse exists." ; + rdfs:comment "Applicable units are those of quantitykind:Resistivity" ; + rdfs:isDefinedBy ; + rdfs:label "Resistivity"@en ; + rdfs:seeAlso quantitykind:Conductivity . + +quantitykind:ResonanceEnergy + a qudt:QuantityKind ; + dcterms:description "\"Resonance Energy\" in a nuclear reaction, is the kinetic energy of an incident particle, in the reference frame of the target, corresponding to a resonance in a nuclear reaction."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_reaction_analysis"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Resonance Energy\" in a nuclear reaction, is the kinetic energy of an incident particle, in the reference frame of the target, corresponding to a resonance in a nuclear reaction." ; + qudt:symbol "E_r, E_{res}" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Resonance Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:ResonanceEscapeProbability + a qudt:QuantityKind ; + dcterms:description "The \"Resonance Escape Probability\" is the fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed. In an infinite medium, the probability that a neutron slowing down will traverse all or some specified portion of the range of resonance energies without being absorbed."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Resonance Escape Probability\" is the fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed. In an infinite medium, the probability that a neutron slowing down will traverse all or some specified portion of the range of resonance energies without being absorbed." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ResonanceEscapeProbability" ; + rdfs:isDefinedBy ; + rdfs:label "Resonance Escape Probability"@en . + +quantitykind:ResonanceEscapeProbabilityForFission + a qudt:QuantityKind ; + dcterms:description "Fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Resonance Escape Probability For Fission"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:RespiratoryRate + a qudt:QuantityKind ; + dcterms:description "Respiratory rate (Vf, Rf or RR) is also known by respiration rate, pulmonary ventilation rate, ventilation rate, or breathing frequency is the number of breaths taken within a set amount of time, typically 60 seconds. A normal respiratory rate is termed eupnea, an increased respiratory rate is termed tachypnea and a lower than normal respiratory rate is termed bradypnea."^^qudt:LatexString ; + qudt:applicableUnit unit:BREATH-PER-MIN ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Respiratory_rate"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Respiratory_rate"^^xsd:anyURI ; + qudt:plainTextDescription "Respiratory rate (Vf, Rf or RR) is also known by respiration rate, pulmonary ventilation rate, ventilation rate, or breathing frequency is the number of breaths taken within a set amount of time, typically 60 seconds. A normal respiratory rate is termed eupnea, an increased respiratory rate is termed tachypnea and a lower than normal respiratory rate is termed bradypnea." ; + qudt:symbol "Vf, Rf or RR" ; + rdfs:comment "Applicable units are those of quantitykind:RespiratoryRate" ; + rdfs:isDefinedBy ; + rdfs:label "Respiratory Rate"@en . + +quantitykind:RestEnergy + a qudt:QuantityKind ; + dcterms:description "\"Rest Energy\" is the energy equivalent of the rest mass of a body, equal to the rest mass multiplied by the speed of light squared."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Invariant_mass#Rest_energy"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "For a particle, $E_0 = m_0 c_0^2$, where $m_0$ is the rest mass of that particle, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Rest Energy\" is the energy equivalent of the rest mass of a body, equal to the rest mass multiplied by the speed of light squared." ; + qudt:symbol "E_0" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Rest Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:RestMass + a qudt:QuantityKind ; + dcterms:description "The $\\textit{Rest Mass}$, the invariant mass, intrinsic mass, proper mass, or (in the case of bound systems or objects observed in their center of momentum frame) simply mass, is a characteristic of the total energy and momentum of an object or a system of objects that is the same in all frames of reference related by Lorentz transformations. The mass of a particle type X (electron, proton or neutron) when that particle is at rest. For an electron: $m_e = 9,109 382 15(45) 10^{-31} kg$, for a proton: $m_p = 1,672 621 637(83) 10^{-27} kg$, for a neutron: $m_n = 1,674 927 211(84) 10^{-27} kg$. Rest mass is often denoted $m_0$."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Invariant_mass"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m_X" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Jisim rehat"@ms ; + rdfs:label "Klidová hmotnost"@cs ; + rdfs:label "Mirovna masa"@sl ; + rdfs:label "Ruhemasse"@de ; + rdfs:label "dinlenme kütlesi"@tr ; + rdfs:label "masa invariante"@es ; + rdfs:label "masa invariantă"@ro ; + rdfs:label "masa spoczynkowa"@pl ; + rdfs:label "massa a riposo"@it ; + rdfs:label "massa de repouso"@pt ; + rdfs:label "masse au repos"@fr ; + rdfs:label "rest mass"@en ; + rdfs:label "инвариантная масса"@ru ; + rdfs:label "جرم سکون"@fa ; + rdfs:label "كتلة ساكنة"@ar ; + rdfs:label "निश्चर द्रव्यमान"@hi ; + rdfs:label "不変質量"@ja ; + rdfs:label "静止质量"@zh ; + skos:altLabel "Proper Mass" ; + skos:altLabel "invariantna masa"@sl ; + skos:altLabel "lastna masa"@sl ; + skos:altLabel "masa niezmiennicza"@pl ; + skos:altLabel "masse invariante"@fr ; + skos:altLabel "masse propre"@fr ; + skos:altLabel "träge Masse"@de ; + skos:altLabel "масса покоя"@ru ; + skos:broader quantitykind:Mass . + +quantitykind:ReverberationTime + a qudt:QuantityKind ; + dcterms:description "Reverberation Time is the time required for reflections of a direct sound to decay by 60 dB below the level of the direct sound."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reverberation"^^xsd:anyURI ; + qudt:plainTextDescription "Reverberation Time is the time required for reflections of a direct sound to decay by 60 dB below the level of the direct sound." ; + qudt:symbol "T" ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Reverberation Time"@en ; + skos:broader quantitykind:Time ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:ReynoldsNumber + a qudt:QuantityKind ; + dcterms:description "The \"Reynolds Number\" (Re) is a dimensionless number that gives a measure of the ratio of inertial forces to viscous forces and consequently quantifies the relative importance of these two types of forces for given flow conditions."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Reynolds_number"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Reynolds_number"^^xsd:anyURI ; + qudt:latexDefinition "$Re = \\frac{\\rho uL}{\\mu} = \\frac{uL}{\\nu}$, where $\\rho$ is mass density, $u$ is speed, $L$ is length, $\\mu$ is dynamic viscosity, and $\\nu$ is kinematic viscosity."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Reynolds Number\" (Re) is a dimensionless number that gives a measure of the ratio of inertial forces to viscous forces and consequently quantifies the relative importance of these two types of forces for given flow conditions." ; + qudt:symbol "Re" ; + rdfs:comment "Applicable units are those of quantitykind:ReynoldsNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Reynolds Number"@en ; + skos:broader quantitykind:DimensionlessRatio ; + skos:closeMatch . + +quantitykind:RichardsonConstant + a qudt:QuantityKind ; + dcterms:description "\"Richardson Constant\" is a constant used in developing thermionic emission current density for a metal."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-M2-K2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H-2T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD162" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermionic_emission"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD162"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "The thermionic emission current, $J$, for a metal is $J = AT^2\\exp{(-\\frac{\\Phi}{kT})}$, where $T$ is thermodynamic temperature, $k$ is the Boltzmann constant, and $\\Phi$ is a work function."^^qudt:LatexString ; + qudt:plainTextDescription "\"Richardson Constant\" is a constant used in developing thermionic emission current density for a metal." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:RichardsonConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Richardson Constant"@en . + +quantitykind:RiseOfOffStateVoltage + a qudt:QuantityKind ; + dcterms:description "du/dt as time dependent change in voltage"@en ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:plainTextDescription "du/dt als zeitabhängige änderung der Spannung"@de ; + qudt:symbol "0173-1#Z4-BAJ289#003" ; + rdfs:isDefinedBy ; + rdfs:label "rise of off-state voltage"@en-US . + +quantitykind:RocketAtmosphericTransverseForce + a qudt:QuantityKind ; + dcterms:description "Transverse force on rocket due to an atmosphere"^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:plainTextDescription "Transverse force on rocket due to an atmosphere" ; + qudt:symbol "T" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Rocket Atmospheric Transverse Force"@en ; + skos:broader quantitykind:Force . + +quantitykind:Rotary-TranslatoryMotionConversion + a qudt:QuantityKind ; + qudt:applicableUnit unit:IN-PER-2PiRAD ; + qudt:applicableUnit unit:M-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD163" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD163"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Rotary-TranslatoryMotionConversion" ; + rdfs:isDefinedBy ; + rdfs:label "rotary-translatory motion conversion" . + +quantitykind:RotaryShock + a qudt:QuantityKind ; + dcterms:description "product of the moment of force M in a time interval multiplied by the duration of this interval"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:plainTextDescription "Produkt Drehmoment M in einem Zeitintervall mal Dauer dt dieses Zeitintervalls"@de ; + qudt:symbol "0173-1#Z4-BAJ234#002" ; + rdfs:isDefinedBy ; + rdfs:label "rotary shock"@en-US . + +quantitykind:RotationalFrequency + a qudt:QuantityKind ; + dcterms:description "A measure of the number of cycles that an item revolves per time period."^^qudt:LatexString ; + qudt:applicableUnit unit:CYC-PER-SEC ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:REV-PER-HR ; + qudt:applicableUnit unit:REV-PER-MIN ; + qudt:applicableUnit unit:REV-PER-SEC ; + qudt:exactMatch quantitykind:RotationalVelocity ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcrotationalfrequencymeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "IfcRotationalFrequencyMeasure is a measure of the number of cycles that an item revolves in unit time. Usually measured in cycles/s." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:RotationalFrequency" ; + rdfs:isDefinedBy ; + rdfs:label "RotationalFrequency"@en ; + rdfs:seeAlso quantitykind:AngularFrequency ; + rdfs:seeAlso quantitykind:AngularVelocity . + +quantitykind:RotationalMass + a qudt:QuantityKind ; + dcterms:description "\"Rotational Mass\" denotes the inertia of a body with respect to angular acceleration. It is usually measured in kg*m^2."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-CentiM2 ; + qudt:applicableUnit unit:KiloGM-M2 ; + qudt:applicableUnit unit:KiloGM-MilliM2 ; + qudt:applicableUnit unit:LB-FT2 ; + qudt:applicableUnit unit:LB-IN2 ; + qudt:exactMatch quantitykind:MomentOfInertia ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Moment_of_inertia"^^xsd:anyURI ; + qudt:plainTextDescription "\"Rotational Mass\" denotes the inertia of a body with respect to angular acceleration. It is usually measured in kg*m^2." ; + rdfs:comment "Applicable units are those of quantitykind:RotationalMass" ; + rdfs:isDefinedBy ; + rdfs:label "Rotational Mass"@en . + +quantitykind:RotationalStiffness + a qudt:QuantityKind ; + dcterms:description "Rotational Stiffness is the extent to which an object resists deformation in response to an applied torque."^^qudt:LatexString ; + qudt:applicableUnit unit:N-M-PER-ARCMIN ; + qudt:applicableUnit unit:N-M-PER-DEG ; + qudt:applicableUnit unit:N-M-PER-MIN_Angle ; + qudt:applicableUnit unit:N-M-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "Rotational Stiffness is the extent to which an object resists deformation in response to an applied torque." ; + rdfs:comment "Applicable units are those of quantitykind:TorquePerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Rotational Stiffness"@en ; + skos:broader quantitykind:TorquePerAngle . + +quantitykind:RotationalVelocity + a qudt:QuantityKind ; + dcterms:description "A measure of the number of cycles that an item revolves per time period."^^qudt:LatexString ; + qudt:applicableUnit unit:CYC-PER-SEC ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:REV-PER-HR ; + qudt:applicableUnit unit:REV-PER-MIN ; + qudt:applicableUnit unit:REV-PER-SEC ; + qudt:exactMatch quantitykind:RotationalFrequency ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcrotationalfrequencymeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "IfcRotationalFrequencyMeasure is a measure of the number of cycles that an item revolves in unit time. Usually measured in cycles/s." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:RotationalVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "RotationalFrequency"@en ; + rdfs:seeAlso quantitykind:AngularFrequency ; + rdfs:seeAlso quantitykind:AngularVelocity . + +quantitykind:ScalarMagneticPotential + a qudt:QuantityKind ; + dcterms:description "\"Scalar Magnetic Potential\" is the scalar potential of an irrotational magnetic field strength. The negative of the gradient of the scalar magnetic potential is the irrotational magnetic field strength. The magnetic scalar potential is not unique since any constant scalar field can be added to it without changing its gradient."^^qudt:LatexString ; + qudt:applicableUnit unit:V-SEC-PER-M ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD164" ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-58"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD164"^^xsd:anyURI ; + qudt:latexDefinition "$\\mathbf{H} = -grad V_m$, where $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Scalar Magnetic Potential\" is the scalar potential of an irrotational magnetic field strength. The negative of the gradient of the scalar magnetic potential is the irrotational magnetic field strength. The magnetic scalar potential is not unique since any constant scalar field can be added to it without changing its gradient." ; + qudt:symbol "V_m" ; + rdfs:comment "Applicable units are those of quantitykind:ScalarMagneticPotential" ; + rdfs:isDefinedBy ; + rdfs:label "Scalar Magnetic Potential"@en ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H . + +quantitykind:SecondAxialMomentOfArea + a qudt:QuantityKind ; + dcterms:description "The moment of inertia, also called mass moment of inertia, rotational inertia, polar moment of inertia of mass, or the angular mass is a property of a distribution of mass in space that measures its resistance to rotational acceleration about an axis."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM4 ; + qudt:applicableUnit unit:FT4 ; + qudt:applicableUnit unit:IN4 ; + qudt:applicableUnit unit:M4 ; + qudt:applicableUnit unit:MilliM4 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD165" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Second_moment_of_area"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD165"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$I_a = \\int r^2_Q dA$, where $r_Q$ is the radial distance from a $Q-axis$ and $A$ is area."^^qudt:LatexString ; + qudt:plainTextDescription "The moment of inertia, also called mass moment of inertia, rotational inertia, polar moment of inertia of mass, or the angular mass is a property of a distribution of mass in space that measures its resistance to rotational acceleration about an axis." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:SecondAxialMomentOfArea" ; + rdfs:isDefinedBy ; + rdfs:label "Second Axial Moment of Area"@en . + +quantitykind:SecondMomentOfArea + a qudt:QuantityKind ; + dcterms:description "The second moment of area is a property of a physical object that can be used to predict its resistance to bending and deflection. The deflection of an object under load depends not only on the load, but also on the geometry of the object's cross-section."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM4 ; + qudt:applicableUnit unit:FT4 ; + qudt:applicableUnit unit:IN4 ; + qudt:applicableUnit unit:M4 ; + qudt:applicableUnit unit:MilliM4 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Second_moment_of_area"^^xsd:anyURI ; + qudt:plainTextDescription "The second moment of area is a property of a physical object that can be used to predict its resistance to bending and deflection. The deflection of an object under load depends not only on the load, but also on the geometry of the object's cross-section." ; + qudt:symbol "J" ; + rdfs:comment "Applicable units are those of quantitykind:SecondMomentOfArea" ; + rdfs:isDefinedBy ; + rdfs:label "Flächenträgheitsmoment"@de ; + rdfs:label "Geometryczny moment bezwładności"@pl ; + rdfs:label "Segundo momento de área"@pt ; + rdfs:label "moment quadratique"@fr ; + rdfs:label "second moment of area"@en ; + rdfs:label "secondo momento di area"@it ; + rdfs:label "segundo momento de érea"@es ; + rdfs:label "گشتاور دوم سطح"@fa ; + rdfs:label "क्षेत्रफल का द्वितीय आघूर्ण"@hi ; + rdfs:label "截面二次轴矩"@zh ; + rdfs:label "断面二次モーメント"@ja ; + skos:altLabel "momento de inércia de área"@pt . + +quantitykind:SecondOrderReactionRateConstant + a qudt:QuantityKind ; + dcterms:description "A quantity kind that is a proportionality constant that quantifies the relationship between the molar concentrations of the reactants and the rate of a second order chemical reaction."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-MOL-SEC ; + qudt:applicableUnit unit:L-PER-MOL-SEC ; + qudt:applicableUnit unit:M3-PER-MOL-SEC ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ; + qudt:plainTextDescription "A quantity kind that is a proportionality constant that quantifies the relationship between the molar concentrations of the reactants and the rate of a second order chemical reaction." ; + rdfs:comment "Applicable units are those of quantitykind:SecondOrderReactionRateConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Reaction Rate Constant"@en . + +quantitykind:SecondPolarMomentOfArea + a qudt:QuantityKind ; + dcterms:description "The moment of inertia, also called mass moment of inertia, rotational inertia, polar moment of inertia of mass, or the angular mass is a property of a distribution of mass in space that measures its resistance to rotational acceleration about an axis."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM4 ; + qudt:applicableUnit unit:FT4 ; + qudt:applicableUnit unit:IN4 ; + qudt:applicableUnit unit:M4 ; + qudt:applicableUnit unit:MilliM4 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD166" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Second_moment_of_area"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD166"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$I_p = \\int r^2_Q dA$, where $r_Q$ is the radial distance from a $Q-axis$ and $A$ is area."^^qudt:LatexString ; + qudt:plainTextDescription "The moment of inertia, also called mass moment of inertia, rotational inertia, polar moment of inertia of mass, or the angular mass is a property of a distribution of mass in space that measures its resistance to rotational acceleration about an axis." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:SecondPolarMomentOfArea" ; + rdfs:isDefinedBy ; + rdfs:label "Second Polar Moment of Area"@en . + +quantitykind:SecondRadiationConstant + a qudt:QuantityKind ; + dcterms:description "constant in Planck's radiation law on the dependence of the spectral density of various radiation variables on the wavelength of the electromagnetic radiation and the absolute temperature of the black radiator, derived from the product of Planck's quantum of action times the velocity of light in relation to Boltzmann's constant"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ; + qudt:plainTextDescription "Konstante im Planckschen Strahlungsgesetz über die Abhängigkeit der spektralen Dichte verschiedener Strahlungsgrößen von der Wellenlänge der elektromagnetischen Strahlung und der absoluten Temperatur beim schwarzen Strahler, welche sich zusammensetzt aus dem Produkt Plancksches Wirkungsquantum mal Lichtgeschwindigkeit bezogen auf die Boltzmann-Konstante"@de ; + qudt:symbol "0173-1#Z4-BAJ428#001" ; + rdfs:isDefinedBy ; + rdfs:label "second radiation constant"@en-US . + +quantitykind:SecondStageMassRatio + a qudt:QuantityKind ; + dcterms:description "Mass ratio for the second stage of a multistage launcher."^^qudt:LatexString ; + qudt:applicableUnit unit:FemtoGM-PER-KiloGM ; + qudt:applicableUnit unit:GM-PER-GM ; + qudt:applicableUnit unit:GM-PER-HectoGM ; + qudt:applicableUnit unit:GM-PER-KiloGM ; + qudt:applicableUnit unit:KiloGM-PER-KiloGM ; + qudt:applicableUnit unit:LB-PER-LB ; + qudt:applicableUnit unit:MicroGM-PER-GM ; + qudt:applicableUnit unit:MicroGM-PER-KiloGM ; + qudt:applicableUnit unit:MicroGM-PER-MilliGM ; + qudt:applicableUnit unit:MilliGM-PER-GM ; + qudt:applicableUnit unit:MilliGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-MilliGM ; + qudt:applicableUnit unit:PicoGM-PER-GM ; + qudt:applicableUnit unit:PicoGM-PER-KiloGM ; + qudt:applicableUnit unit:PicoGM-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Mass ratio for the second stage of a multistage launcher." ; + qudt:symbol "R_2" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Second Stage Mass Ratio"@en ; + skos:broader quantitykind:MassRatio . + +quantitykind:SectionAreaIntegral + a qudt:QuantityKind ; + dcterms:description "The sectional area integral measure is typically used in torsional analysis. It is usually measured in M⁵."^^qudt:LatexString ; + qudt:applicableUnit unit:M5 ; + qudt:hasDimensionVector qkdv:A0E0L5I0M0H0T0D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcsectionalareaintegralmeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "The sectional area integral measure is typically used in torsional analysis. It is usually measured in M⁵." ; + rdfs:comment "Applicable units are those of quantitykind:SectionAreaIntegral" ; + rdfs:isDefinedBy ; + rdfs:label "Section Area Integral"@en . + +quantitykind:SectionModulus + a qudt:QuantityKind ; + dcterms:description "The Section Modulus is a geometric property for a given cross-section used in the design of beams or flexural members."^^qudt:LatexString ; + qudt:applicableUnit unit:M3 ; + qudt:applicableUnit unit:MI_UK3 ; + qudt:applicableUnit unit:TON_Register ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Section_modulus"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$Z = \\frac{I_a}{(r_Q)_{max}}$, where $I_a$ is the second axial moment of area and $(r_Q)_{max}$ is the maximum radial distance of any point in the surface considered from the $Q-axis$ with respect to which $I_a$ is defined."^^qudt:LatexString ; + qudt:plainTextDescription "The Section Modulus is a geometric property for a given cross-section used in the design of beams or flexural members." ; + qudt:symbol "Z" ; + rdfs:comment "Applicable units are those of quantitykind:SectionModulus" ; + rdfs:isDefinedBy ; + rdfs:label "Section Modulus"@en . + +quantitykind:SeebeckCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Seebeck Coefficient\", or thermopower, or thermoelectric power of a material is a measure of the magnitude of an induced thermoelectric voltage in response to a temperature difference across that material."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-K ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H-1T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD169" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermopower"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD169"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$S_{ab} = \\frac{dE_{ab}}{dT}$, where $E_{ab}$ is the thermosource voltage between substances a and b, $T$ is the thermodynamic temperature of the hot junction."^^qudt:LatexString ; + qudt:plainTextDescription "\"Seebeck Coefficient\", or thermopower, or thermoelectric power of a material is a measure of the magnitude of an induced thermoelectric voltage in response to a temperature difference across that material." ; + qudt:symbol "S_{ab}" ; + rdfs:comment "Applicable units are those of quantitykind:SeebeckCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Seebeck Coefficient"@en . + +quantitykind:SerumOrPlasmaLevel + a qudt:QuantityKind ; + qudt:applicableUnit unit:IU-PER-L ; + qudt:applicableUnit unit:IU-PER-MilliL ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:SerumOrPlasmaLevel" ; + rdfs:isDefinedBy ; + rdfs:label "Serum or Plasma Level"@en ; + skos:broader quantitykind:AmountOfSubstancePerVolume . + +quantitykind:ServiceFactor + a qudt:QuantityKind ; + dcterms:description "The value indicates the multiplier of the rated power that equipment can handle for some period of time when operating according to a manufacturer's specified conditions; typically applicable to motors."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "The value indicates the multiplier of the rated power that equipment can handle for some period of time when operating according to a manufacturer's specified conditions; typically applicable to motors." ; + qudt:symbol "SF" ; + rdfs:comment "Applicable units are those of quantitykind:ServiceFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Service Factor"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:ShannonDiversityIndex + a qudt:QuantityKind ; + dcterms:description "Information entropy applied to a collection of indiviual organisms [of selected species] in a sample area. A measure of biodiversity."^^qudt:LatexString ; + qudt:applicableUnit unit:BAN ; + qudt:applicableUnit unit:BIT ; + qudt:applicableUnit unit:BYTE ; + qudt:applicableUnit unit:ERLANG ; + qudt:applicableUnit unit:ExaBIT ; + qudt:applicableUnit unit:ExaBYTE ; + qudt:applicableUnit unit:ExbiBIT ; + qudt:applicableUnit unit:ExbiBYTE ; + qudt:applicableUnit unit:GibiBYTE ; + qudt:applicableUnit unit:GigaBYTE ; + qudt:applicableUnit unit:HART ; + qudt:applicableUnit unit:KibiBYTE ; + qudt:applicableUnit unit:KiloBYTE ; + qudt:applicableUnit unit:MebiBYTE ; + qudt:applicableUnit unit:MegaBYTE ; + qudt:applicableUnit unit:NAT ; + qudt:applicableUnit unit:PebiBIT ; + qudt:applicableUnit unit:PebiBYTE ; + qudt:applicableUnit unit:PetaBYTE ; + qudt:applicableUnit unit:SHANNON ; + qudt:applicableUnit unit:TebiBIT ; + qudt:applicableUnit unit:TebiBYTE ; + qudt:applicableUnit unit:TeraBYTE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Information entropy applied to a collection of indiviual organisms [of selected species] in a sample area. A measure of biodiversity." ; + rdfs:comment "Applicable units are those of quantitykind:InformationEntropy" ; + rdfs:isDefinedBy ; + rdfs:label "Shannon Diversity Index"@en ; + skos:broader quantitykind:InformationEntropy . + +quantitykind:ShearModulus + a qudt:QuantityKind ; + dcterms:description "The Shear Modulus or modulus of rigidity, denoted by $G$, or sometimes $S$ or $\\mu$, is defined as the ratio of shear stress to the shear strain."^^qudt:LatexString ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Shear_modulus"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$G = \\frac{\\tau}{\\gamma}$, where $\\tau$ is the shear stress and $\\gamma$ is the shear strain."^^qudt:LatexString ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:ShearModulus" ; + rdfs:isDefinedBy ; + rdfs:label "Shear Modulus"@en . + +quantitykind:ShearStrain + a qudt:QuantityKind ; + dcterms:description "Shear Strain is the amount of deformation perpendicular to a given line rather than parallel to it. "^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\gamma = \\frac{\\Delta x}{d}$, where $\\Delta x$ is the parallel displacement between two surfaces of a layer of thickness $d$."^^qudt:LatexString ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "Shear Strain is the amount of deformation perpendicular to a given line rather than parallel to it. " ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Shear Strain"@en ; + skos:broader quantitykind:Strain . + +quantitykind:ShearStress + a qudt:QuantityKind ; + dcterms:description "Shear stress occurs when the force occurs in shear, or perpendicular to the normal."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stress_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\tau = \\frac{dF_t}{dA}$, where $dF_t$ is the tangential component of force and $dA$ is the area of the surface element."^^qudt:LatexString ; + qudt:latexSymbol "$\\tau$"^^qudt:LatexString ; + qudt:plainTextDescription "Shear stress occurs when the force occurs in shear, or perpendicular to the normal." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Shear Stress"@en ; + skos:broader quantitykind:Stress . + +quantitykind:Short-RangeOrderParameter + a qudt:QuantityKind ; + dcterms:description "\"Short-Range Order Parameter\" is the fraction of the nearest-neighbor atom pairs in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$r, \\sigma$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Short-Range Order Parameter\" is the fraction of the nearest-neighbor atom pairs in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction." ; + rdfs:comment "Applicable units are those of quantitykind:Short-RangeOrderParameter" ; + rdfs:isDefinedBy ; + rdfs:label "Short-Range Order Parameter"@en . + +quantitykind:SignalDetectionThreshold + a qudt:QuantityKind ; + qudt:applicableUnit unit:DeciB_C ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + rdfs:comment "Applicable units are those of quantitykind:SignalDetectionThreshold" ; + rdfs:isDefinedBy ; + rdfs:label "Signal Detection Threshold"@en . + +quantitykind:SignalStrength + a qudt:QuantityKind ; + dcterms:description "In telecommunications, particularly in radio, signal strength refers to the magnitude of the electric field at a reference point that is a significant distance from the transmitting antenna. It may also be referred to as received signal level or field strength. Typically, it is expressed in voltage per length or signal power received by a reference antenna. High-powered transmissions, such as those used in broadcasting, are expressed in dB-millivolts per metre (dBmV/m)."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-M ; + qudt:applicableUnit unit:V_Ab-PER-CentiM ; + qudt:applicableUnit unit:V_Stat-PER-CentiM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Signal_strength"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:plainTextDescription "In telecommunications, particularly in radio, signal strength refers to the magnitude of the electric field at a reference point that is a significant distance from the transmitting antenna. It may also be referred to as received signal level or field strength. Typically, it is expressed in voltage per length or signal power received by a reference antenna. High-powered transmissions, such as those used in broadcasting, are expressed in dB-millivolts per metre (dBmV/m)." ; + rdfs:comment "Applicable units are those of quantitykind:ElectricField" ; + rdfs:isDefinedBy ; + rdfs:label "Signal Strength"@en ; + skos:broader quantitykind:ElectricField ; + skos:broader quantitykind:ElectricFieldStrength . + +quantitykind:SingleStageLauncherMassRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:FemtoGM-PER-KiloGM ; + qudt:applicableUnit unit:GM-PER-GM ; + qudt:applicableUnit unit:GM-PER-HectoGM ; + qudt:applicableUnit unit:GM-PER-KiloGM ; + qudt:applicableUnit unit:KiloGM-PER-KiloGM ; + qudt:applicableUnit unit:LB-PER-LB ; + qudt:applicableUnit unit:MicroGM-PER-GM ; + qudt:applicableUnit unit:MicroGM-PER-KiloGM ; + qudt:applicableUnit unit:MicroGM-PER-MilliGM ; + qudt:applicableUnit unit:MilliGM-PER-GM ; + qudt:applicableUnit unit:MilliGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-KiloGM ; + qudt:applicableUnit unit:NanoGM-PER-MilliGM ; + qudt:applicableUnit unit:PicoGM-PER-GM ; + qudt:applicableUnit unit:PicoGM-PER-KiloGM ; + qudt:applicableUnit unit:PicoGM-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:symbol "R_o" ; + rdfs:comment "Applicable units are those of quantitykind:MassRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Single Stage Launcher Mass Ratio"@en ; + skos:broader quantitykind:MassRatio . + +quantitykind:Slowing-DownArea + a qudt:QuantityKind ; + dcterms:description "\"Slowing-Down Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the neutron source and the point where a neutron reaches a given energy."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Slowing-Down Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the neutron source and the point where a neutron reaches a given energy." ; + qudt:symbol "L_s^2" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Slowing-Down Area"@en ; + skos:broader quantitykind:Area . + +quantitykind:Slowing-DownDensity + a qudt:QuantityKind ; + dcterms:description "\"Slowing-Down Density\" is a measure of the rate at which neutrons lose energy in a nuclear reactor through collisions; equal to the number of neutrons that fall below a given energy per unit volume per unit time."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-M3-SEC ; + qudt:applicableUnit unit:PER-SEC-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD170" ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/slowing-down+density"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD170"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$q = -\\frac{dn}{dt}$, where $n$ is the number density and $dt$ is the duration."^^qudt:LatexString ; + qudt:plainTextDescription "\"Slowing-Down Density\" is a measure of the rate at which neutrons lose energy in a nuclear reactor through collisions; equal to the number of neutrons that fall below a given energy per unit volume per unit time." ; + qudt:symbol "q" ; + rdfs:comment "Applicable units are those of quantitykind:Slowing-DownDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Slowing-Down Density"@en . + +quantitykind:Slowing-DownLength + a qudt:QuantityKind ; + dcterms:description "\"Slowing-Down Length\" is the average straight-line distance that a fast neutron will travel between its introduction into the slowing-downmedium (moderator) and thermalization."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://nuclearpowertraining.tpub.com/h1013v2/css/h1013v2_32.htm"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Slowing-Down Length\" is the average straight-line distance that a fast neutron will travel between its introduction into the slowing-downmedium (moderator) and thermalization." ; + qudt:symbol "L_s" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Slowing-Down Length"@en ; + skos:broader quantitykind:Length . + +quantitykind:SoilAdsorptionCoefficient + a qudt:QuantityKind ; + dcterms:description "A specific volume that is the ratio of the amount of substance adsorbed per unit weight of organic carbon in the soil or sediment to the concentration of the chemical in aqueous solution at equilibrium."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-GM ; + qudt:applicableUnit unit:DeciM3-PER-KiloGM ; + qudt:applicableUnit unit:FT3-PER-LB ; + qudt:applicableUnit unit:IN3-PER-LB ; + qudt:applicableUnit unit:L-PER-KiloGM ; + qudt:applicableUnit unit:M3-PER-KiloGM ; + qudt:applicableUnit unit:MilliL-PER-GM ; + qudt:applicableUnit unit:MilliM3-PER-GM ; + qudt:applicableUnit unit:MilliM3-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:plainTextDescription "A specific volume that is the ratio of the amount of substance adsorbed per unit weight of organic carbon in the soil or sediment to the concentration of the chemical in aqueous solution at equilibrium." ; + rdfs:comment "Applicable units are those of quantitykind:SoilAdsorptionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Soil Adsorption Coefficient"@en ; + skos:broader quantitykind:SpecificVolume . + +quantitykind:SolidAngle + a qudt:QuantityKind ; + dcterms:description "The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S's projection onto the sphere. A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG2 ; + qudt:applicableUnit unit:FA ; + qudt:applicableUnit unit:SR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Solid_angle"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD171" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD171"^^xsd:anyURI ; + qudt:plainTextDescription "The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S's projection onto the sphere. A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi." ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:siExactMatch si-quantity:ANGS ; + rdfs:comment "Applicable units are those of quantitykind:SolidAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Prostorový úhel"@cs ; + rdfs:label "Raumwinkel"@de ; + rdfs:label "Sudut padu"@ms ; + rdfs:label "angle solide"@fr ; + rdfs:label "angolo solido"@it ; + rdfs:label "angulus solidus"@la ; + rdfs:label "katı cisimdeki açı"@tr ; + rdfs:label "kąt bryłowy"@pl ; + rdfs:label "prostorski kot"@sl ; + rdfs:label "solid angle"@en ; + rdfs:label "térszög"@hu ; + rdfs:label "unghi solid"@ro ; + rdfs:label "ángulo sólido"@es ; + rdfs:label "ângulo sólido"@pt ; + rdfs:label "Στερεά γωνία"@el ; + rdfs:label "Пространствен ъгъл"@bg ; + rdfs:label "Телесный угол"@ru ; + rdfs:label "זווית מרחבית"@he ; + rdfs:label "الزاوية الصلبة"@ar ; + rdfs:label "زاویه فضایی"@fa ; + rdfs:label "आयतन"@hi ; + rdfs:label "立体角"@ja ; + rdfs:label "立体角度"@zh ; + skos:broader quantitykind:AreaRatio . + +quantitykind:SolidStateDiffusionLength + a qudt:QuantityKind ; + dcterms:description "\"Solid State Diffusion Length\" is the average distance traveled by a particle, such as a minority carrier in a semiconductor "^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://pveducation.org/pvcdrom/pn-junction/diffusion-length"^^xsd:anyURI ; + qudt:latexDefinition "$L = \\sqrt{D\\tau}$, where $D$ is the diffusion coefficient and $\\tau$ is lifetime."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Solid State Diffusion Length\" is the average distance traveled by a particle, such as a minority carrier in a semiconductor " ; + qudt:symbol "L, L_n, L_p" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Diffusion Length (Solid State Physics)"@en ; + skos:broader quantitykind:Length . + +quantitykind:Solubility_Water + a qudt:QuantityKind ; + dcterms:description "An amount of substance per unit volume that is the concentration of a saturated solution expressed as the ratio of the solute concentration over the volume of water. A substance's solubility fundamentally depends on several physical and chemical properties of the solution as well as the environment it is in."^^qudt:LatexString ; + qudt:applicableUnit unit:FemtoMOL-PER-L ; + qudt:applicableUnit unit:KiloMOL-PER-M3 ; + qudt:applicableUnit unit:MOL-PER-DeciM3 ; + qudt:applicableUnit unit:MOL-PER-L ; + qudt:applicableUnit unit:MOL-PER-M3 ; + qudt:applicableUnit unit:MicroMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-L ; + qudt:applicableUnit unit:MilliMOL-PER-M3 ; + qudt:applicableUnit unit:PicoMOL-PER-L ; + qudt:applicableUnit unit:PicoMOL-PER-M3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "An amount of substance per unit volume that is the concentration of a saturated solution expressed as the ratio of the solute concentration over the volume of water. A substance's solubility fundamentally depends on several physical and chemical properties of the solution as well as the environment it is in." ; + rdfs:comment "Applicable units are those of quantitykind:Solubility_Water" ; + rdfs:isDefinedBy ; + rdfs:label "Water Solubility"@en ; + skos:broader quantitykind:AmountOfSubstancePerVolume . + +quantitykind:SoundEnergyDensity + a qudt:QuantityKind ; + dcterms:description "Sound energy density is the time-averaged sound energy in a given volume divided by that volume. The sound energy density or sound density (symbol $E$ or $w$) is an adequate measure to describe the sound field at a given point as a sound energy value."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT3 ; + qudt:applicableUnit unit:BTU_TH-PER-FT3 ; + qudt:applicableUnit unit:ERG-PER-CentiM3 ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:applicableUnit unit:MegaJ-PER-M3 ; + qudt:applicableUnit unit:W-HR-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_energy_density"^^xsd:anyURI ; + qudt:latexDefinition "$E = \\frac{I}{c}$, where $I$ is the sound intensity in $\\frac{W}{m^2}$ and $c$ is the sound speed in $\\frac{m}{s}$."^^qudt:LatexString ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Sound energy density"@en ; + skos:broader quantitykind:EnergyDensity ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundExposure + a qudt:QuantityKind ; + dcterms:description "Sound Exposure is the energy of the A-weighted sound calculated over the measurement time(s). For a given period of time, an increase of 10 dB(A) in sound pressure level corresponds to a tenfold increase in E."^^qudt:LatexString ; + qudt:applicableUnit unit:PA2-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M2H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD172" ; + qudt:informativeReference "http://www.acoustic-glossary.co.uk/definitions-s.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD172"^^xsd:anyURI ; + qudt:latexDefinition "$E = \\int_{t1}^{t2}p^2dt$, where $t1$ and $t2$ are the starting and ending times for the integral and $p$ is the sound pressure."^^qudt:LatexString ; + qudt:plainTextDescription "Sound Exposure is the energy of the A-weighted sound calculated over the measurement time(s). For a given period of time, an increase of 10 dB(A) in sound pressure level corresponds to a tenfold increase in E." ; + qudt:symbol "E" ; + rdfs:comment "Applicable units are those of quantitykind:SoundExposure" ; + rdfs:isDefinedBy ; + rdfs:label "Sound exposure"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundExposureLevel + a qudt:QuantityKind ; + dcterms:description "Sound Exposure Level abbreviated as $SEL$ and $LAE$, is the total noise energy produced from a single noise event, expressed as a logarithmic ratio from a reference level."^^qudt:LatexString ; + qudt:applicableUnit unit:B ; + qudt:applicableUnit unit:DeciB ; + qudt:applicableUnit unit:DeciB_A ; + qudt:applicableUnit unit:DeciB_ISO ; + qudt:applicableUnit unit:DeciB_M ; + qudt:applicableUnit unit:DeciB_Z ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Sound_exposure#Sound_exposure_level"^^xsd:anyURI ; + qudt:latexDefinition "$L_E = 10 \\log_{10} \\frac{E}{E_0} dB$, where $E$ is sound power and the reference value is $E_0 = 400 \\mu Pa^2 s$."^^qudt:LatexString ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:SoundExposureLevel" ; + rdfs:isDefinedBy ; + rdfs:label "Sound exposure level"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundIntensity + a qudt:QuantityKind ; + dcterms:description "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^qudt:LatexString ; + qudt:abbreviation "w/m2" ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_intensity"^^xsd:anyURI ; + qudt:latexDefinition "$I = pv$, where $p$ is the sound pressure and $v$ is sound particle velocity."^^qudt:LatexString ; + qudt:plainTextDescription "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Sound intensity"@en ; + skos:broader quantitykind:PowerPerArea ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundParticleAcceleration + a qudt:QuantityKind ; + dcterms:description "In a compressible sound transmission medium - mainly air - air particles get an accelerated motion: the particle acceleration or sound acceleration with the symbol a in $m/s2$. In acoustics or physics, acceleration (symbol: $a$) is defined as the rate of change (or time derivative) of velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-SEC2 ; + qudt:applicableUnit unit:FT-PER-SEC2 ; + qudt:applicableUnit unit:G ; + qudt:applicableUnit unit:GALILEO ; + qudt:applicableUnit unit:IN-PER-SEC2 ; + qudt:applicableUnit unit:KN-PER-SEC ; + qudt:applicableUnit unit:KiloM-PER-SEC2 ; + qudt:applicableUnit unit:KiloPA-M2-PER-GM ; + qudt:applicableUnit unit:M-PER-SEC2 ; + qudt:applicableUnit unit:MI_US-PER-SEC2 ; + qudt:applicableUnit unit:MicroG ; + qudt:applicableUnit unit:MilliG ; + qudt:applicableUnit unit:MilliGAL ; + qudt:applicableUnit unit:MilliM-PER-SEC2 ; + qudt:applicableUnit unit:YD-PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_acceleration"^^xsd:anyURI ; + qudt:latexDefinition "$a = \\frac{\\partial v}{\\partial t}$, where $v$ is sound particle velocity and $t$ is time."^^qudt:LatexString ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:Acceleration" ; + rdfs:isDefinedBy ; + rdfs:label "Sound particle acceleration"@en ; + skos:broader quantitykind:Acceleration ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundParticleDisplacement + a qudt:QuantityKind ; + dcterms:description "Sound Particle Displacement is the nstantaneous displacement of a particle in a medium from what would be its position in the absence of sound waves."^^qudt:LatexString ; + qudt:abbreviation "l" ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_displacement"^^xsd:anyURI ; + qudt:plainTextDescription "Sound Particle Displacement is the nstantaneous displacement of a particle in a medium from what would be its position in the absence of sound waves." ; + qudt:symbol "ξ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Sound Particle Displacement"@en ; + skos:broader quantitykind:Length ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundParticleVelocity + a qudt:QuantityKind ; + dcterms:description "Sound Particle velocity is the velocity v of a particle (real or imagined) in a medium as it transmits a wave. In many cases this is a longitudinal wave of pressure as with sound, but it can also be a transverse wave as with the vibration of a taut string. When applied to a sound wave through a medium of a fluid like air, particle velocity would be the physical speed of a parcel of fluid as it moves back and forth in the direction the sound wave is travelling as it passes."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:KiloHZ-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_velocity"^^xsd:anyURI ; + qudt:latexDefinition "$v = \\frac{\\partial\\delta }{\\partial t}$, where $\\delta$ is sound particle displacement and $t$ is time."^^qudt:LatexString ; + qudt:plainTextDescription "Sound Particle velocity is the velocity v of a particle (real or imagined) in a medium as it transmits a wave. In many cases this is a longitudinal wave of pressure as with sound, but it can also be a transverse wave as with the vibration of a taut string. When applied to a sound wave through a medium of a fluid like air, particle velocity would be the physical speed of a parcel of fluid as it moves back and forth in the direction the sound wave is travelling as it passes." ; + qudt:symbol "v" ; + rdfs:comment "Applicable units are those of quantitykind:SoundParticleVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Schallschnelle"@de ; + rdfs:label "prędkość akustyczna"@pl ; + rdfs:label "sound particle velocity"@en ; + rdfs:label "velocidad acústica de una partícula"@es ; + rdfs:label "velocidade acústica de uma partícula"@pt ; + rdfs:label "velocità di spostamento"@it ; + rdfs:label "vitesse acoustique d‘une particule"@fr ; + rdfs:label "سرعة جسيم"@ar ; + rdfs:label "粒子速度"@ja ; + skos:altLabel "prędkość cząstki"@pl ; + skos:broader quantitykind:Velocity ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundPower + a qudt:QuantityKind ; + dcterms:description "Sound power or acoustic power $P_a$ is a measure of sonic energy $E$ per time $t$ unit. It is measured in watts and can be computed as sound intensity ($I$) times area ($A$)."^^qudt:LatexString ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_power"^^xsd:anyURI ; + qudt:latexDefinition "$P_a = IA$, where $I$ is the sound intensity in $\\frac{W}{m^2}$ and $A$ is the area in $m^2$."^^qudt:LatexString ; + qudt:symbol "P" ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Schallleistung"@de ; + rdfs:label "moc akustyczna"@pl ; + rdfs:label "potencie acústica"@es ; + rdfs:label "potenza sonora"@it ; + rdfs:label "potência acústica"@pt ; + rdfs:label "puissance acoustique"@fr ; + rdfs:label "sound power"@en ; + rdfs:label "звуковая мощность"@ru ; + rdfs:label "القدرة الصوتية"@ar ; + rdfs:label "音源の音響出力"@ja ; + skos:altLabel "potência sonora"@pt ; + skos:broader quantitykind:Power ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundPowerLevel + a qudt:QuantityKind ; + dcterms:description "Sound Power Level abbreviated as $SWL$ expresses sound power more practically as a relation to the threshold of hearing - 1 picoW - in a logarithmic scale."^^qudt:LatexString ; + qudt:applicableUnit unit:B ; + qudt:applicableUnit unit:DeciB ; + qudt:applicableUnit unit:DeciB_A ; + qudt:applicableUnit unit:DeciB_ISO ; + qudt:applicableUnit unit:DeciB_M ; + qudt:applicableUnit unit:DeciB_Z ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_power#Sound_power_level"^^xsd:anyURI ; + qudt:latexDefinition "$L_W = 10 \\log_{10} \\frac{P}{P_0} dB$, where $P$ is sound power and the reference value is $P_0 =1pW$."^^qudt:LatexString ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:SoundPowerLevel" ; + rdfs:isDefinedBy ; + rdfs:label "Sound power level"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundPressure + a qudt:QuantityKind ; + dcterms:description "Sound Pressure is the difference between instantaneous total pressure and static pressure."^^qudt:LatexString ; + qudt:abbreviation "p" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Static_pressure"^^xsd:anyURI ; + qudt:plainTextDescription "Sound Pressure is the difference between instantaneous total pressure and static pressure." ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Sound pressure"@en ; + skos:broader quantitykind:Pressure ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundPressureLevel + a qudt:QuantityKind ; + dcterms:description "Sound pressure level ($SPL$) or sound level is a logarithmic measure of the effective sound pressure of a sound relative to a reference value. It is measured in decibels (dB) above a standard reference level."^^qudt:LatexString ; + qudt:applicableUnit unit:B ; + qudt:applicableUnit unit:DeciB ; + qudt:applicableUnit unit:DeciB_A ; + qudt:applicableUnit unit:DeciB_ISO ; + qudt:applicableUnit unit:DeciB_M ; + qudt:applicableUnit unit:DeciB_Z ; + qudt:applicableUnit unit:PHON ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_pressure#Sound_pressure_level"^^xsd:anyURI ; + qudt:latexDefinition "$L_P = 10 \\log_{10} \\frac{p^2}{p_0^2} dB$, where $p$ is sound pressure and the reference value in airborne acoustics is $p_0 = 20 \\mu Pa$."^^qudt:LatexString ; + qudt:symbol "L" ; + rdfs:comment "Applicable units are those of quantitykind:SoundPressureLevel" ; + rdfs:isDefinedBy ; + rdfs:label "Hladina akustického tlaku"@cs ; + rdfs:label "Schalldruckpegel"@de ; + rdfs:label "Tahap medan"@ms ; + rdfs:label "gerilim veya akım oranı"@tr ; + rdfs:label "livello di pressione sonora"@it ; + rdfs:label "miary wielkości ilorazowych"@pl ; + rdfs:label "niveau de pression acoustique"@fr ; + rdfs:label "nivel de presión sonora"@es ; + rdfs:label "nível de pressão acústica"@pt ; + rdfs:label "sound pressure level"@en ; + rdfs:label "уровень звукового давления"@ru ; + rdfs:label "سطح یک کمیت توان-ریشه"@fa ; + rdfs:label "كمية جذر الطاقة"@ar ; + rdfs:label "利得"@ja ; + rdfs:label "声压级"@zh ; + skos:altLabel "Tahap tekanan bunyi"@ms ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundReductionIndex + a qudt:QuantityKind ; + dcterms:description "The Sound Reduction Index is used to measure the level of sound insulation provided by a structure such as a wall, window, door, or ventilator."^^qudt:LatexString ; + qudt:applicableUnit unit:B ; + qudt:applicableUnit unit:DeciB ; + qudt:applicableUnit unit:DeciB_A ; + qudt:applicableUnit unit:DeciB_ISO ; + qudt:applicableUnit unit:DeciB_M ; + qudt:applicableUnit unit:DeciB_Z ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_reduction_index"^^xsd:anyURI ; + qudt:latexDefinition "$R = 10 \\log (\\frac{1}{\\tau}) dB$, where $\\tau$ is the transmission factor."^^qudt:LatexString ; + qudt:plainTextDescription "The Sound Reduction Index is used to measure the level of sound insulation provided by a structure such as a wall, window, door, or ventilator." ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:SoundReductionIndex" ; + rdfs:isDefinedBy ; + rdfs:label "Sound reduction index"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SoundVolumeVelocity + a qudt:QuantityKind ; + dcterms:description "Sound Volume Velocity is the product of particle velocity $v$ and the surface area $S$ through which an acoustic wave of frequency $f$ propagates. Also, the surface integral of the normal component of the sound particle velocity over the cross-section (through which the sound propagates). It is used to calculate acoustic impedance."^^qudt:LatexString ; + qudt:applicableUnit unit:M3-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acoustic_impedance"^^xsd:anyURI ; + qudt:latexDefinition "$q= vS$, where $v$ is sound particle velocity and $S$ is the surface area through which an acoustic wave of frequence $f$ propagates."^^qudt:LatexString ; + qudt:symbol "q" ; + rdfs:comment "Applicable units are those of quantitykind:SoundVolumeVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Sound volume velocity"@en ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SourceVoltage + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\textit{Source Voltage}$, also referred to as $\\textit{Source Tension}$ + is the voltage between the two terminals of a voltage source when there is no electric current through the source. + The name $\\text{electromotive force}$ with the abbreviation $\\textit{EMF}$ and the symbol $E$ is deprecated. + """^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:symbol "U_s" ; + rdfs:comment "Applicable units are those of quantitykind:Voltage" ; + rdfs:isDefinedBy ; + rdfs:label "Source Voltage"@en ; + skos:broader quantitykind:Voltage . + +quantitykind:SourceVoltageBetweenSubstances + a qudt:QuantityKind ; + dcterms:description "\"Source Voltage Between Substances\" is the source voltage between substance a and b."^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Source Voltage Between Substances\" is the source voltage between substance a and b." ; + qudt:symbol "E_{ab}" ; + rdfs:comment "Applicable units are those of quantitykind:Voltage" ; + rdfs:isDefinedBy ; + rdfs:label "Source Voltage Between Substances"@en ; + skos:broader quantitykind:Voltage . + +quantitykind:SpatialSummationFunction + a qudt:QuantityKind ; + dcterms:description "\"Spatial Summation Function\" is he ability to produce a composite signal from the signals coming into the eyes from different directions."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Summation_(neurophysiology)#Spatial_summation"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Spatial Summation Function\" is he ability to produce a composite signal from the signals coming into the eyes from different directions." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Spatial Summation Function"@en ; + skos:broader quantitykind:Length . + +quantitykind:SpecificAcousticImpedance + a qudt:QuantityKind ; + qudt:applicableUnit unit:N-SEC-PER-M3 ; + qudt:applicableUnit unit:RAYL ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:SpecificAcousticImpedance" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Acoustic Impedance"@en . + +quantitykind:SpecificActivity + a qudt:QuantityKind ; + dcterms:description "The \"Specific Activity\" is the number of decays per unit time of a radioactive sample. The SI unit of radioactive activity is the becquerel (Bq), in honor of the scientist Henri Becquerel."^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-PER-KiloGM ; + qudt:applicableUnit unit:CI-PER-KiloGM ; + qudt:applicableUnit unit:KiloBQ-PER-KiloGM ; + qudt:applicableUnit unit:MegaBQ-PER-KiloGM ; + qudt:applicableUnit unit:MicroBQ-PER-KiloGM ; + qudt:applicableUnit unit:MilliBQ-PER-GM ; + qudt:applicableUnit unit:MilliBQ-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Specific_activity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$a = \\frac{A}{m}$, where $A$ is the activity of a sample and $m$ is its mass."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Specific Activity\" is the number of decays per unit time of a radioactive sample. The SI unit of radioactive activity is the becquerel (Bq), in honor of the scientist Henri Becquerel." ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificActivity" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Activity"@en . + +quantitykind:SpecificElectricCharge + a qudt:QuantityKind ; + dcterms:description "Electric charge (often capacity in the context of electrochemical cells) relativ to the mass (often only active components). capacity "^^qudt:LatexString ; + qudt:applicableUnit unit:MilliA-HR-PER-GM ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:plainTextDescription "Electric charge (often capacity in the context of electrochemical cells) relativ to the mass (often only active components). capacity " ; + rdfs:comment "Applicable units are those of quantitykind:SpecificElectricCharge" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Electric Charge"@en . + +quantitykind:SpecificElectricCurrent + a qudt:QuantityKind ; + dcterms:description "\"Specific Electric Current\" is a measure to specify the applied current relative to a corresponding mass. This measure is often used for standardization within electrochemistry."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-GM ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:SpecificElectricCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Electrical Current"@en . + +quantitykind:SpecificEnergy + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Specific Energy}$ is defined as the energy per unit mass. + Common metric units are $J/kg$. + It is an intensive property. + Contrast this with energy, which is an extensive property. + There are two main types of specific energy: potential energy and specific kinetic energy. + Others are the $\\textit{gray}$ and $\\textit{sievert}$, which are measures for the absorption of radiation. + $$$$ + The concept of specific energy applies to a particular or theoretical way of extracting useful energy from the material considered that is usually implied by context. + These intensive properties are each symbolized by using the lower case letter of the symbol for the corresponding extensive property, + which is symbolized by a capital letter. + For example, the extensive thermodynamic property enthalpy is symbolized by $H$; specific enthalpy is symbolized by $h$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Specific_energy"^^xsd:anyURI ; + qudt:latexDefinition "$e = E/m$, where $E$ is energy and $m$ is mass."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:SENG ; + qudt:symbol "e" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Energy"@en ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy ; + rdfs:seeAlso unit:GRAY ; + rdfs:seeAlso unit:SV . + +quantitykind:SpecificEnergyImparted + a qudt:QuantityKind ; + dcterms:description "The \"Specific Energy Imparted\", is the energy imparted to an element of irradiated matter divided by the mass, dm, of that element."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "For ionizing radiation, $z = \\frac{\\varepsilon}{m}$, where $\\varepsilon$ is the energy imparted to irradiated matter and $m$ is the mass of that matter."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Specific Energy Imparted\", is the energy imparted to an element of irradiated matter divided by the mass, dm, of that element." ; + qudt:symbol "z" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Energy Imparted"@en ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:SpecificEnthalpy + a qudt:QuantityKind ; + dcterms:description "$\\textit{Specific Enthalpy}$ is enthalpy per mass of substance involved. Specific enthalpy is denoted by a lower case h, with dimension of energy per mass (SI unit: joule/kg). In thermodynamics, $\\textit{enthalpy}$ is the sum of the internal energy U and the product of pressure p and volume V of a system: $H = U + pV$. The internal energy U and the work term pV have dimension of energy, in SI units this is joule; the extensive (linear in size) quantity H has the same dimension."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Entropy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$h = H/m$, where $H$ is enthalpy and $m$ is mass."^^qudt:LatexString ; + qudt:symbol "h" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Enthalpy"@en ; + rdfs:seeAlso quantitykind:Enthalpy ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:SpecificEntropy + a qudt:QuantityKind ; + dcterms:description "\"Specific Entropy\" is entropy per unit of mass."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Entropy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$s = S/m$, where $S$ is entropy and $m$ is mass."^^qudt:LatexString ; + qudt:plainTextDescription "\"Specific Entropy\" is entropy per unit of mass." ; + qudt:symbol "s" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEntropy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Entropy"@en ; + rdfs:seeAlso quantitykind:Entropy . + +quantitykind:SpecificGibbsEnergy + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Specific Gibbs Energy}$ is a "corresponding intensive property", + which is $\\textit{Gibbs Energy}$ per mass of substance involved. + Energy has corresponding intensive (size-independent) properties for pure materials. + $\\textit{Specific Gibbs Energy}$ is denoted by a lower case $g$, + with dimension of energy per mass (SI unit: $joule/kg$). + """^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$g = G/m$, where $G$ is Gibbs energy and $m$ is mass."^^qudt:LatexString ; + qudt:plainTextDescription "Energy has corresponding intensive (size-independent) properties for pure materials. A corresponding intensive property is \"Specific Gibbs Energy}, which is $\\textit{Gibbs Energy} per mass of substance involved. $\\textit{Specific Gibbs Energy\" is denoted by a lower case g, with dimension of energy per mass (SI unit: joule/kg)." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Gibbs Energy"@en ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:SpecificHeatCapacity + a qudt:QuantityKind ; + dcterms:description "\"Specific Heat Capacity\" of a solid or liquid is defined as the heat required to raise unit mass of substance by one degree of temperature. This is $\\textit{Heat Capacity}$ divided by $\\textit{Mass}$. Note that there are corresponding molar quantities."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_R ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:applicableUnit unit:M2-PER-SEC2-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_heat_capacity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:informativeReference "http://www.taftan.com/thermodynamics/CP.HTM"^^xsd:anyURI ; + qudt:plainTextDescription "Specific Heat Capacity of a solid or liquid is defined as the heat required to raise unit mass of substance by one degree of temperature. This is Heat Capacity divided by Mass. Note that there are corresponding molar quantities." ; + qudt:siExactMatch si-quantity:SHEC ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Heat Capacity"@en ; + rdfs:seeAlso quantitykind:HeatCapacity ; + rdfs:seeAlso quantitykind:Mass ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantPressure ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantVolume ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtSaturation . + +quantitykind:SpecificHeatCapacityAtConstantPressure + a qudt:QuantityKind ; + dcterms:description "Specific heat at a constant pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:plainTextDescription "Specific heat at a constant pressure." ; + qudt:symbol "c_p" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacityAtConstantPressure" ; + rdfs:isDefinedBy ; + rdfs:label "Specific heat capacity at constant pressure"@en ; + rdfs:seeAlso quantitykind:SpecificHeatCapacity ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantVolume ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtSaturation . + +quantitykind:SpecificHeatCapacityAtConstantVolume + a qudt:QuantityKind ; + dcterms:description "Specific heat per constant volume."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:plainTextDescription "Specific heat per constant volume." ; + qudt:symbol "c_v" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacityAtConstantVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Specific heat capacity at constant volume"@en ; + rdfs:seeAlso quantitykind:SpecificHeatCapacity ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantPressure ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtSaturation . + +quantitykind:SpecificHeatCapacityAtSaturation + a qudt:QuantityKind ; + dcterms:description "Specific heat per constant volume."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_IT-PER-GM-K ; + qudt:applicableUnit unit:CAL_TH-PER-GM-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-GM-K ; + qudt:applicableUnit unit:J-PER-GM-DEG_C ; + qudt:applicableUnit unit:J-PER-GM-K ; + qudt:applicableUnit unit:J-PER-KiloGM-DEG_C ; + qudt:applicableUnit unit:J-PER-KiloGM-K ; + qudt:applicableUnit unit:KiloCAL-PER-GM-DEG_C ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "Specific heat per constant volume." ; + qudt:symbol "c_{sat}" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacityAtSaturation" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Heat Capacity at Saturation"@en ; + rdfs:seeAlso quantitykind:SpecificHeatCapacity ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantPressure ; + rdfs:seeAlso quantitykind:SpecificHeatCapacityAtConstantVolume . + +quantitykind:SpecificHeatPressure + a qudt:QuantityKind ; + dcterms:description "Specific heat at a constant pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-KiloGM-K-PA ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H-1T0D0 ; + qudt:plainTextDescription "Specific heat at a constant pressure." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatPressure" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Heat Pressure"@en . + +quantitykind:SpecificHeatVolume + a qudt:QuantityKind ; + dcterms:description "Specific heat per constant volume."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-KiloGM-K-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H-1T-2D0 ; + qudt:plainTextDescription "Specific heat per constant volume." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificHeatVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Heat Volume"@en . + +quantitykind:SpecificHeatsRatio + a qudt:QuantityKind ; + dcterms:description "The ratio of specific heats, for the exhaust gases adiabatic gas constant, is the relative amount of compression/expansion energy that goes into temperature $T$ versus pressure $P$ can be characterized by the heat capacity ratio: $\\gamma\\frac{C_P}{C_V}$, where $C_P$ is the specific heat (also called heat capacity) at constant pressure, while $C_V$ is the specific heat at constant volume. "^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Heats Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:SpecificHelmholtzEnergy + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Specific Helmholtz Energy}$ is a "corresponding intensive property", + which is $\\textit{Helmholz Energy}$ per mass of substance involved. + Energy has corresponding intensive (size-independent) properties for pure materials. + $\\textit{Specific Helmholz Energy}$ is denoted by a lower case $u$, + with dimension of energy per mass (SI unit: $joule/kg$). + """^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$a = A/m$, where $A$ is Helmholtz energy and $m$ is mass."^^qudt:LatexString ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Helmholtz Energy"@en ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificInternalEnergy ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:SpecificImpulse + a qudt:QuantityKind ; + dcterms:description "The impulse produced by a rocket divided by the mass $mp$ of propellant consumed. Specific impulse ${I_{sp}}$ is a widely used measure of performance for chemical, nuclear, and electric rockets. It is usually given in seconds for both U.S. Customary and International System (SI) units. The impulse produced by a rocket is the thrust force $F$ times its duration $t$ in seconds. $I_{sp}$ is the thrust per unit mass flowrate, but with $g_o$, is the thrust per weight flowrate. The specific impulse is given by the equation: $I_{sp} = \\frac{F}{\\dot{m}g_o}$."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "http://www.grc.nasa.gov/WWW/K-12/airplane/specimp.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Specific Impulse"@en ; + rdfs:seeAlso quantitykind:MassFlowRate . + +quantitykind:SpecificImpulseByMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Impulse by Mass"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:SpecificImpulseByWeight + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Impulse by Weight"@en ; + skos:broader quantitykind:SpecificImpulse ; + skos:broader quantitykind:Time . + +quantitykind:SpecificInternalEnergy + a qudt:QuantityKind ; + dcterms:description "Energy has corresponding intensive (size-independent) properties for pure materials. A corresponding intensive property is specific internal energy, which is energy per mass of substance involved. Specific internal energy is denoted by a lower case u, with dimension of energy per mass (SI unit: joule/kg)."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-LB ; + qudt:applicableUnit unit:BTU_TH-PER-LB ; + qudt:applicableUnit unit:CAL_IT-PER-GM ; + qudt:applicableUnit unit:CAL_TH-PER-GM ; + qudt:applicableUnit unit:ERG-PER-GM ; + qudt:applicableUnit unit:J-PER-GM ; + qudt:applicableUnit unit:J-PER-KiloGM ; + qudt:applicableUnit unit:KiloCAL-PER-GM ; + qudt:applicableUnit unit:KiloJ-PER-KiloGM ; + qudt:applicableUnit unit:KiloLB_F-FT-PER-LB ; + qudt:applicableUnit unit:MegaJ-PER-KiloGM ; + qudt:applicableUnit unit:MilliJ-PER-GM ; + qudt:applicableUnit unit:N-M-PER-KiloGM ; + qudt:applicableUnit unit:W-HR-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD173" ; + qudt:informativeReference "http://en.citizendium.org/wiki/Enthalpy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD173"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$u = U/m$, where $U$ is thermodynamic energy and $m$ is mass."^^qudt:LatexString ; + qudt:plainTextDescription "Energy has corresponding intensive (size-independent) properties for pure materials. A corresponding intensive property is specific internal energy, which is energy per mass of substance involved. Specific internal energy is denoted by a lower case u, with dimension of energy per mass (SI unit: joule/kg)." ; + qudt:symbol "u" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Internal Energy"@en ; + rdfs:seeAlso quantitykind:InternalEnergy ; + rdfs:seeAlso quantitykind:MassieuFunction ; + rdfs:seeAlso quantitykind:PlanckFunction ; + rdfs:seeAlso quantitykind:SpecificEnergy ; + rdfs:seeAlso quantitykind:SpecificEnthalpy ; + rdfs:seeAlso quantitykind:SpecificGibbsEnergy ; + rdfs:seeAlso quantitykind:SpecificHelmholtzEnergy ; + skos:broader quantitykind:SpecificEnergy . + +quantitykind:SpecificModulus + a qudt:QuantityKind ; + dcterms:description "

Specific modulus is a materials property consisting of the elastic modulus per mass density of a material. It is also known as the stiffness to weight ratio or specific stiffness. High specific modulus materials find wide application in aerospace applications where minimum structural weight is required. The dimensional analysis yields units of distance squared per time squared.

"^^qudt:LatexString ; + qudt:applicableUnit unit:GigaPA-CentiM3-PER-GM ; + qudt:applicableUnit unit:KiloM2-PER-SEC2 ; + qudt:applicableUnit unit:M2-PER-SEC2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_modulus"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Specific_modulus"^^xsd:anyURI ; + qudt:latexDefinition "$specific modulus = E/\\rho$, where $E$ is elastic modulus and $\\rho$ is density."^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:SpecificModulus" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Modulus"@en ; + skos:altLabel "Specific Stiffness"@en ; + skos:altLabel "Stiffness to Weight Ratio"@en . + +quantitykind:SpecificOpticalRotationalAbility + a qudt:QuantityKind ; + dcterms:description "material-specific quantity, which results as angle of rotation of a substance for a defined wavelength and a defined temperature from the relation: quotient of measured angle of rotation divided by the mass concentration and the radiographed distance"@en ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD174" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD174"^^xsd:anyURI ; + qudt:plainTextDescription "materialspezifische Größe, die sich als Drehwinkel einer Substanz für eine bestimmte Wellenlänge und eine bestimmte Temperatur ergibt durch die Beziehung: Quotient aus gemessener Drehwinkel dividiert durch die Massenkonzentration und die durchstrahlte Wegstrecke"@de ; + qudt:symbol "0173-1#Z4-BAJ425#001" ; + rdfs:isDefinedBy ; + rdfs:label "specific optical rotational ability" ; + rdfs:label "specific optical rotational ability"@en-US . + +quantitykind:SpecificOpticalRotatoryPower + a qudt:QuantityKind ; + dcterms:description "The \"Specific Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the mass concentration of the substance giving the specific optical rotatory power."^^qudt:LatexString ; + qudt:applicableUnit unit:RAD-M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:informativeReference "http://goldbook.iupac.org/O04313.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_m = \\alpha \\frac{A}{m}$, where $\\alpha$ is the angle of optical rotation, and $m$ is the mass of the optically active component in the path of a linearly polarized light beam of cross sectional area $A$."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_m$"^^qudt:LatexString ; + qudt:plainTextDescription "The \"Specific Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the mass concentration of the substance giving the specific optical rotatory power." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificOpticalRotatoryPower" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Optical Rotatory Power"@en . + +quantitykind:SpecificPower + a qudt:QuantityKind ; + dcterms:description "Specific power, also known as power-to-weight ratio, is the amount of power output per unit mass of the power source. It is generally used to measure the performance of that power source. The higher the ratio, the more power a system produces relative to its weight. It's commonly used in the automotive and aerospace industries to compare the performance of different engines. It's generally measured in watts per kilogram (W/kg) or horsepower per pound (hp/lb)."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-PER-GM-SEC ; + qudt:applicableUnit unit:GRAY-PER-HR ; + qudt:applicableUnit unit:GRAY-PER-MIN ; + qudt:applicableUnit unit:GRAY-PER-SEC ; + qudt:applicableUnit unit:MicroGRAY-PER-HR ; + qudt:applicableUnit unit:MicroGRAY-PER-MIN ; + qudt:applicableUnit unit:MicroGRAY-PER-SEC ; + qudt:applicableUnit unit:MicroSV-PER-MIN ; + qudt:applicableUnit unit:MicroSV-PER-SEC ; + qudt:applicableUnit unit:MilliGRAY-PER-HR ; + qudt:applicableUnit unit:MilliGRAY-PER-MIN ; + qudt:applicableUnit unit:MilliGRAY-PER-SEC ; + qudt:applicableUnit unit:MilliRAD_R-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-HR ; + qudt:applicableUnit unit:MilliSV-PER-MIN ; + qudt:applicableUnit unit:MilliSV-PER-SEC ; + qudt:applicableUnit unit:MilliW-PER-MilliGM ; + qudt:applicableUnit unit:NanoGRAY-PER-HR ; + qudt:applicableUnit unit:NanoGRAY-PER-MIN ; + qudt:applicableUnit unit:NanoGRAY-PER-SEC ; + qudt:applicableUnit unit:NanoSV-PER-HR ; + qudt:applicableUnit unit:NanoSV-PER-MIN ; + qudt:applicableUnit unit:NanoSV-PER-SEC ; + qudt:applicableUnit unit:REM-PER-SEC ; + qudt:applicableUnit unit:SV-PER-HR ; + qudt:applicableUnit unit:SV-PER-MIN ; + qudt:applicableUnit unit:SV-PER-SEC ; + qudt:applicableUnit unit:W-PER-GM ; + qudt:applicableUnit unit:W-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Power-to-weight_ratio"^^xsd:anyURI ; + qudt:plainTextDescription "Specific power, also known as power-to-weight ratio, is the amount of power output per unit mass of the power source. It is generally used to measure the performance of that power source. The higher the ratio, the more power a system produces relative to its weight. It's commonly used in the automotive and aerospace industries to compare the performance of different engines. It's generally measured in watts per kilogram (W/kg) or horsepower per pound (hp/lb)." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificPower" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Power"@en ; + skos:altLabel "Power-to-Weight Ratio"@en . + +quantitykind:SpecificSurfaceArea + a qudt:QuantityKind ; + dcterms:description "Specific surface area (SSA) is a property of solids defined as the total surface area (SA) of a material per unit mass, (with units of m2/kg or m2/g). It is a physical value that can be used to determine the type and properties of a material (e.g. soil or snow). It has a particular importance for adsorption, heterogeneous catalysis, and reactions on surfaces."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-GM ; + qudt:applicableUnit unit:M2-PER-GM ; + qudt:applicableUnit unit:M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Specific_surface_area"^^xsd:anyURI ; + qudt:latexDefinition "$SSA = \\frac{SA}{\\m}$, where $SA$ is the surface area of an object and $\\m$ is the mass density of the object."^^qudt:LatexString ; + qudt:latexSymbol "$SSA$"^^qudt:LatexString ; + qudt:plainTextDescription "Specific surface area (SSA) is a property of solids defined as the total surface area (SA) of a material per unit mass, (with units of m²/kg or m²/g). It is a physical value that can be used to determine the type and properties of a material (e.g. soil or snow). It has a particular importance for adsorption, heterogeneous catalysis, and reactions on surfaces." ; + rdfs:comment "Applicable units are those of quantitykind:SpecificSurfaceArea" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Surface Area"@en . + +quantitykind:SpecificThrust + a qudt:QuantityKind ; + dcterms:description "Specific impulse (usually abbreviated Isp) is a way to describe the efficiency of rocket and jet engines. It represents the force with respect to the amount of propellant used per unit time.[1] If the \"amount\" of propellant is given in terms of mass (such as kilograms), then specific impulse has units of velocity. If it is given in terms of Earth-weight (such as kiloponds), then specific impulse has units of time. The conversion constant between the two versions of specific impulse is g. The higher the specific impulse, the lower the propellant flow rate required for a given thrust, and in the case of a rocket the less propellant is needed for a given delta-v per the Tsiolkovsky rocket equation."^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_thrust"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:id "Q-160-100" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Specific_thrust"^^xsd:anyURI ; + qudt:plainTextDescription "Specific impulse (usually abbreviated Isp) is a way to describe the efficiency of rocket and jet engines. It represents the force with respect to the amount of propellant used per unit time.[1] If the \"amount\" of propellant is given in terms of mass (such as kilograms), then specific impulse has units of velocity. If it is given in terms of Earth-weight (such as kiloponds), then specific impulse has units of time. The conversion constant between the two versions of specific impulse is g. The higher the specific impulse, the lower the propellant flow rate required for a given thrust, and in the case of a rocket the less propellant is needed for a given delta-v per the Tsiolkovsky rocket equation." ; + rdfs:isDefinedBy ; + rdfs:label "Specific thrust"@en ; + rdfs:seeAlso quantitykind:SpecificImpulse . + +quantitykind:SpecificVolume + a qudt:QuantityKind ; + dcterms:description "\"Specific Volume\" ($\\nu$) is the volume occupied by a unit of mass of a material. It is equal to the inverse of density."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-GM ; + qudt:applicableUnit unit:DeciL-PER-GM ; + qudt:applicableUnit unit:DeciM3-PER-KiloGM ; + qudt:applicableUnit unit:FT3-PER-LB ; + qudt:applicableUnit unit:IN3-PER-LB ; + qudt:applicableUnit unit:L-PER-KiloGM ; + qudt:applicableUnit unit:M3-PER-KiloGM ; + qudt:applicableUnit unit:MilliL-PER-GM ; + qudt:applicableUnit unit:MilliL-PER-KiloGM ; + qudt:applicableUnit unit:MilliM3-PER-GM ; + qudt:applicableUnit unit:MilliM3-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD175" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Specific_volume"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD175"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$sv = \\frac{1}{\\rho}$, where $\\rho$ is mass density."^^qudt:LatexString ; + qudt:siExactMatch si-quantity:SPVO ; + rdfs:comment "Applicable units are those of quantitykind:SpecificVolume" ; + rdfs:isDefinedBy ; + rdfs:label "Specific Volume"@en ; + rdfs:seeAlso quantitykind:Density . + +quantitykind:SpecificWeight + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloN-PER-M3 ; + qudt:applicableUnit unit:OZ_F-PER-IN3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Specific_weight"^^xsd:anyURI ; + qudt:plainTextDescription "The specific weight, also known as the unit weight is a volume-specific quantity defined as the weight per unit volume of a material. Note that weight is defined as a force, distinct from mass." ; + qudt:symbol "γ" ; + rdfs:comment "Applicable units are those of quantitykind:SpecificWeight" ; + rdfs:isDefinedBy ; + rdfs:label "specific weight"@en . + +quantitykind:SpectralAngularCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Spectral Angular Cross-section\" is the cross-section for ejecting or scattering a particle into an elementary cone with energy $E$ in an energy interval, divided by the solid angle $d\\Omega$ of that cone and the range $dE$ of that interval."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-SR-ERG ; + qudt:applicableUnit unit:M2-PER-SR-J ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\sigma = \\int \\int \\sigma_{\\Omega,E} d\\Omega dE$"^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma_{\\Omega, E}$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:SpectralAngularCrossSection" ; + rdfs:isDefinedBy ; + rdfs:label "Spectral Angular Cross-section"@en ; + skos:closeMatch quantitykind:AngularCrossSection ; + skos:closeMatch quantitykind:SpectralCrossSection . + +quantitykind:SpectralConcentrationOfRadiantEnergyDensity + a qudt:QuantityKind ; + dcterms:description "energy distribution of the instantaneous value of radiant energy in relation to the volume of the propagation medium"@en ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:plainTextDescription "Energieverteilung des Augenblickswertes der Strahlungsenergie, bezogen auf das Volumen des Ausbreitungsmediums"@de ; + qudt:symbol "0173-1#Z4-BAJ379#002" ; + rdfs:isDefinedBy ; + rdfs:label "spectral concentration of radiant energy density"@en-US . + +quantitykind:SpectralConcentrationOfVibrationalModes + a qudt:QuantityKind ; + dcterms:description "number of vibrational modes in an infinitesimal interval of angular frequency, divided by the size of that interval and by volume"@en ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:plainTextDescription "Anzahl von Vibrationsmodi in einem infinitesimalen Energie-Intervall der Kreisfrequenz, dividiert durch die Größe dieses Energie-Intervalls und durch das zugehörige Volumen"@de ; + qudt:symbol "0173-1#Z4-BAJ431#001" ; + rdfs:isDefinedBy ; + rdfs:label "spectral concentration of vibrational modes (in terms of angular frequency)"@en-US . + +quantitykind:SpectralCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Spectral Cross-section\" is the cross-section for a process in which the energy of the ejected or scattered particle is in an interval of energy, divided by the range $dE$ of this interval."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-ERG ; + qudt:applicableUnit unit:M2-PER-J ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$\\sigma = \\int \\sigma_E dE$"^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma_E$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:SpectralCrossSection" ; + rdfs:isDefinedBy ; + rdfs:label "Spectral Cross-section"@en ; + skos:closeMatch quantitykind:AngularCrossSection . + +quantitykind:SpectralDensityOfVibrationalModes + a qudt:QuantityKind ; + qudt:applicableUnit unit:SEC-PER-M3-RAD ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD178" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD178"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:SpectralDensityOfVibrationalModes" ; + rdfs:isDefinedBy ; + rdfs:label "spectral density of vibrational modes" . + +quantitykind:SpectralLuminousEfficiency + a qudt:QuantityKind ; + dcterms:description "The Spectral Luminous Efficiency is a measure of how well a light source produces visible light. It is the ratio of luminous flux to power. A common choice is to choose units such that the maximum possible efficacy, 683 lm/W, corresponds to an efficiency of 100%."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_efficacy"^^xsd:anyURI ; + qudt:latexDefinition "$V(\\lambda) = \\frac{\\Phi_\\lambda(\\lambda_m)}{\\Phi_\\lambda(\\lambda)}$, where $\\Phi_\\lambda(\\lambda_m)$ is the spectral radiant flux at wavelength $\\lambda_m$ and $\\Phi_\\lambda(\\lambda)$ is the spectral radiant flux at wavelength $\\lambda$, such that both radiations produce equal luminous sensations under specified photometric conditions and $\\lambda_m$ is chosen so that the maximum value of this ratio is equal to 1."^^qudt:LatexString ; + qudt:plainTextDescription "The Spectral Luminous Efficiency is a measure of how well a light source produces visible light. It is the ratio of luminous flux to power. A common choice is to choose units such that the maximum possible efficacy, 683 lm/W, corresponds to an efficiency of 100%." ; + qudt:symbol "V" ; + rdfs:isDefinedBy ; + rdfs:label "Spectral Luminous Efficiency"@en . + +quantitykind:SpectralRadiantEnergyDensity + a qudt:QuantityKind ; + dcterms:description "\"Spectral Radiant Energy Density\" is the spectral concentration of radiant energy density (in terms of wavelength), or the spectral radiant energy density (in terms of wave length)."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-M4 ; + qudt:applicableUnit unit:KiloPA-PER-MilliM ; + qudt:applicableUnit unit:PA-PER-M ; + qudt:applicableUnit unit:PicoPA-PER-KiloM ; + qudt:expression "$M-PER-L2-T2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:plainTextDescription "\"Spectral Radiant Energy Density\" is the spectral concentration of radiant energy density (in terms of wavelength), or the spectral radiant energy density (in terms of wave length)." ; + rdfs:comment "Applicable units are those of quantitykind:SpectralRadiantEnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Spectral Radiant Energy Density"@en . + +quantitykind:SpectralRadiantEnergyDensityInTermsOfWavelength + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD179" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD179"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "spectral radiant energy density in terms of wavelength" . + +quantitykind:Speed + a qudt:QuantityKind ; + dcterms:description "Speed is the magnitude of velocity."^^qudt:LatexString ; + qudt:applicableUnit unit:BFT ; + qudt:applicableUnit unit:FT3-PER-MIN-FT2 ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:HZ-M ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:MegaHZ-M ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Speed"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Speed is the magnitude of velocity." ; + rdfs:comment "Applicable units are those of quantitykind:Speed" ; + rdfs:isDefinedBy ; + rdfs:label "Speed"@en . + +quantitykind:SpeedOfLight + a qudt:QuantityKind ; + dcterms:description """ + The quantity kind $\\text{Speed of Light}$ is the speed of electomagnetic waves in a given medium. + """^^qudt:LatexString ; + qudt:applicableUnit unit:BFT ; + qudt:applicableUnit unit:FT3-PER-MIN-FT2 ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:HZ-M ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:MegaHZ-M ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Speed_of_light"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=113-01-34"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Speed" ; + rdfs:isDefinedBy ; + rdfs:label "Hitrost svetlobe"@sl ; + rdfs:label "Işık hızı"@tr ; + rdfs:label "Kelajuan cahaya"@ms ; + rdfs:label "Lichtgeschwindigkeit"@de ; + rdfs:label "Prędkość światła"@pl ; + rdfs:label "Rychlost světla"@cs ; + rdfs:label "Velocidade da luz"@pt ; + rdfs:label "Viteza luminii"@ro ; + rdfs:label "speed of light"@en ; + rdfs:label "velocidad de la luz"@es ; + rdfs:label "velocità della luce"@it ; + rdfs:label "vitesse de la lumière"@fr ; + rdfs:label "Скорость света"@ru ; + rdfs:label "سرعة الضوء"@ar ; + rdfs:label "سرعت نور"@fa ; + rdfs:label "प्रकाश का वेग"@hi ; + rdfs:label "光速"@ja ; + rdfs:label "光速"@zh ; + rdfs:seeAlso constant:MagneticConstant ; + rdfs:seeAlso constant:PermittivityOfVacuum ; + rdfs:seeAlso constant:SpeedOfLight_Vacuum ; + skos:broader quantitykind:Speed . + +quantitykind:SpeedOfSound + a qudt:QuantityKind ; + dcterms:description "The speed of sound is the distance travelled during a unit of time by a sound wave propagating through an elastic medium."^^qudt:LatexString ; + qudt:applicableUnit unit:BFT ; + qudt:applicableUnit unit:FT3-PER-MIN-FT2 ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:HZ-M ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:MegaHZ-M ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Speed_of_sound"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ; + qudt:latexDefinition "$c = \\sqrt{\\frac{K}{\\rho}}$, where $K$ is the coefficient of stiffness, the bulk modulus (or the modulus of bulk elasticity for gases), and $\\rho$ is the density. Also, $c^2 = \\frac{\\partial p}{\\partial \\rho}$, where $p$ is the pressure and $\\rho$ is the density."^^qudt:LatexString ; + qudt:plainTextDescription "The speed of sound is the distance travelled during a unit of time by a sound wave propagating through an elastic medium." ; + qudt:symbol "c" ; + rdfs:comment "Applicable units are those of quantitykind:Speed" ; + rdfs:isDefinedBy ; + rdfs:label "Hitrost zvoka"@sl ; + rdfs:label "Kelajuan bunyi"@ms ; + rdfs:label "Schallgeschwindigkeit"@de ; + rdfs:label "Ses hızı"@tr ; + rdfs:label "prędkość dźwięku"@pl ; + rdfs:label "rychlost zvuku"@cs ; + rdfs:label "speed of sound"@en ; + rdfs:label "velocidad del sonido"@es ; + rdfs:label "velocidade do som"@pt ; + rdfs:label "velocità del suono"@it ; + rdfs:label "vitesse du son"@fr ; + rdfs:label "viteza sunetului"@ro ; + rdfs:label "скорость звука"@ru ; + rdfs:label "سرعة الصوت"@ar ; + rdfs:label "سرعت صوت"@fa ; + rdfs:label "ध्वनि का वेग"@hi ; + rdfs:label "音速"@ja ; + rdfs:label "音速"@zh ; + skos:altLabel "Schallausbreitungsgeschwindigkeit"@de ; + skos:altLabel "célérité du son"@fr ; + skos:broader quantitykind:Speed ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:SpeedRatio + a qudt:QuantityKind ; + dcterms:description "Speed ratio generally refers to the ratio of the rotational speeds of two interconnected rotating components, but it sometimes relates linear speeds." ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://sciencing.com/calculate-speed-ratio-7598425.html"^^xsd:anyURI ; + qudt:plainTextDescription "Speed ratio generally refers to the ratio of the rotational speeds of two interconnected rotating components, but it sometimes relates linear speeds." ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Speed Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:SphericalIlluminance + a qudt:QuantityKind ; + dcterms:description "Spherical illuminance is equal to quotient of the total luminous flux $\\Phi_v$ incident on a small sphere by the cross section area of that sphere."^^qudt:LatexString ; + qudt:applicableUnit unit:FC ; + qudt:applicableUnit unit:LUX ; + qudt:applicableUnit unit:PHOT ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Illuminance"^^xsd:anyURI ; + qudt:latexDefinition "$E_v,0 = \\int_{4\\pi sr}{L_v}{d\\Omega}$, where $d\\Omega$ is the solid angle of each elementary beam passing through the given point and $L_v$ is its luminance at that point in the direction of the beam."^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Illuminance"@en ; + skos:broader quantitykind:Illuminance . + +quantitykind:Spin + a qudt:QuantityKind ; + dcterms:description "In quantum mechanics and particle physics \"Spin\" is an intrinsic form of angular momentum carried by elementary particles, composite particles (hadrons), and atomic nuclei."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-SEC ; + qudt:applicableUnit unit:EV-SEC ; + qudt:applicableUnit unit:FT-LB_F-SEC ; + qudt:applicableUnit unit:J-SEC ; + qudt:applicableUnit unit:KiloGM-M2-PER-SEC ; + qudt:applicableUnit unit:N-M-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Spin_(physics)"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "In quantum mechanics and particle physics \"Spin\" is an intrinsic form of angular momentum carried by elementary particles, composite particles (hadrons), and atomic nuclei." ; + qudt:symbol "s" ; + rdfs:comment "Applicable units are those of quantitykind:AngularMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Spin"@de ; + rdfs:label "Spin"@ms ; + rdfs:label "Spin"@ro ; + rdfs:label "Spin"@tr ; + rdfs:label "espín"@es ; + rdfs:label "spin"@cs ; + rdfs:label "spin"@en ; + rdfs:label "spin"@fr ; + rdfs:label "spin"@it ; + rdfs:label "spin"@pl ; + rdfs:label "spin"@pt ; + rdfs:label "spin"@sl ; + rdfs:label "Спин"@ru ; + rdfs:label "اسپین/چرخش"@fa ; + rdfs:label "لف مغزلي"@ar ; + rdfs:label "スピン角運動量"@ja ; + rdfs:label "自旋"@zh ; + skos:broader quantitykind:AngularMomentum . + +quantitykind:SpinQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Spin Quantum Number\" describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis"^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD371" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD371"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$s^2 = \\hbar^2 s(s + 1)$, where $s$ is the spin quantum number and $\\hbar$ is the Planck constant."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Spin Quantum Number\" describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis" ; + qudt:symbol "s" ; + rdfs:comment "Applicable units are those of quantitykind:SpinQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Spin Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber ; + skos:closeMatch quantitykind:MagneticQuantumNumber ; + skos:closeMatch quantitykind:OrbitalAngularMomentumQuantumNumber ; + skos:closeMatch quantitykind:PrincipalQuantumNumber . + +quantitykind:StagePropellantMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_F" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Stage Propellant Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:StageStructuralMass + a qudt:QuantityKind ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "M_S" ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Stage Structure Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:StandardAbsoluteActivity + a qudt:QuantityKind ; + dcterms:description "The \"Standard Absolute Activity\" is proportional to the absoulte activity of the pure substance $B$ at the same temperature and pressure multiplied by the standard pressure."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Activity_coefficient"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda_B^\\Theta = \\lambda_B^*(p^\\Theta)$, where $\\lambda_B^\\Theta$ the absolute activity of the pure substance $B$ at the same temperature and pressure, and $p^\\Theta$ is standard pressure."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda_B^\\Theta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:StandardAbsoluteActivity" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Absolute Activity"@en . + +quantitykind:StandardChemicalPotential + a qudt:QuantityKind ; + dcterms:description "\"Standard Chemical Potential\" is the value of the chemical potential at standard conditions"^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-MOL ; + qudt:applicableUnit unit:KiloCAL-PER-MOL ; + qudt:applicableUnit unit:KiloJ-PER-MOL ; + qudt:expression "$j-mol^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_potential"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu_B^\\Theta$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Standard Chemical Potential\" is the value of the chemical potential at standard conditions" ; + rdfs:comment "Applicable units are those of quantitykind:MolarEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Chemical Potential"@en ; + skos:broader quantitykind:ChemicalPotential . + +quantitykind:StandardGravitationalParameter + a qudt:QuantityKind ; + dcterms:description "In celestial mechanics the standard gravitational parameter of a celestial body is the product of the gravitational constant G and the mass M of the body. Expressed as $\\mu = G \\cdot M$. The SI units of the standard gravitational parameter are $m^{3}s^{-2}$."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloM3-PER-SEC2 ; + qudt:applicableUnit unit:M3-PER-SEC2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Standard_gravitational_parameter"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Standard_gravitational_parameter"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:StandardGravitationalParameter" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Gravitational Parameter"@en . + +quantitykind:StateDensity + a qudt:QuantityKind ; + dcterms:description "function of energy in a solid, determined by the number of permissible quantum states in the energy range between E and E+dE per volume of material of this solid"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Funktion der Energie in einem Festkörper, bestimmt durch die Anzahl von erlaubten Quantenzuständen im Energiebereich zwischen E und E+dE je Volumen des Materials dieses Festkörpers"@de ; + qudt:symbol "0173-1#Z4-BAJ427#001" ; + rdfs:isDefinedBy ; + rdfs:label "state density"@en-US . + +quantitykind:StateDensityAsExpressionOfAngularFrequency + a qudt:QuantityKind ; + dcterms:description "ratio between number of vibration modes in an infinitesimal interval of the angular frequency and the length of this interval and the volume"@en ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD180" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD180"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient aus Anzahl von Vibrationsmodi in einem infinitesimalen Intervall der Kreisfrequenz durch die Spannweite dieses Intervalls und das Volumen"@de ; + qudt:symbol "0173-1#Z4-BAJ454#001" ; + rdfs:isDefinedBy ; + rdfs:label "state density as expression of angular frequency)" ; + rdfs:label "state density as expression of angular frequency"@en-US . + +quantitykind:StateOfCharge + a qudt:QuantityKind ; + dcterms:description "\"State of Charge\",quantifies the remaining capacity available in a battery at a given time and in relation to a given state of ageing."^^qudt:LatexString ; + qudt:applicableSIUnit unit:PERCENT ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/State_of_charge"^^xsd:anyURI ; + qudt:plainTextDescription "\"\"State of Charge\",quantifies the remaining capacity available in a battery at a given time and in relation to a given state of ageing." ; + qudt:symbol "SoC" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "StateOfCharge"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:StaticFriction + a qudt:QuantityKind ; + dcterms:description "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:plainTextDescription "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. " ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Static Friction"@en ; + skos:broader quantitykind:Friction . + +quantitykind:StaticFrictionCoefficient + a qudt:QuantityKind ; + dcterms:description "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\mu = \\frac{F_max}{N}$, where $F_max$ is the maximum tangential component of the contact force and $N$ is the normal component of the contact force between two bodies at relative rest."^^qudt:LatexString ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. " ; + qudt:qkdvDenominator qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:FrictionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Static Friction Coefficient"@en ; + skos:broader quantitykind:FrictionCoefficient . + +quantitykind:StaticPressure + a qudt:QuantityKind ; + dcterms:description "\"Static Pressure\" is the pressure at a nominated point in a fluid. Every point in a steadily flowing fluid, regardless of the fluid speed at that point, has its own static pressure $P$, dynamic pressure $q$, and total pressure $P_0$. The total pressure is the sum of the dynamic and static pressures, that is $P_0 = P + q$."^^qudt:LatexString ; + qudt:abbreviation "p" ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Static_pressure"^^xsd:anyURI ; + qudt:symbol "p" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Static pressure"@en ; + skos:broader quantitykind:Pressure ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:StatisticalWeight + a qudt:QuantityKind ; + dcterms:description "A \"Statistical Weight\" is the relative probability (possibly unnormalized) of a particular feature of a state."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Statistical_weight"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:plainTextDescription "A \"Statistical Weight\" is the relative probability (possibly unnormalized) of a particular feature of a state." ; + qudt:symbol "g" ; + rdfs:comment "Applicable units are those of quantitykind:StatisticalWeight" ; + rdfs:isDefinedBy ; + rdfs:label "Statistical Weight"@en . + +quantitykind:StochasticProcess + a qudt:QuantityKind ; + dcterms:description "In probability theory, a stochastic process, or sometimes random process is a collection of random variables; this is often used to represent the evolution of some random value, or system, over time. This is the probabilistic counterpart to a deterministic process (or deterministic system)."^^qudt:LatexString ; + qudt:applicableUnit unit:GigaHZ ; + qudt:applicableUnit unit:HZ ; + qudt:applicableUnit unit:KiloHZ ; + qudt:applicableUnit unit:MegaHZ ; + qudt:applicableUnit unit:MilliHZ ; + qudt:applicableUnit unit:NUM-PER-HR ; + qudt:applicableUnit unit:NUM-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-YR ; + qudt:applicableUnit unit:PER-DAY ; + qudt:applicableUnit unit:PER-HR ; + qudt:applicableUnit unit:PER-MIN ; + qudt:applicableUnit unit:PER-MO ; + qudt:applicableUnit unit:PER-MilliSEC ; + qudt:applicableUnit unit:PER-SEC ; + qudt:applicableUnit unit:PER-WK ; + qudt:applicableUnit unit:PER-YR ; + qudt:applicableUnit unit:PERCENT-PER-DAY ; + qudt:applicableUnit unit:PERCENT-PER-HR ; + qudt:applicableUnit unit:PERCENT-PER-MO ; + qudt:applicableUnit unit:PERCENT-PER-WK ; + qudt:applicableUnit unit:PERCENT-PER-YR ; + qudt:applicableUnit unit:PPTH-PER-HR ; + qudt:applicableUnit unit:PetaHZ ; + qudt:applicableUnit unit:PlanckFrequency ; + qudt:applicableUnit unit:SAMPLE-PER-SEC ; + qudt:applicableUnit unit:TeraHZ ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Stochastic_process"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stochastic_process"^^xsd:anyURI ; + qudt:plainTextDescription "In probability theory, a stochastic process, or sometimes random process is a collection of random variables; this is often used to represent the evolution of some random value, or system, over time. This is the probabilistic counterpart to a deterministic process (or deterministic system)." ; + qudt:symbol "X" ; + rdfs:comment "Applicable units are those of quantitykind:Frequency" ; + rdfs:isDefinedBy ; + rdfs:label "Stochastic Process"@en ; + skos:broader quantitykind:Frequency . + +quantitykind:StoichiometricNumber + a qudt:QuantityKind ; + dcterms:description "Chemical reactions, as macroscopic unit operations, consist of simply a very large number of elementary reactions, where a single molecule reacts with another molecule. As the reacting molecules (or moieties) consist of a definite set of atoms in an integer ratio, the ratio between reactants in a complete reaction is also in integer ratio. A reaction may consume more than one molecule, and the \"Stoichiometric Number\" counts this number, defined as positive for products (added) and negative for reactants (removed)."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stoichiometry"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexSymbol "$\\nu_B$"^^qudt:LatexString ; + qudt:plainTextDescription "Chemical reactions, as macroscopic unit operations, consist of simply a very large number of elementary reactions, where a single molecule reacts with another molecule. As the reacting molecules (or moieties) consist of a definite set of atoms in an integer ratio, the ratio between reactants in a complete reaction is also in integer ratio. A reaction may consume more than one molecule, and the \"Stoichiometric Number\" counts this number, defined as positive for products (added) and negative for reactants (removed)." ; + rdfs:comment "Applicable units are those of quantitykind:StoichiometricNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Stoichiometric Number"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:Strain + a qudt:QuantityKind ; + dcterms:description "In any branch of science dealing with materials and their behaviour, strain is the geometrical expression of deformation caused by the action of stress on a physical body. Strain is calculated by first assuming a change between two body states: the beginning state and the final state. Then the difference in placement of two points in this body in those two states expresses the numerical value of strain. Strain therefore expresses itself as a change in size and/or shape. [Wikipedia]"^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Strain"^^xsd:anyURI ; + qudt:exactMatch quantitykind:LinearStrain ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.freestudy.co.uk/mech%20prin%20h2/stress.pdf"^^xsd:anyURI ; + qudt:latexSymbol "$\\epsilon$"^^qudt:LatexString ; + qudt:plainTextDescription "In any branch of science dealing with materials and their behaviour, strain is the geometrical expression of deformation caused by the action of stress on a physical body. Strain is calculated by first assuming a change between two body states: the beginning state and the final state. Then the difference in placement of two points in this body in those two states expresses the numerical value of strain. Strain therefore expresses itself as a change in size and/or shape. [Wikipedia]" ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Strain"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:StrainEnergyDensity + a qudt:QuantityKind ; + dcterms:description "Defined as the 'work done' for a given strain, that is the area under the stress-strain curve after a specified eation. Source(s): http://www.prepol.com/product-range/product-subpages/terminology"^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT3 ; + qudt:applicableUnit unit:BTU_TH-PER-FT3 ; + qudt:applicableUnit unit:ERG-PER-CentiM3 ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:applicableUnit unit:MegaJ-PER-M3 ; + qudt:applicableUnit unit:W-HR-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:plainTextDescription "Defined as the 'work done' for a given strain, that is the area under the stress-strain curve after a specified eation. Source(s): http://www.prepol.com/product-range/product-subpages/terminology" ; + qudt:symbol "u" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Strain Energy Density"@en ; + skos:broader quantitykind:EnergyDensity . + +quantitykind:StrainEnergyReleaseRate + a qudt:QuantityKind ; + dcterms:description "In fracture mechanics, the energy release rate, G, is the rate at which energy is transformed as a material undergoes fracture. Mathematically, the energy release rate is expressed as the decrease in total potential energy per increase in fracture surface area, and is thus expressed in terms of energy per unit area."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-PER-CentiM2 ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:J-PER-CentiM2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:MegaJ-PER-M2 ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Energy_release_rate_(fracture_mechanics)"^^xsd:anyURI ; + qudt:latexSymbol "$\\G$"^^qudt:LatexString ; + qudt:plainTextDescription "In fracture mechanics, the energy release rate, G, is the rate at which energy is transformed as a material undergoes fracture. Mathematically, the energy release rate is expressed as the decrease in total potential energy per increase in fracture surface area, and is thus expressed in terms of energy per unit area." ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:StrainEnergyReleaseRate" ; + rdfs:isDefinedBy ; + rdfs:label "Strain Energy Release Rate"@en ; + skos:broader quantitykind:EnergyPerArea . + +quantitykind:Stress + a qudt:QuantityKind ; + dcterms:description "Stress is a measure of the average amount of force exerted per unit area of a surface within a deformable body on which internal forces act. In other words, it is a measure of the intensity or internal distribution of the total internal forces acting within a deformable body across imaginary surfaces. These internal forces are produced between the particles in the body as a reaction to external forces applied on the body. Stress is defined as ${\\rm{Stress}} = \\frac{F}{A}$."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.freestudy.co.uk/mech%20prin%20h2/stress.pdf"^^xsd:anyURI ; + qudt:latexDefinition "${\\rm{Stress}} = \\frac{F}{A}$"^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Stress"@en ; + skos:broader quantitykind:ForcePerArea . + +quantitykind:StressIntensityFactor + a qudt:QuantityKind ; + dcterms:description "In fracture mechanics, the stress intensity factor (K) is used to predict the stress state (\"stress intensity\") near the tip of a crack or notch caused by a remote load or residual stresses. It is a theoretical construct usually applied to a homogeneous, linear elastic material and is useful for providing a failure criterion for brittle materials, and is a critical technique in the discipline of damage tolerance. The concept can also be applied to materials that exhibit small-scale yielding at a crack tip."^^qudt:LatexString ; + qudt:applicableUnit unit:MegaPA-M0dot5 ; + qudt:applicableUnit unit:PA-M0dot5 ; + qudt:hasDimensionVector qkdv:A0E0L-0dot5I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Stress_intensity_factor"^^xsd:anyURI ; + qudt:latexSymbol "$\\K$"^^qudt:LatexString ; + qudt:plainTextDescription "In fracture mechanics, the stress intensity factor (K) is used to predict the stress state (\"stress intensity\") near the tip of a crack or notch caused by a remote load or residual stresses. It is a theoretical construct usually applied to a homogeneous, linear elastic material and is useful for providing a failure criterion for brittle materials, and is a critical technique in the discipline of damage tolerance. The concept can also be applied to materials that exhibit small-scale yielding at a crack tip." ; + qudt:symbol "K" ; + rdfs:comment "Applicable units are those of quantitykind:StressIntensityFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Stress Intensity Factor"@en . + +quantitykind:StressOpticCoefficient + a qudt:QuantityKind ; + dcterms:description "When a ray of light passes through a photoelastic material, its electromagnetic wave components are resolved along the two principal stress directions and each component experiences a different refractive index due to the birefringence. The difference in the refractive indices leads to a relative phase retardation between the two components. Assuming a thin specimen made of isotropic materials, where two-dimensional photoelasticity is applicable, the magnitude of the relative retardation is given by the stress-optic law Δ=((2πt)/λ)C(σ₁-σ₂), where Δ is the induced retardation, C is the stress-optic coefficient, t is the specimen thickness, λ is the vacuum wavelength, and σ₁ and σ₂ are the first and second principal stresses, respectively."^^qudt:LatexString ; + qudt:applicableUnit unit:BREWSTER ; + qudt:applicableUnit unit:NanoM-PER-CentiM-MegaPA ; + qudt:applicableUnit unit:NanoM-PER-CentiM-PSI ; + qudt:applicableUnit unit:NanoM-PER-MilliM-MegaPA ; + qudt:applicableUnit unit:PER-MegaPA ; + qudt:applicableUnit unit:PER-PA ; + qudt:applicableUnit unit:PER-PSI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:informativeReference "https://en.wikipedia.org/w/index.php?title=Photoelasticity&oldid=1109858854#Experimental_principles"^^xsd:anyURI ; + qudt:latexDefinition "When a ray of light passes through a photoelastic material, its electromagnetic wave components are resolved along the two principal stress directions and each component experiences a different refractive index due to the birefringence. The difference in the refractive indices leads to a relative phase retardation between the two components. Assuming a thin specimen made of isotropic materials, where two-dimensional photoelasticity is applicable, the magnitude of the relative retardation is given by the stress-optic law $\\Delta ={\\frac {2\\pi t}{\\lambda }}C(\\sigma _{1}-\\sigma _{2})$, where $\\Delta$ is the induced retardation, $C$ is the stress-optic coefficient, $t$ is the specimen thickness, $\\lambda$ is the vacuum wavelength, and $\\sigma_1$ and $\\sigma_2$ are the first and second principal stresses, respectively."^^qudt:LatexString ; + qudt:plainTextDescription "When a ray of light passes through a photoelastic material, its electromagnetic wave components are resolved along the two principal stress directions and each component experiences a different refractive index due to the birefringence. The difference in the refractive indices leads to a relative phase retardation between the two components. Assuming a thin specimen made of isotropic materials, where two-dimensional photoelasticity is applicable, the magnitude of the relative retardation is given by the stress-optic law Δ=((2πt)/λ)C(σ₁-σ₂), where Δ is the induced retardation, C is the stress-optic coefficient, t is the specimen thickness, λ is the vacuum wavelength, and σ₁ and σ₂ are the first and second principal stresses, respectively." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:StressOpticCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Stress-Optic Coefficient"@en . + +quantitykind:StructuralEfficiency + a qudt:QuantityKind ; + dcterms:description "Structural efficiency is a function of the weight of structure to the afforded vehicle's strength."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ; + qudt:plainTextDescription "Structural efficiency is a function of the weight of structure to the afforded vehicle's strength." ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Structural Efficiency"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:StructureFactor + a qudt:QuantityKind ; + dcterms:description "\"Structure Factor\" is a mathematical description of how a material scatters incident radiation."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Structure_factor"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$F(h, k, l) = \\sum_{n=1}^N f_n\\exp{[2\\pi i(hx_n + ky_n +lz_n)]}$, where $f_n$ is the atomic scattering factor for atom $n$, and $x_n$, $y_n$, and $z_n$ are fractional coordinates in the unit cell; for $h$, $k$, and $l$."^^qudt:LatexString ; + qudt:plainTextDescription "\"Structure Factor\" is a mathematical description of how a material scatters incident radiation." ; + qudt:symbol "F(h, k, l)" ; + rdfs:comment "Applicable units are those of quantitykind:StructureFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Structure Factor"@en . + +quantitykind:SunProtectionFactorOfAProduct + a qudt:QuantityKind ; + qudt:applicableUnit unit:SPF ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD366" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD366"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:SunProtectionFactorOfAProduct" ; + rdfs:isDefinedBy ; + rdfs:label "sun protection factor of a product" . + +quantitykind:SuperconductionTransitionTemperature + a qudt:QuantityKind ; + dcterms:description "\"Superconduction Transition Temperature\" is the critical thermodynamic temperature of a superconductor."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Superconductivity"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Superconduction Transition Temperature\" is the critical thermodynamic temperature of a superconductor." ; + qudt:symbol "T_c" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Superconduction Transition Temperature"@en ; + skos:broader quantitykind:Temperature ; + skos:closeMatch quantitykind:CurieTemperature ; + skos:closeMatch quantitykind:NeelTemperature . + +quantitykind:SuperconductorEnergyGap + a qudt:QuantityKind ; + dcterms:description "\"Superconductor Energy Gap\" is the width of the forbidden energy band in a superconductor."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/BCS_theory"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Superconductor Energy Gap\" is the width of the forbidden energy band in a superconductor." ; + qudt:symbol "Δ" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Superconductor Energy Gap"@en ; + skos:broader quantitykind:GapEnergy . + +quantitykind:SurfaceActivityDensity + a qudt:QuantityKind ; + dcterms:description "The \"Surface Activity Density\" is undefined."^^qudt:LatexString ; + qudt:applicableUnit unit:BQ-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$a_s = \\frac{A}{S}$, where $S$ is the total area of the surface of a sample and $A$ is its activity."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Surface Activity Density\" is undefined." ; + qudt:symbol "a_s" ; + rdfs:comment "Applicable units are those of quantitykind:SurfaceActivityDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Surface Activity Density"@en . + +quantitykind:SurfaceCoefficientOfHeatTransfer + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloW-PER-M2-K ; + qudt:applicableUnit unit:W-PER-M2-K ; + qudt:expression "$surface-heat-xfer-coeff$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$q = h (T_s - T_r)$, where $T_s$ is areic heat flow rate is the thermodynamic temperature of the surface, and is a reference thermodynamic temperature characteristic of the adjacent surroundings."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:SurfaceCoefficientOfHeatTransfer" ; + rdfs:isDefinedBy ; + rdfs:label "Surface Coefficient of Heat Transfer"@en . + +quantitykind:SurfaceDensity + a qudt:QuantityKind ; + dcterms:description "The area density (also known as areal density, surface density, or superficial density) of a two-dimensional object is calculated as the mass per unit area."^^qudt:LatexString ; + qudt:applicableUnit unit:GM-PER-MilliM2 ; + qudt:applicableUnit unit:KiloGM-PER-KiloM2 ; + qudt:applicableUnit unit:KiloGM-PER-M2 ; + qudt:applicableUnit unit:LB-PER-IN2 ; + qudt:applicableUnit unit:LB-PER-YD2 ; + qudt:applicableUnit unit:MicroGM-PER-IN2 ; + qudt:applicableUnit unit:OZ-PER-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Area_density"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\rho_A = \\frac{dm}{dA}$, where $m$ is mass and $A$ is area."^^qudt:LatexString ; + qudt:latexSymbol "$\\rho_A$"^^qudt:LatexString ; + qudt:plainTextDescription "The area density (also known as areal density, surface density, or superficial density) of a two-dimensional object is calculated as the mass per unit area." ; + qudt:siExactMatch si-quantity:SUDE ; + rdfs:comment "Applicable units are those of quantitykind:SurfaceDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Surface Density"@en . + +quantitykind:SurfaceRelatedVolumeFlow + a qudt:QuantityKind ; + dcterms:description "quotient of the volume of a material, which passes through a specified surface, and the therefor required time divided by this specified area"@en ; + qudt:applicableUnit unit:M3-PER-HA-YR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "Quotient aus dem Volumen eines Stoffes, das durch eine vorgegebene Oberfläche hindurchgeht, und der dazu benötigten Zeit dividiert durch diese vorgegebene Fläche"@de ; + qudt:symbol "0173-1#Z4-BAJ421#003" ; + rdfs:comment "Applicable units are those of quantitykind:SurfaceRelatedVolumeFlow" ; + rdfs:isDefinedBy ; + rdfs:label "surface-related volume flow"@en-US . + +quantitykind:SurfaceTension + a qudt:QuantityKind ; + dcterms:description "\"Surface Tension\" is a contractive tendency of the surface of a liquid that allows it to resist an external force."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2 ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2 ; + qudt:applicableUnit unit:CentiN-M-PER-M2 ; + qudt:applicableUnit unit:ERG-PER-CentiM2 ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2 ; + qudt:applicableUnit unit:FT-LB_F-PER-M2 ; + qudt:applicableUnit unit:GigaJ-PER-M2 ; + qudt:applicableUnit unit:GigaN-M-PER-M2 ; + qudt:applicableUnit unit:J-PER-CentiM2 ; + qudt:applicableUnit unit:J-PER-M2 ; + qudt:applicableUnit unit:KiloBTU_IT-PER-FT2 ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM-PER-SEC2 ; + qudt:applicableUnit unit:KiloN-M-PER-M2 ; + qudt:applicableUnit unit:KiloW-HR-PER-M2 ; + qudt:applicableUnit unit:LANGLEY ; + qudt:applicableUnit unit:LB_F-PER-IN ; + qudt:applicableUnit unit:MegaJ-PER-M2 ; + qudt:applicableUnit unit:MegaN-M-PER-M2 ; + qudt:applicableUnit unit:MicroN-M-PER-M2 ; + qudt:applicableUnit unit:MilliJ-PER-M2 ; + qudt:applicableUnit unit:MilliN-M-PER-M2 ; + qudt:applicableUnit unit:N-M-PER-M2 ; + qudt:applicableUnit unit:NanoN-M-PER-M2 ; + qudt:applicableUnit unit:W-HR-PER-M2 ; + qudt:applicableUnit unit:W-SEC-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD184" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Surface_tension"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD184"^^xsd:anyURI ; + qudt:latexDefinition "$\\gamma = \\frac{dF}{dl}$, where $F$ is the force component perpendicular to a line element in a surface and $l$ is the length of the line element."^^qudt:LatexString ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:plainTextDescription "\"Surface Tension\" is a contractive tendency of the surface of a liquid that allows it to resist an external force." ; + qudt:siExactMatch si-quantity:SUTE ; + qudt:symbol "γ" ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Oberflächenspannung"@de ; + rdfs:label "Tegangan permukaan"@ms ; + rdfs:label "Tensiune superficială"@ro ; + rdfs:label "Yüzey gerilimi"@tr ; + rdfs:label "napięcie powierzchniowe"@pl ; + rdfs:label "povrchové napětí"@cs ; + rdfs:label "površinska napetost"@sl ; + rdfs:label "surface tension"@en ; + rdfs:label "tension superficielle"@fr ; + rdfs:label "tensione superficiale"@it ; + rdfs:label "tensión superficial"@es ; + rdfs:label "tensão superficial"@pt ; + rdfs:label "поверхностное натяжение"@ru ; + rdfs:label "توتر سطحي"@ar ; + rdfs:label "کشش سطحی"@fa ; + rdfs:label "पृष्ठ तनाव"@hi ; + rdfs:label "表面张力"@zh ; + rdfs:label "表面張力"@ja ; + skos:altLabel "tension de surface"@fr ; + skos:broader quantitykind:EnergyPerArea . + +quantitykind:SurgeImpedanceOfTheMedium + a qudt:QuantityKind ; + dcterms:description "in a mechanical system the area-related quotient of a force affecting to a point divided by the resulting component of the particle velocity in direction of the force"@en ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD185" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD185"^^xsd:anyURI ; + qudt:plainTextDescription "in einem mechanischen System der flächenbezogene Quotient einer an einem Punkt angreifenden Kraft durch die resultierende Komponente der Teilchengeschwindigkeit in Richtung der Kraft"@de ; + qudt:symbol "0173-1#Z4-BAJ323#002" ; + rdfs:isDefinedBy ; + rdfs:label "surge impedance of the medium" ; + rdfs:label "surge impedance of the medium"@en-US . + +quantitykind:Susceptance + a qudt:QuantityKind ; + dcterms:description "\"Susceptance\" is the imaginary part of admittance. The inverse of admittance is impedance and the real part of admittance is conductance. "^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Susceptance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Susceptance?oldid=430151986"^^xsd:anyURI ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-54"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$B = \\lim{\\underline{Y}}$, where $\\underline{Y}$ is admittance."^^qudt:LatexString ; + qudt:plainTextDescription "\"Susceptance\" is the imaginary part of admittance. The inverse of admittance is impedance and the real part of admittance is conductance. " ; + qudt:symbol "B" ; + rdfs:isDefinedBy ; + rdfs:label "Susceptance"@en ; + rdfs:seeAlso quantitykind:Conductance ; + rdfs:seeAlso quantitykind:Impedance . + +quantitykind:SymbolTransmissionRate + a qudt:QuantityKind ; + dcterms:description "rate, at which a symbol, consisting of one or more bits, is transmitted per second"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Geschwindigkeit, mit der ein aus mehreren Bit bestehendes Symbol je Sekunde übertragen wird"@de ; + qudt:symbol "0173-1#Z4-BAJ386#002" ; + rdfs:isDefinedBy ; + rdfs:label "symbol transmission rate"@en-US . + +quantitykind:SystolicBloodPressure + a qudt:QuantityKind ; + dcterms:description "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780199549351.001.0001/acref-9780199549351-e-1162"^^xsd:anyURI ; + qudt:plainTextDescription "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult." ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Systolic Blood Pressure"@en ; + rdfs:seeAlso quantitykind:DiastolicBloodPressure ; + skos:broader quantitykind:Pressure . + +quantitykind:TARGET-BOGIE-MASS + a qudt:QuantityKind ; + dcterms:description "An informal mass limit established by a Project Office (at the Element Integrated Product Team (IPT) level or below) to control mass."^^qudt:LatexString ; + qudt:applicableUnit unit:AMU ; + qudt:applicableUnit unit:CARAT ; + qudt:applicableUnit unit:CWT_LONG ; + qudt:applicableUnit unit:CWT_SHORT ; + qudt:applicableUnit unit:CentiGM ; + qudt:applicableUnit unit:DRAM_UK ; + qudt:applicableUnit unit:DRAM_US ; + qudt:applicableUnit unit:DWT ; + qudt:applicableUnit unit:DecaGM ; + qudt:applicableUnit unit:DeciGM ; + qudt:applicableUnit unit:DeciTONNE ; + qudt:applicableUnit unit:DeciTON_Metric ; + qudt:applicableUnit unit:EarthMass ; + qudt:applicableUnit unit:FemtoGM ; + qudt:applicableUnit unit:GM ; + qudt:applicableUnit unit:GRAIN ; + qudt:applicableUnit unit:HectoGM ; + qudt:applicableUnit unit:Hundredweight_UK ; + qudt:applicableUnit unit:Hundredweight_US ; + qudt:applicableUnit unit:KiloGM ; + qudt:applicableUnit unit:KiloLB ; + qudt:applicableUnit unit:KiloTONNE ; + qudt:applicableUnit unit:KiloTON_Metric ; + qudt:applicableUnit unit:LB ; + qudt:applicableUnit unit:LB_M ; + qudt:applicableUnit unit:LB_T ; + qudt:applicableUnit unit:LunarMass ; + qudt:applicableUnit unit:MOMME_Pearl ; + qudt:applicableUnit unit:MOMME_Textile ; + qudt:applicableUnit unit:MegaGM ; + qudt:applicableUnit unit:MegaTON ; + qudt:applicableUnit unit:MegaTONNE ; + qudt:applicableUnit unit:MicroGM ; + qudt:applicableUnit unit:MilliGM ; + qudt:applicableUnit unit:NanoGM ; + qudt:applicableUnit unit:OZ ; + qudt:applicableUnit unit:OZ_M ; + qudt:applicableUnit unit:OZ_TROY ; + qudt:applicableUnit unit:PENNYWEIGHT ; + qudt:applicableUnit unit:PFUND ; + qudt:applicableUnit unit:PicoGM ; + qudt:applicableUnit unit:PlanckMass ; + qudt:applicableUnit unit:Quarter_UK ; + qudt:applicableUnit unit:SLUG ; + qudt:applicableUnit unit:SolarMass ; + qudt:applicableUnit unit:Stone_UK ; + qudt:applicableUnit unit:TON ; + qudt:applicableUnit unit:TONNE ; + qudt:applicableUnit unit:TON_Assay ; + qudt:applicableUnit unit:TON_LONG ; + qudt:applicableUnit unit:TON_Metric ; + qudt:applicableUnit unit:TON_SHORT ; + qudt:applicableUnit unit:TON_UK ; + qudt:applicableUnit unit:TON_US ; + qudt:applicableUnit unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:plainTextDescription "An informal mass limit established by a Project Office (at the Element Integrated Product Team (IPT) level or below) to control mass." ; + rdfs:comment "Applicable units are those of quantitykind:Mass" ; + rdfs:isDefinedBy ; + rdfs:label "Target Bogie Mass"@en ; + skos:broader quantitykind:Mass . + +quantitykind:Temperature + a qudt:QuantityKind ; + dcterms:description "Temperature is a physical property of matter that quantitatively expresses the common notions of hot and cold. Objects of low temperature are cold, while various degrees of higher temperatures are referred to as warm or hot. Heat spontaneously flows from bodies of a higher temperature to bodies of lower temperature, at a rate that increases with the temperature difference and the thermal conductivity."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Temperature"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD374" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD374"^^xsd:anyURI ; + qudt:plainTextDescription "Temperature is a physical property of matter that quantitatively expresses the common notions of hot and cold. Objects of low temperature are cold, while various degrees of higher temperatures are referred to as warm or hot. Heat spontaneously flows from bodies of a higher temperature to bodies of lower temperature, at a rate that increases with the temperature difference and the thermal conductivity." ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature"@en ; + rdfs:seeAlso quantitykind:ThermodynamicTemperature . + +quantitykind:TemperatureAmountOfSubstance + a qudt:QuantityKind ; + qudt:applicableUnit unit:MOL-DEG_C ; + qudt:applicableUnit unit:MOL-K ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:TemperatureAmountOfSubstance" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature Amount of Substance"@en . + +quantitykind:TemperatureBasedAmountOfSubstanceConcentration + a qudt:QuantityKind ; + dcterms:description "ratio of material concentration divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Stoffmengenkonzentration dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ395#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based amount-of-substance concentration"@en-US . + +quantitykind:TemperatureBasedDensity + a qudt:QuantityKind ; + dcterms:description "ratio of density divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Dichte dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ389#003" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based density"@en-US . + +quantitykind:TemperatureBasedDynamicViscosity + a qudt:QuantityKind ; + dcterms:description "ratio of dynamic viscosity, divided by temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient der dynamischen Viskosität dividiert durch die Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ390#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based dynamic viscosity"@en-US . + +quantitykind:TemperatureBasedKinematicViscosity + a qudt:QuantityKind ; + dcterms:description "ratio of dynamic viscosity and the density of a material, divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ392#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based kinematic viscosity"@en-US . + +quantitykind:TemperatureBasedLength + a qudt:QuantityKind ; + dcterms:description "ratio of length divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:plainTextDescription "Quotient aus Länge dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ393#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based length"@en-US . + +quantitykind:TemperatureBasedMass + a qudt:QuantityKind ; + dcterms:description "ratio of mass divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Masse dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ394#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based mass"@en-US . + +quantitykind:TemperatureBasedMassFlowRate + a qudt:QuantityKind ; + dcterms:description "ratio of mass flow divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Massenstrom dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ396#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based mass flow rate"@en-US . + +quantitykind:TemperatureBasedQuantity + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:NotApplicable ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based quantity"@en-US . + +quantitykind:TemperatureBasedVelocity + a qudt:QuantityKind ; + dcterms:description "ratio of velocity divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Geschwindigkeit dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ391#001" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based velocity"@en-US . + +quantitykind:TemperatureBasedVolumeFlowRate + a qudt:QuantityKind ; + dcterms:description "ratio of volume flow divided by the related temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Quotient aus Volumenstrom dividiert durch die zugehörige Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ397#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-based volume flow rate"@en-US . + +quantitykind:TemperatureDifference + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:informativeReference "https://www.merusonline.com/delta-t-temperature/"^^xsd:anyURI ; + qudt:plainTextDescription "Temperature difference (Delta T) is the difference of temperatures between two measuring points" ; + qudt:symbol "ΔT" ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Temperaturdifferenz"@de ; + rdfs:label "temperature difference"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:TemperatureGradient + a qudt:QuantityKind ; + dcterms:description "The temperature gradient measures the difference of a temperature per length, as for instance used in an external wall or its layers. It is usually measured in K/m."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C-PER-M ; + qudt:applicableUnit unit:K-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H1T0D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifctemperaturegradientmeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "The temperature gradient measures the difference of a temperature per length, as for instance used in an external wall or its layers. It is usually measured in K/m." ; + rdfs:comment "Applicable units are those of quantitykind:TemperatureGradient" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature Gradient"@en . + +quantitykind:TemperaturePerMagneticFluxDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:K-PER-T ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H1T2D0 ; + rdfs:comment "Applicable units are those of quantitykind:TemperaturePerMagneticFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature per Magnetic Flux Density"@en . + +quantitykind:TemperaturePerTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C-PER-HR ; + qudt:applicableUnit unit:DEG_C-PER-MIN ; + qudt:applicableUnit unit:DEG_C-PER-SEC ; + qudt:applicableUnit unit:DEG_C-PER-YR ; + qudt:applicableUnit unit:DEG_F-PER-HR ; + qudt:applicableUnit unit:DEG_F-PER-MIN ; + qudt:applicableUnit unit:DEG_F-PER-SEC ; + qudt:applicableUnit unit:DEG_R-PER-HR ; + qudt:applicableUnit unit:DEG_R-PER-MIN ; + qudt:applicableUnit unit:DEG_R-PER-SEC ; + qudt:applicableUnit unit:K-PER-HR ; + qudt:applicableUnit unit:K-PER-MIN ; + qudt:applicableUnit unit:K-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:TemperaturePerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature per Time"@en . + +quantitykind:TemperaturePerTime_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_F-PER-SEC2 ; + qudt:applicableUnit unit:K-PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:TemperaturePerTime_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature per Time Squared"@en . + +quantitykind:TemperatureRateOfChange + a qudt:QuantityKind ; + dcterms:description "The \"Temperature Rate of Change\" measures the difference of a temperature per time (positive: rise, negative: fall), as for instance used with heat sensors. It is for example measured in K/s."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C-PER-HR ; + qudt:applicableUnit unit:DEG_C-PER-MIN ; + qudt:applicableUnit unit:DEG_C-PER-SEC ; + qudt:applicableUnit unit:DEG_C-PER-YR ; + qudt:applicableUnit unit:DEG_F-PER-HR ; + qudt:applicableUnit unit:DEG_F-PER-MIN ; + qudt:applicableUnit unit:DEG_F-PER-SEC ; + qudt:applicableUnit unit:DEG_R-PER-HR ; + qudt:applicableUnit unit:DEG_R-PER-MIN ; + qudt:applicableUnit unit:DEG_R-PER-SEC ; + qudt:applicableUnit unit:K-PER-HR ; + qudt:applicableUnit unit:K-PER-MIN ; + qudt:applicableUnit unit:K-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD186" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD186"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Temperature Rate of Change\" measures the difference of a temperature per time (positive: rise, negative: fall), as for instance used with heat sensors. It is for example measured in K/s." ; + qudt:symbol "0173-1#Z4-BAJ416#002" ; + rdfs:comment "Applicable units are those of quantitykind:TemperaturePerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature Rate of Change"@en ; + skos:broader quantitykind:TemperaturePerTime . + +quantitykind:TemperatureRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C-PER-K ; + qudt:applicableUnit unit:DEG_F-PER-K ; + qudt:applicableUnit unit:K-PER-K ; + qudt:applicableUnit unit:MilliK-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H1T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H1T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:TemperatureRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:TemperatureRelatedMolarMass + a qudt:QuantityKind ; + dcterms:description "molarity (mass of a substance in relation to the amount of this substance) divided by temperature"@en ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:plainTextDescription "Molarität (Masse einer Substanz bezogen auf die Stoffmenge dieser Substanz ) dividiert durch die Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ443#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-related molar mass"@en-US . + +quantitykind:TemperatureRelatedVolume + a qudt:QuantityKind ; + dcterms:description "volume divided by temperature"@en ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:plainTextDescription "Volumen dividiert durch Temperatur"@de ; + qudt:symbol "0173-1#Z4-BAJ398#002" ; + rdfs:isDefinedBy ; + rdfs:label "temperature-related volume "@en-US . + +quantitykind:TemperatureVariance_NEON + a qudt:QuantityKind ; + dcterms:description "Variance for NEON temperature data measured in degrees celcius" ; + qudt:applicableUnit unit:DEG_C2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T0D0 ; + qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ; + qudt:plainTextDescription "Variance for NEON temperature data measured in degrees celcius" ; + rdfs:comment "Applicable units are those of quantitykind:TemperatureVariance_NEON" ; + rdfs:isDefinedBy ; + rdfs:label "Temperature Variance, NEON"@en . + +quantitykind:TemporalSummationFunction + a qudt:QuantityKind ; + dcterms:description "\"Temporal Summation Function\" is the ability of the human eye to produce a composite signal from the signals coming into an eye during a short time interval."^^qudt:LatexString ; + qudt:applicableUnit unit:PER-SEC-SR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Summation_(neurophysiology)#Temporal_summation"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Temporal Summation Function\" is the ability of the human eye to produce a composite signal from the signals coming into an eye during a short time interval." ; + rdfs:comment "Applicable units are those of quantitykind:TemporalSummationFunction" ; + rdfs:isDefinedBy ; + rdfs:label "Temporal Summation Function"@en . + +quantitykind:Tension + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tension"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Tension"@en ; + skos:broader quantitykind:ForceMagnitude . + +quantitykind:ThermalAdmittance + a qudt:QuantityKind ; + dcterms:description "The heat transfer coefficient is also known as thermal admittance in the sense that the material may be seen as admitting heat to flow."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_TH-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:CAL_TH-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:KiloGM-PER-SEC3-K ; + qudt:applicableUnit unit:KiloW-PER-M2-K ; + qudt:applicableUnit unit:W-PER-M2-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:plainTextDescription "The heat transfer coefficient is also known as thermal admittance in the sense that the material may be seen as admitting heat to flow." ; + rdfs:comment "Applicable units are those of quantitykind:CoefficientOfHeatTransfer" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Admittance"@en ; + skos:broader quantitykind:CoefficientOfHeatTransfer . + +quantitykind:ThermalCapacitance + a qudt:QuantityKind ; + dcterms:description "ratio between the supplied quantity of heat and the temperature range caused by the supplied quantity of heat"@en ; + qudt:applicableUnit unit:BTU_TH-PER-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-DEG_R ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD187" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD187"^^xsd:anyURI ; + qudt:plainTextDescription "Quotient aus der zugeführten Wärmemenge und der Temperaturänderungen, die durch diese zugeführte Wärmemenge verursacht wird"@de ; + qudt:symbol "0173-1#Z4-BAJ406#002" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalCapacitance" ; + rdfs:isDefinedBy ; + rdfs:label "thermal capacitance" ; + rdfs:label "thermal capacitance"@en-US . + +quantitykind:ThermalCoefficientOfLinearExpansion + a qudt:QuantityKind ; + dcterms:description "median relative change in length over a specific length of the test piece, divided by the temperature range caused by it"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:plainTextDescription "auf eine festgelegte Länge des Probekörpers bezogene mittlere relative Längenänderung dividiert durch die sie verursachende Temperaturänderung"@de ; + qudt:symbol "0173-1#Z4-BAJ473#002" ; + rdfs:isDefinedBy ; + rdfs:label "thermal coefficient of linear expansion"@en-US . + +quantitykind:ThermalConductance + a qudt:QuantityKind ; + dcterms:description "This quantity is also called \"Heat Transfer Coefficient\"."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloVA-PER-K ; + qudt:applicableUnit unit:MicroVA-PER-K ; + qudt:applicableUnit unit:MilliVA-PER-K ; + qudt:applicableUnit unit:VA-PER-K ; + qudt:applicableUnit unit:W-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD189" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_insulation"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD189"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "$G = 1/R$, where $R$ is \"Thermal Resistance\""^^qudt:LatexString ; + qudt:plainTextDescription "This quantity is also called \"Heat Transfer Coefficient\"." ; + qudt:symbol "G" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalConductance" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Conductance"@en ; + rdfs:seeAlso quantitykind:CoefficientOfHeatTransfer . + +quantitykind:ThermalConductivity + a qudt:QuantityKind ; + dcterms:description "In physics, thermal conductivity, $k$ (also denoted as $\\lambda$), is the property of a material's ability to conduct heat. It appears primarily in Fourier's Law for heat conduction and is the areic heat flow rate divided by temperature gradient."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-FT-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_IT-IN-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_IT-IN-PER-FT2-SEC-DEG_F ; + qudt:applicableUnit unit:BTU_IT-IN-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-IN-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT-DEG_R ; + qudt:applicableUnit unit:BTU_TH-FT-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_TH-FT-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_TH-IN-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_TH-IN-PER-FT2-SEC-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-SEC-CentiM-K ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM-SEC-DEG_C ; + qudt:applicableUnit unit:CAL_TH-PER-SEC-CentiM-K ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM-SEC-DEG_C ; + qudt:applicableUnit unit:KiloCAL_IT-PER-HR-M-DEG_C ; + qudt:applicableUnit unit:KiloW-PER-M-DEG_C ; + qudt:applicableUnit unit:KiloW-PER-M-K ; + qudt:applicableUnit unit:W-PER-M-DEG_C ; + qudt:applicableUnit unit:W-PER-M-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_conductivity"^^xsd:anyURI ; + qudt:expression "$thermal-k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda = \\frac{\\varphi}{T}$, where $\\varphi$ is areic heat flow rate and $T$ is temperature gradient."^^qudt:LatexString ; + qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ; + qudt:siExactMatch si-quantity:TCON ; + rdfs:comment "Applicable units are those of quantitykind:ThermalConductivity" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Conductivity"@en . + +quantitykind:ThermalDiffusionFactor + a qudt:QuantityKind ; + dcterms:description "Thermal diffusion is a phenomenon in which a temperature gradient in a mixture of fluids gives rise to a flow of one constituent relative to the mixture as a whole. in the context of the equation that describes thermal diffusion, the \"Thermal Diffusion Factor\" is ."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\alpha_T = \\frac{k_T}{(x_A x_B)}$, where $k_T$ is the thermal diffusion ratio, and $x_A$ and $x_B$ are the local amount-of-substance fractions of the two substances $A$ and $B$."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha_T$"^^qudt:LatexString ; + qudt:plainTextDescription "Thermal diffusion is a phenomenon in which a temperature gradient in a mixture of fluids gives rise to a flow of one constituent relative to the mixture as a whole. in the context of the equation that describes thermal diffusion, the \"Thermal Diffusion Factor\" is ." ; + rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Diffusion Factor"@en . + +quantitykind:ThermalDiffusionRatio + a qudt:QuantityKind ; + dcterms:description "The \"Thermal Diffusion Ratio\" is proportional to the product of the component concentrations."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "In a steady state of a binary mixture in which thermal diffusion occurs, $grad x_B = -(\\frac{k_T}{T}) grad T$, where $x_B$ is the amount-of-substance fraction of the heavier substance $B$, and $T$ is the local thermodynamic temperature."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Thermal Diffusion Ratio\" is proportional to the product of the component concentrations." ; + qudt:symbol "k_T" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Diffusion Ratio"@en . + +quantitykind:ThermalDiffusionRatioCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Thermal Diffusion Coefficient\" is ."^^qudt:LatexString ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$D_T = kT \\cdot D$, where $k_T$ is the thermal diffusion ratio, and $D$ is the diffusion coefficient."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Thermal Diffusion Coefficient\" is ." ; + qudt:symbol "D_T" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionRatioCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Diffusion Coefficient"@en . + +quantitykind:ThermalDiffusivity + a qudt:QuantityKind ; + dcterms:description "In heat transfer analysis, thermal diffusivity (usually denoted $\\alpha$ but $a$, $\\kappa$,$k$, and $D$ are also used) is the thermal conductivity divided by density and specific heat capacity at constant pressure. The formula is: $\\alpha = {k \\over {\\rho c_p}}$, where k is thermal conductivity ($W/(\\mu \\cdot K)$), $\\rho$ is density ($kg/m^{3}$), and $c_p$ is specific heat capacity ($\\frac{J}{(kg \\cdot K)}$) .The denominator $\\rho c_p$, can be considered the volumetric heat capacity ($\\frac{J}{(m^{3} \\cdot K)}$)."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM2-PER-SEC ; + qudt:applicableUnit unit:FT2-PER-HR ; + qudt:applicableUnit unit:FT2-PER-SEC ; + qudt:applicableUnit unit:IN2-PER-SEC ; + qudt:applicableUnit unit:M2-HZ ; + qudt:applicableUnit unit:M2-PER-SEC ; + qudt:applicableUnit unit:MilliM2-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_diffusivity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_diffusivity"^^xsd:anyURI ; + qudt:latexDefinition "$a = \\frac{\\lambda}{\\rho c_\\rho}$, where $\\lambda$ is thermal conductivity, $\\rho$ is mass density and $c_\\rho$ is specific heat capacity at constant pressure."^^qudt:LatexString ; + qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ; + qudt:symbol "a" ; + rdfs:comment "Applicable units are those of quantitykind:AreaPerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Diffusivity"@en ; + skos:broader quantitykind:AreaPerTime . + +quantitykind:ThermalEfficiency + a qudt:QuantityKind ; + dcterms:description "Thermal efficiency is a dimensionless performance measure of a thermal device such as an internal combustion engine, a boiler, or a furnace. The input to the device is heat, or the heat-content of a fuel that is consumed. The desired output is mechanical work, or heat, or possibly both."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_efficiency"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:plainTextDescription "Thermal efficiency is a dimensionless performance measure of a thermal device such as an internal combustion engine, a boiler, or a furnace. The input to the device is heat, or the heat-content of a fuel that is consumed. The desired output is mechanical work, or heat, or possibly both." ; + qudt:qkdvDenominator qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Efficiency"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:ThermalEnergy + a qudt:QuantityKind ; + dcterms:description "\"Thermal Energy\" is the portion of the thermodynamic or internal energy of a system that is responsible for the temperature of the system. From a macroscopic thermodynamic description, the thermal energy of a system is given by its constant volume specific heat capacity C(T), a temperature coefficient also called thermal capacity, at any given absolute temperature (T): $U_{thermal} = C(T) \\cdot T$."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_39DEG_F ; + qudt:applicableUnit unit:BTU_59DEG_F ; + qudt:applicableUnit unit:BTU_60DEG_F ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_MEAN ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_15_DEG_C ; + qudt:applicableUnit unit:CAL_20DEG_C ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_MEAN ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloCAL_IT ; + qudt:applicableUnit unit:KiloCAL_Mean ; + qudt:applicableUnit unit:KiloCAL_TH ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TON_FG-HR ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_energy"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD191" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_energy"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD191"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ThermalEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:ThermalEnergyLength + a qudt:QuantityKind ; + qudt:applicableUnit unit:BTU_IT-FT ; + qudt:applicableUnit unit:BTU_IT-IN ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ThermalEnergyLength" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Energy Length"@en . + +quantitykind:ThermalExpansionCoefficient + a qudt:QuantityKind ; + dcterms:description "The \"Thermal Expansion Coefficient\" is a measure of the thermal expansion coefficient of a material, which expresses its elongation (as a ratio) per temperature difference. It is usually measured in 1/K. A positive elongation per (positive) rise of temperature is expressed by a positive value."^^qudt:LatexString ; + qudt:applicableUnit unit:M-PER-DEG_C-M ; + qudt:applicableUnit unit:MilliM-PER-DEG_C-M ; + qudt:applicableUnit unit:PER-DEG_C ; + qudt:applicableUnit unit:PER-DEG_F ; + qudt:applicableUnit unit:PER-K ; + qudt:applicableUnit unit:PER-MegaK ; + qudt:applicableUnit unit:PERCENT-PER-DEG_C ; + qudt:applicableUnit unit:PPM-PER-K ; + qudt:applicableUnit unit:PPTM-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD188" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD188"^^xsd:anyURI ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/DEV/IFC4_3/RC2/HTML/link/ifcthermalexpansioncoefficientmeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Thermal Expansion Coefficient\" is a measure of the thermal expansion coefficient of a material, which expresses its elongation (as a ratio) per temperature difference. It is usually measured in 1/K. A positive elongation per (positive) rise of temperature is expressed by a positive value." ; + rdfs:comment "Applicable units are those of quantitykind:ThermalExpansionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Expansion Coefficient"@en ; + skos:broader quantitykind:ExpansionRatio . + +quantitykind:ThermalInsulance + a qudt:QuantityKind ; + dcterms:description "$\\textit{Thermal Insulance}$ is the reduction of heat transfer (the transfer of thermal energy between objects of differing temperature) between objects in thermal contact or in range of radiative influence. In building technology, this quantity is often called $\\textit{Thermal Resistance}$, with the symbol $R$."^^qudt:LatexString ; + qudt:applicableUnit unit:CLO ; + qudt:applicableUnit unit:DEG_F-HR-FT2-PER-BTU_IT ; + qudt:applicableUnit unit:DEG_F-HR-FT2-PER-BTU_TH ; + qudt:applicableUnit unit:FT2-HR-DEG_F-PER-BTU_IT ; + qudt:applicableUnit unit:M2-HR-DEG_C-PER-KiloCAL_IT ; + qudt:applicableUnit unit:M2-K-PER-W ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD192" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_insulation"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD192"^^xsd:anyURI ; + qudt:latexDefinition "$M = 1/K$, where $K$ is \"Coefficient of Heat Transfer\""^^qudt:LatexString ; + qudt:symbol "M" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalInsulance" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Insulance"@en ; + rdfs:seeAlso quantitykind:CoefficientOfHeatTransfer . + +quantitykind:ThermalInsulation + a qudt:QuantityKind ; + dcterms:description "temperature difference between two surfaces divided by areic heat flow rate in the direction of the temperature gradient"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:plainTextDescription "Temperaturdifferenz zwischen zwei Oberflächen dividiert durch den flächenbezogenen Wärmestrom in der Richtung des Temperaturgradienten"@de ; + qudt:symbol "0173-1#Z4-BAJ404#002" ; + rdfs:isDefinedBy ; + rdfs:label "thermal insulation"@en-US . + +quantitykind:ThermalResistance + a qudt:QuantityKind ; + dcterms:description "$\\textit{Thermal Resistance}$ is a heat property and a measure of a temperature difference by which an object or material resists a heat flow (heat per time unit or thermal resistance). Thermal resistance is the reciprocal thermal conductance. the thermodynamic temperature difference divided by heat flow rate. Thermal resistance $R$ has the units $\\frac{m^2 \\cdot K}{W}$."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_F-HR-PER-BTU_IT ; + qudt:applicableUnit unit:DEG_F-HR-PER-BTU_TH ; + qudt:applicableUnit unit:DEG_F-SEC-PER-BTU_IT ; + qudt:applicableUnit unit:DEG_F-SEC-PER-BTU_TH ; + qudt:applicableUnit unit:K-PER-W ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_resistance"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD193" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_resistance"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD193"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:symbol "R" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalResistance" ; + rdfs:isDefinedBy ; + rdfs:label "opór cieplny"@cs ; + rdfs:label "resistencia térmica"@es ; + rdfs:label "resistenza termica"@it ; + rdfs:label "resistência térmica"@pt ; + rdfs:label "résistance thermique"@fr ; + rdfs:label "thermal resistance"@en ; + rdfs:label "thermischer Widerstand"@de ; + rdfs:label "مقاومة حرارية"@ar ; + rdfs:label "热阻"@zh ; + rdfs:label "熱抵抗"@ja ; + rdfs:seeAlso quantitykind:HeatFlowRate ; + rdfs:seeAlso quantitykind:ThermalInsulance ; + rdfs:seeAlso quantitykind:ThermodynamicTemperature ; + skos:altLabel "Wärmewiderstand"@de . + +quantitykind:ThermalResistivity + a qudt:QuantityKind ; + dcterms:description "The reciprocal of thermal conductivity is thermal resistivity, measured in $kelvin-metres$ per watt ($K \\cdot m/W$)."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_F-HR-FT2-PER-BTU_IT-IN ; + qudt:applicableUnit unit:DEG_F-HR-FT2-PER-BTU_TH-IN ; + qudt:applicableUnit unit:K-M-PER-W ; + qudt:applicableUnit unit:M-K-PER-W ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ; + qudt:iec61360Code "0112/2///62720#UAD194" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD194"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:ThermalResistivity" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Resistivity"@en . + +quantitykind:ThermalTransmittance + a qudt:QuantityKind ; + dcterms:description "Thermal transmittance is the rate of transfer of heat through matter. The thermal transmittance of a material (such as insulation or concrete) or an assembly (such as a wall or window) is expressed as a U-value. The concept of thermal transmittance is closely related to that of thermal resistance. The thermal resistance of a structure is the reciprocal of its thermal transmittance."^^qudt:LatexString ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2-DEG_R ; + qudt:applicableUnit unit:BTU_TH-PER-HR-FT2-DEG_F ; + qudt:applicableUnit unit:BTU_TH-PER-SEC-FT2-DEG_F ; + qudt:applicableUnit unit:CAL_IT-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:CAL_TH-PER-SEC-CentiM2-K ; + qudt:applicableUnit unit:KiloGM-PER-SEC3-K ; + qudt:applicableUnit unit:KiloW-PER-M2-K ; + qudt:applicableUnit unit:W-PER-M2-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD195" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD195"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_transmittance"^^xsd:anyURI ; + qudt:plainTextDescription "Thermal transmittance is the rate of transfer of heat through matter. The thermal transmittance of a material (such as insulation or concrete) or an assembly (such as a wall or window) is expressed as a U-value. The concept of thermal transmittance is closely related to that of thermal resistance. The thermal resistance of a structure is the reciprocal of its thermal transmittance." ; + rdfs:comment "Applicable units are those of quantitykind:CoefficientOfHeatTransfer" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Transmittance"@en ; + skos:broader quantitykind:CoefficientOfHeatTransfer . + +quantitykind:ThermalUtilizationFactor + a qudt:QuantityKind ; + dcterms:description "The \"Thermal Utilization Factor\" in an infinite medium, is the ratio of the number of thermal absorbed in a fissionable nuclide or in a nuclear fuel, as specified, to the total number of thermal neutrons absorbed."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Thermal Utilization Factor\" in an infinite medium, is the ratio of the number of thermal absorbed in a fissionable nuclide or in a nuclear fuel, as specified, to the total number of thermal neutrons absorbed." ; + qudt:symbol "f" ; + rdfs:comment "Applicable units are those of quantitykind:ThermalUtilizationFactor" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Utilization Factor"@en . + +quantitykind:ThermalUtilizationFactorForFission + a qudt:QuantityKind ; + dcterms:description "Probability that a neutron that gets absorbed does so in the fuel material."^^qudt:LatexString ; + qudt:applicableUnit unit:DECADE ; + qudt:applicableUnit unit:FLIGHT ; + qudt:applicableUnit unit:GigaBasePair ; + qudt:applicableUnit unit:HeartBeat ; + qudt:applicableUnit unit:NP ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:OCT ; + qudt:applicableUnit unit:RPK ; + qudt:applicableUnit unit:SUSCEPTIBILITY_ELEC ; + qudt:applicableUnit unit:SUSCEPTIBILITY_MAG ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "Probability that a neutron that gets absorbed does so in the fuel material." ; + qudt:symbol "f" ; + rdfs:comment "Applicable units are those of quantitykind:Dimensionless" ; + rdfs:isDefinedBy ; + rdfs:label "Thermal Utilization Factor For Fission"@en ; + skos:broader quantitykind:Dimensionless . + +quantitykind:ThermodynamicCriticalMagneticFluxDensity + a qudt:QuantityKind ; + dcterms:description "\"Thermodynamic Critical Magnetic Flux Density\" is the maximum magnetic field strength below which a material remains superconducting."^^qudt:LatexString ; + qudt:applicableUnit unit:GAMMA ; + qudt:applicableUnit unit:GAUSS ; + qudt:applicableUnit unit:KiloGAUSS ; + qudt:applicableUnit unit:KiloT ; + qudt:applicableUnit unit:MicroT ; + qudt:applicableUnit unit:MilliT ; + qudt:applicableUnit unit:NanoT ; + qudt:applicableUnit unit:T ; + qudt:applicableUnit unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexDefinition "$G_n - G_s = \\frac{1}{2}\\frac{B_c^2 \\cdot V}{\\mu_0}$, where $G_n$ and $G_s$ are the Gibbs energies at zero magnetic flux density in a normal conductor and superconductor, respectively, $\\mu_0$ is the magnetic constant, and $V$ is volume."^^qudt:LatexString ; + qudt:plainTextDescription "\"Thermodynamic Critical Magnetic Flux Density\" is the maximum magnetic field strength below which a material remains superconducting." ; + qudt:symbol "B_c" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Thermodynamic Critical Magnetic Flux Density"@en ; + skos:broader quantitykind:MagneticFluxDensity . + +quantitykind:ThermodynamicEnergy + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:exactMatch quantitykind:EnergyInternal ; + qudt:exactMatch quantitykind:InternalEnergy ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + qudt:latexDefinition "For a closed thermodynamic system, $\\Delta U = Q + W$, where $Q$ is amount of heat transferred to the system and $W$ is work done on the system provided that no chemical reactions occur."^^qudt:LatexString ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Thermodynamic Energy"@en ; + skos:broader quantitykind:Energy . + +quantitykind:ThermodynamicEntropy + a qudt:QuantityKind ; + dcterms:description "Thermodynamic Entropy is a measure of the unavailability of a system’s energy to do work. It is a measure of the randomness of molecules in a system and is central to the second law of thermodynamics and the fundamental thermodynamic relation, which deal with physical processes and whether they occur spontaneously. The dimensions of entropy are energy divided by temperature, which is the same as the dimensions of Boltzmann's constant ($kB$) and heat capacity. The SI unit of entropy is $joule\\ per\\ kelvin$. [Wikipedia]"^^qudt:LatexString ; + qudt:applicableUnit unit:KiloJ-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:EnergyPerTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Thermodynamic Entropy"@en ; + skos:broader quantitykind:EnergyPerTemperature . + +quantitykind:ThermodynamicTemperature + a qudt:QuantityKind ; + dcterms:description """Thermodynamic temperature is the absolute measure of temperature and is one of the principal parameters of thermodynamics. +Temperature is a physical property of matter that quantitatively expresses the common notions of hot and cold. +In thermodynamics, in a system of which the entropy is considered as an independent externally controlled variable, absolute, or thermodynamic temperature is defined as the derivative of the internal energy with respect to the entropy. This is a base quantity in the International System of Quantities, ISQ, on which the International System of Units, SI, is based.""" ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:dbpediaMatch "http://dbpedia.org/page/Thermodynamic_temperature"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD196" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD196"^^xsd:anyURI ; + qudt:latexSymbol "$\\Theta$"^^qudt:LatexString ; + qudt:plainTextDescription """Thermodynamic temperature is the absolute measure of temperature and is one of the principal parameters of thermodynamics. +Temperature is a physical property of matter that quantitatively expresses the common notions of hot and cold. +In thermodynamics, in a system of which the entropy is considered as an independent externally controlled variable, absolute, or thermodynamic temperature is defined as the derivative of the internal energy with respect to the entropy. This is a base quantity in the International System of Quantities, ISQ, on which the International System of Units, SI, is based.""" ; + qudt:siExactMatch si-quantity:TEMT ; + qudt:symbol "T" ; + rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Suhu termodinamik"@ms ; + rdfs:label "Termodynamická teplota"@cs ; + rdfs:label "abszolút hőmérséklet"@hu ; + rdfs:label "temperatura termodinamica"@it ; + rdfs:label "temperatura thermodynamica absoluta"@la ; + rdfs:label "temperatura"@es ; + rdfs:label "temperatura"@pl ; + rdfs:label "temperatura"@pt ; + rdfs:label "temperatura"@sl ; + rdfs:label "temperatură termodinamică"@ro ; + rdfs:label "température thermodynamique"@fr ; + rdfs:label "termodinamik sıcaklık"@tr ; + rdfs:label "thermodynamic temperature"@en ; + rdfs:label "thermodynamische Temperatur"@de ; + rdfs:label "Απόλυτη"@el ; + rdfs:label "Термодинамическая температура"@ru ; + rdfs:label "Термодинамична температура"@bg ; + rdfs:label "טמפרטורה מוחלטת"@he ; + rdfs:label "درجة الحرارة المطلقة"@ar ; + rdfs:label "دمای ترمودینامیکی"@fa ; + rdfs:label "ऊष्मगतिकीय तापमान"@hi ; + rdfs:label "热力学温度"@zh ; + rdfs:label "熱力学温度"@ja ; + rdfs:seeAlso quantitykind:Temperature ; + skos:altLabel "temperatura assoluta"@it ; + skos:altLabel "Θερμοδυναμική Θερμοκρασία"@el ; + skos:broader quantitykind:Temperature . + +quantitykind:Thickness + a qudt:QuantityKind ; + dcterms:description "\"Thickness\" is the the smallest of three dimensions: length, width, thickness."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thickness"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://www.merriam-webster.com/dictionary/thickness"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:plainTextDescription "\"Thickness\" is the the smallest of three dimensions: length, width, thickness." ; + qudt:symbol "d" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Thickness"@en ; + skos:broader quantitykind:Length . + +quantitykind:ThomsonCoefficient + a qudt:QuantityKind ; + dcterms:description "\"Thomson Coefficient\" represents Thomson heat power developed, divided by the electric current and the temperature difference."^^qudt:LatexString ; + qudt:applicableUnit unit:V-PER-K ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H-1T-3D0 ; + qudt:informativeReference "http://www.daviddarling.info/encyclopedia/T/Thomson_effect.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Thomson Coefficient\" represents Thomson heat power developed, divided by the electric current and the temperature difference." ; + rdfs:comment "Applicable units are those of quantitykind:ThomsonCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Thomson Coefficient"@en . + +quantitykind:Thrust + a qudt:QuantityKind ; + dcterms:description """Thrust is a reaction force described quantitatively by Newton's Second and Third Laws. When a system expels or accelerates mass in one direction the accelerated mass will cause a proportional but opposite force on that system. +The pushing or pulling force developed by an aircraft engine or a rocket engine. +The force exerted in any direction by a fluid jet or by a powered screw, as, the thrust of an antitorque rotor. +Specifically, in rocketry, $ F\\,= m\\cdot v$ where m is propellant mass flow and v is exhaust velocity relative to the vehicle. Also called momentum thrust."""^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thrust"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:plainTextDescription "Thrust is a reaction force described quantitatively by Newton's Second and Third Laws. When a system expels or accelerates mass in one direction the accelerated mass will cause a proportional but opposite force on that system." ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Thrust"@en ; + skos:broader quantitykind:Force . + +quantitykind:ThrustCoefficient + a qudt:QuantityKind ; + dcterms:description "The thrust force of a jet-propulsion engine per unit of frontal area per unit of incompressible dynamic pressure "^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:plainTextDescription "The thrust force of a jet-propulsion engine per unit of frontal area per unit of incompressible dynamic pressure " ; + qudt:symbol "C_{F}" ; + rdfs:isDefinedBy ; + rdfs:label "Thrust Coefficient"@en . + +quantitykind:ThrustToMassRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:LB_F-PER-LB ; + qudt:applicableUnit unit:N-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ThrustToMassRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Thrust To Mass Ratio"@en ; + skos:broader quantitykind:Acceleration . + +quantitykind:ThrustToWeightRatio + a qudt:QuantityKind ; + dcterms:description "Thrust-to-weight ratio is a ratio of thrust to weight of a rocket, jet engine, propeller engine, or a vehicle propelled by such an engine. It is a dimensionless quantity and is an indicator of the performance of the engine or vehicle."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexSymbol "$\\psi$"^^qudt:LatexString ; + qudt:plainTextDescription "Thrust-to-weight ratio is a ratio of thrust to weight of a rocket, jet engine, propeller engine, or a vehicle propelled by such an engine. It is a dimensionless quantity and is an indicator of the performance of the engine or vehicle." ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Thrust To Weight Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:ThrusterPowerToThrustEfficiency + a qudt:QuantityKind ; + qudt:applicableUnit unit:LB-PER-HR-PSI ; + qudt:applicableUnit unit:LB-PER-MIN-PSI ; + qudt:applicableUnit unit:LB-PER-SEC-PSI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:latexSymbol "$\\eta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:ThrusterPowerToThrustEfficiency" ; + rdfs:isDefinedBy ; + rdfs:label "Thruster Power To Thrust Efficiency"@en . + +quantitykind:Tilt + a qudt:QuantityKind ; + dcterms:description """The angle between an object's orientation vector relative to a reference frame. + In the context of architecture, this would refer to the angle between the ground and the face of a surface.""" ; + qudt:applicableUnit unit:2PiRAD ; + qudt:applicableUnit unit:ARCMIN ; + qudt:applicableUnit unit:ARCSEC ; + qudt:applicableUnit unit:DEG ; + qudt:applicableUnit unit:GON ; + qudt:applicableUnit unit:GRAD ; + qudt:applicableUnit unit:MIL ; + qudt:applicableUnit unit:MIN_Angle ; + qudt:applicableUnit unit:MicroRAD ; + qudt:applicableUnit unit:MilliARCSEC ; + qudt:applicableUnit unit:MilliRAD ; + qudt:applicableUnit unit:RAD ; + qudt:applicableUnit unit:REV ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription """The angle between an object's orientation vector relative to a reference frame. + In the context of architecture, this would refer to the angle between the ground and the face of a surface.""" ; + rdfs:comment "Applicable units are those of quantitykind:Angle" ; + rdfs:isDefinedBy ; + rdfs:label "Tilt"@en ; + skos:broader quantitykind:Angle . + +quantitykind:Time + a qudt:QuantityKind ; + dcterms:description "Time is a basic component of the measuring system used to sequence events, to compare the durations of events and the intervals between them, and to quantify the motions of objects."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Time"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD197" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD197"^^xsd:anyURI ; + qudt:plainTextDescription "Time is a basic component of the measuring system used to sequence events, to compare the durations of events and the intervals between them, and to quantify the motions of objects." ; + qudt:siExactMatch si-quantity:TIME ; + qudt:symbol "t" ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:isDefinedBy ; + rdfs:label "Masa"@ms ; + rdfs:label "Zeit"@de ; + rdfs:label "czas"@pl ; + rdfs:label "idő"@hu ; + rdfs:label "tempo"@it ; + rdfs:label "tempo"@pt ; + rdfs:label "temps"@fr ; + rdfs:label "tempus"@la ; + rdfs:label "tiempo"@es ; + rdfs:label "time"@en ; + rdfs:label "timp"@ro ; + rdfs:label "zaman"@tr ; + rdfs:label "Čas"@cs ; + rdfs:label "čas"@sl ; + rdfs:label "Χρόνος"@el ; + rdfs:label "Време"@bg ; + rdfs:label "Время"@ru ; + rdfs:label "זמן"@he ; + rdfs:label "زمان"@fa ; + rdfs:label "زمن"@ar ; + rdfs:label "समय"@hi ; + rdfs:label "时间"@zh ; + rdfs:label "時間"@ja . + +quantitykind:TimeAveragedSoundIntensity + a qudt:QuantityKind ; + dcterms:description "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^qudt:LatexString ; + qudt:abbreviation "w/m2" ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_IT-PER-FT2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR-FT2 ; + qudt:applicableUnit unit:BTU_IT-PER-IN2-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-SEC-FT2 ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-HR ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-MIN ; + qudt:applicableUnit unit:BTU_TH-PER-FT2-SEC ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-MIN ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM2-SEC ; + qudt:applicableUnit unit:ERG-PER-CentiM2-SEC ; + qudt:applicableUnit unit:FT-LB_F-PER-FT2-SEC ; + qudt:applicableUnit unit:J-PER-CentiM2-DAY ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-CentiM2-SEC ; + qudt:applicableUnit unit:KiloW-PER-M2 ; + qudt:applicableUnit unit:M-PA-PER-SEC ; + qudt:applicableUnit unit:MicroW-PER-M2 ; + qudt:applicableUnit unit:MilliW-PER-M2 ; + qudt:applicableUnit unit:NanoW-PER-M2 ; + qudt:applicableUnit unit:PicoW-PER-M2 ; + qudt:applicableUnit unit:W-PER-CentiM2 ; + qudt:applicableUnit unit:W-PER-FT2 ; + qudt:applicableUnit unit:W-PER-IN2 ; + qudt:applicableUnit unit:W-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_intensity"^^xsd:anyURI ; + qudt:latexDefinition "$I = \\frac{1}{t2 - t1} \\int_{t1}^{t2}i(t)dt$, where $t1$ and $t2$ are the starting and ending times for the integral and $i$ is sound intensity."^^qudt:LatexString ; + qudt:plainTextDescription "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity." ; + qudt:symbol "I" ; + rdfs:comment "Applicable units are those of quantitykind:PowerPerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Time averaged sound intensity"@en ; + skos:broader quantitykind:SoundIntensity ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:TimeConstant_Inductance + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD198" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD198"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "time constant (inductance based)" . + +quantitykind:TimeRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:HR-PER-YR ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:TimeRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Time Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:TimeRelatedLogarithmicRatio + a qudt:QuantityKind ; + dcterms:description "logarithm of the ratio of the value of a defined variable to the value of a reference variable of the same type, divided by the related time"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:plainTextDescription "Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art dividiert durch die zugehörige Zeit"@de ; + qudt:symbol "0173-1#Z4-BAJ415#002" ; + rdfs:isDefinedBy ; + rdfs:label "time-related logarithmic ratio"@en-US . + +quantitykind:TimeTemperature + a qudt:QuantityKind ; + qudt:applicableUnit unit:DEG_C-WK ; + qudt:applicableUnit unit:DEG_F-HR ; + qudt:applicableUnit unit:K-DAY ; + qudt:applicableUnit unit:K-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:TimeTemperature" ; + rdfs:isDefinedBy ; + rdfs:label "Time Temperature"@en . + +quantitykind:Time_Squared + a qudt:QuantityKind ; + qudt:applicableUnit unit:GM-PER-CentiM-BAR ; + qudt:applicableUnit unit:GM-PER-MilliM-BAR ; + qudt:applicableUnit unit:SEC2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Time_Squared"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Time_Squared" ; + rdfs:isDefinedBy ; + rdfs:label "Time Squared"@en . + +quantitykind:Torque + a qudt:QuantityKind ; + dcterms:description """In physics, a torque ($\\tau$) is a vector that measures the tendency of a force to rotate an object about some axis. The magnitude of a torque is defined as force times its lever arm. Just as a force is a push or a pull, a torque can be thought of as a twist. The SI unit for torque is newton meters ($N m$). In U.S. customary units, it is measured in foot pounds (ft lbf) (also known as "pounds feet"). +Mathematically, the torque on a particle (which has the position r in some reference frame) can be defined as the cross product: $τ = r x F$ +where, +r is the particle's position vector relative to the fulcrum +F is the force acting on the particles, +or, more generally, torque can be defined as the rate of change of angular momentum: $τ = dL/dt$ +where, +L is the angular momentum vector +t stands for time."""^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN-M ; + qudt:applicableUnit unit:DYN-CentiM ; + qudt:applicableUnit unit:DYN-M ; + qudt:applicableUnit unit:DeciN-M ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:IN-PDL ; + qudt:applicableUnit unit:KiloGM_F-M ; + qudt:applicableUnit unit:KiloN-M ; + qudt:applicableUnit unit:LB_F-FT ; + qudt:applicableUnit unit:LB_F-IN ; + qudt:applicableUnit unit:MegaN-M ; + qudt:applicableUnit unit:MicroN-M ; + qudt:applicableUnit unit:MilliN-M ; + qudt:applicableUnit unit:N-CentiM ; + qudt:applicableUnit unit:N-M ; + qudt:applicableUnit unit:OZ_F-IN ; + qudt:applicableUnit unit:PDL-FT ; + qudt:applicableUnit unit:PDL-IN ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Torque"^^xsd:anyURI ; + qudt:exactMatch quantitykind:MomentOfForce ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD200" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Torque"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD200"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\tau = M \\cdot e_Q$, where $M$ is the momentof force and $e_Q$ is a unit vector directed along a $Q-axis$ with respect to which the torque is considered."^^qudt:LatexString ; + qudt:latexSymbol "$\\tau$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:Torque" ; + rdfs:isDefinedBy ; + rdfs:label "Torsionmoment"@de ; + rdfs:label "coppia"@it ; + rdfs:label "couple"@fr ; + rdfs:label "moment obrotowy"@pl ; + rdfs:label "momento de torção"@pt ; + rdfs:label "par"@es ; + rdfs:label "torque"@en ; + rdfs:label "عزم محورى"@ar ; + rdfs:label "トルク"@ja ; + rdfs:label "转矩"@zh ; + skos:altLabel "Drillmoment"@de ; + skos:altLabel "binârio"@pt ; + skos:altLabel "moment de torsion"@fr ; + skos:altLabel "momento de torsión"@es ; + skos:altLabel "momento torcente"@it . + +quantitykind:TorqueConstant + a qudt:QuantityKind ; + dcterms:description "product of magnetic induction, number of turns per unit length, and the area enclosed by the coil corresponding to the gradient of the curve representing the ratio between the torque of the motor and the current"@en ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD201" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD201"^^xsd:anyURI ; + qudt:plainTextDescription "Produkt aus der magnetischen Induktion, der Windungszahl und der von der Spule eingeschlossenen Fläche entsprechend der Steigung der Kurve des Verhältnisses Drehmoment des Motors zum Strom"@de ; + qudt:symbol "0173-1#Z4-BAJ298#002" ; + rdfs:isDefinedBy ; + rdfs:label "torque constant" ; + rdfs:label "torque constant"@en-US . + +quantitykind:TorquePerAngle + a qudt:QuantityKind ; + qudt:applicableUnit unit:N-M-PER-ARCMIN ; + qudt:applicableUnit unit:N-M-PER-DEG ; + qudt:applicableUnit unit:N-M-PER-MIN_Angle ; + qudt:applicableUnit unit:N-M-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:TorquePerAngle" ; + rdfs:isDefinedBy ; + rdfs:label "Torque per Angle"@en . + +quantitykind:TorquePerLength + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloN-M-PER-M ; + qudt:applicableUnit unit:N-M-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:TorquePerLength" ; + rdfs:isDefinedBy ; + rdfs:label "Torque per Length"@en . + +quantitykind:TorsionalRigidity + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD202" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD202"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "torsional rigidity" . + +quantitykind:TorsionalSpringConstant + a qudt:QuantityKind ; + dcterms:description "ratio between the turning moment for elastic deformation of a torsion spring and the related angle of rotation"@en ; + qudt:applicableUnit unit:KiloN-M-PER-DEG ; + qudt:applicableUnit unit:N-M-PER-ARCMIN ; + qudt:applicableUnit unit:N-M-PER-DEG ; + qudt:applicableUnit unit:N-M-PER-MIN_Angle ; + qudt:applicableUnit unit:N-M-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Torsion_spring"^^xsd:anyURI ; + qudt:plainTextDescription "A torsional spring constant is a measure of the stiffness of a torsional spring, which is a type of spring that experiences twisting or torque rather than compression or extension. It is typically measured in newton-meters per radian (N·m/rad) and is used to calculate the amount of torque required to twist a spring a certain amount. It is related to the spring's geometry, material properties, and manufacturing process." ; + qudt:plainTextDescription "Quotient Drehmoment zur elastischen Verformung einer Drehfeder durch den zugehörigen Drehwinkel"@de ; + qudt:symbol "0173-1#Z4-BAJ448#002" ; + rdfs:comment "Applicable units are those of quantitykind:TorsionalSpringConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Federkonstante Drehfeder"@de ; + rdfs:label "torsional spring constant"@en . + +quantitykind:TotalAngularMomentum + a qudt:QuantityKind ; + dcterms:description "\"Total Angular Momentum\" combines both the spin and orbital angular momentum of all particles and fields. In atomic and nuclear physics, orbital angular momentum is usually denoted by $l$ or $L$ instead of $\\Lambda$. The magnitude of $J$ is quantized so that $J^2 = \\hbar^2 j(j + 1)$, where $j$ is the total angular momentum quantum number."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-SEC ; + qudt:applicableUnit unit:EV-SEC ; + qudt:applicableUnit unit:FT-LB_F-SEC ; + qudt:applicableUnit unit:J-SEC ; + qudt:applicableUnit unit:KiloGM-M2-PER-SEC ; + qudt:applicableUnit unit:N-M-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Angular_momentum#Spin.2C_orbital.2C_and_total_angular_momentum"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "J" ; + rdfs:comment "Applicable units are those of quantitykind:AngularMomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Total Angular Momentum"@en ; + skos:broader quantitykind:AngularMomentum . + +quantitykind:TotalAngularMomentumQuantumNumber + a qudt:QuantityKind ; + dcterms:description "The \"Total Angular Quantum Number\" describes the magnitude of total angular momentum $J$, where $j$ refers to a specific particle and $J$ is used for the whole system."^^qudt:LatexString ; + qudt:applicableUnit unit:NUM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:symbol "j" ; + rdfs:comment "Applicable units are those of quantitykind:TotalAngularMomentumQuantumNumber" ; + rdfs:isDefinedBy ; + rdfs:label "Total Angular Momentum Quantum Number"@en ; + skos:broader quantitykind:QuantumNumber ; + skos:closeMatch quantitykind:MagneticQuantumNumber ; + skos:closeMatch quantitykind:PrincipalQuantumNumber ; + skos:closeMatch quantitykind:SpinQuantumNumber . + +quantitykind:TotalAtomicStoppingPower + a qudt:QuantityKind ; + dcterms:description "The \"Total Atomic Stopping Power\" for an ionizing particle passing through an element, is the particle's energy loss per atom within a unit area normal to the particle's path; equal to the linear energy transfer (energy loss per unit path length) divided by the number of atoms per unit volume."^^qudt:LatexString ; + qudt:applicableUnit unit:EV-M2 ; + qudt:applicableUnit unit:J-M2 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:informativeReference "http://www.answers.com/topic/atomic-stopping-power"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$S_a = \\frac{S}{n}$, where $S$ is the total linear stopping power and $n$ is the number density of the atoms in the substance."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Total Atomic Stopping Power\" for an ionizing particle passing through an element, is the particle's energy loss per atom within a unit area normal to the particle's path; equal to the linear energy transfer (energy loss per unit path length) divided by the number of atoms per unit volume." ; + qudt:symbol "S_a" ; + rdfs:comment "Applicable units are those of quantitykind:TotalAtomicStoppingPower" ; + rdfs:isDefinedBy ; + rdfs:label "Total Atomic Stopping Power"@en . + +quantitykind:TotalCrossSection + a qudt:QuantityKind ; + dcterms:description "\"Total Cross-section\" is related to the absorbance of the light intensity through Beer-Lambert's law. It is the sum of all cross-sections corresponding to the various reactions or processes between an incident particle of specified type and energy and a target particle."^^qudt:LatexString ; + qudt:applicableUnit unit:AC ; + qudt:applicableUnit unit:ARE ; + qudt:applicableUnit unit:BARN ; + qudt:applicableUnit unit:CentiM2 ; + qudt:applicableUnit unit:DecaARE ; + qudt:applicableUnit unit:DeciM2 ; + qudt:applicableUnit unit:FT2 ; + qudt:applicableUnit unit:HA ; + qudt:applicableUnit unit:IN2 ; + qudt:applicableUnit unit:KiloM2 ; + qudt:applicableUnit unit:KiloMIL_Circ ; + qudt:applicableUnit unit:M2 ; + qudt:applicableUnit unit:MI2 ; + qudt:applicableUnit unit:MIL_Circ ; + qudt:applicableUnit unit:MI_US2 ; + qudt:applicableUnit unit:MicroM2 ; + qudt:applicableUnit unit:MilliM2 ; + qudt:applicableUnit unit:NanoM2 ; + qudt:applicableUnit unit:PlanckArea ; + qudt:applicableUnit unit:YD2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ; + qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Total Cross-section\" is related to the absorbance of the light intensity through Beer-Lambert's law. It is the sum of all cross-sections corresponding to the various reactions or processes between an incident particle of specified type and energy and a target particle." ; + qudt:symbol "σₜ" ; + rdfs:comment "Applicable units are those of quantitykind:Area" ; + rdfs:isDefinedBy ; + rdfs:label "Total Cross-section"@en ; + skos:broader quantitykind:CrossSection . + +quantitykind:TotalCurrent + a qudt:QuantityKind ; + dcterms:description "\"Total Current\" is the sum of the electric current that is flowing through a surface and the displacement current."^^qudt:LatexString ; + qudt:altSymbol "I_t" ; + qudt:applicableUnit unit:A ; + qudt:applicableUnit unit:AttoA ; + qudt:applicableUnit unit:FemtoA ; + qudt:applicableUnit unit:GigaA ; + qudt:applicableUnit unit:PetaA ; + qudt:applicableUnit unit:TeraA ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$I_{tot}= I + I_D$, where $I$ is electric current and $I_D$ is displacement current."^^qudt:LatexString ; + qudt:plainTextDescription "\"Total Current\" is the sum of the electric current that is flowing through a surface and the displacement current." ; + qudt:symbol "I_{tot}" ; + rdfs:comment "Applicable units are those of quantitykind:TotalCurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Total Current"@en ; + rdfs:seeAlso quantitykind:DisplacementCurrent ; + rdfs:seeAlso quantitykind:ElectricCurrent . + +quantitykind:TotalCurrentDensity + a qudt:QuantityKind ; + dcterms:description "\"Total Current Density\" is the sum of the electric current density and the displacement current density."^^qudt:LatexString ; + qudt:applicableUnit unit:A-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$J_{tot}= J + J_D$, where $J$ is electric current density and $J_D$ is displacement current density."^^qudt:LatexString ; + qudt:latexSymbol "$J_{tot}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Total Current Density\" is the sum of the electric current density and the displacement current density." ; + rdfs:comment "Applicable units are those of quantitykind:TotalCurrentDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Total Current Density"@en ; + rdfs:seeAlso quantitykind:DisplacementCurrentDensity ; + rdfs:seeAlso quantitykind:ElectricCurrentDensity . + +quantitykind:TotalIonization + a qudt:QuantityKind ; + dcterms:description "\"Total Ionization\" by a particle, total mean charge, divided by the elementary charge, $e$, of all positive ions produced by an ionizing charged particle along its entire path and along the paths of any secondary charged particles."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization#Classical_ionization"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$N = \\int N_i dl$."^^qudt:LatexString ; + qudt:symbol "N_i" ; + rdfs:comment "Applicable units are those of quantitykind:TotalIonization" ; + rdfs:isDefinedBy ; + rdfs:label "Total Ionization"@en . + +quantitykind:TotalLinearStoppingPower + a qudt:QuantityKind ; + dcterms:description "The \"Total Linear Stopping Power\" is defined as the average energy loss of the particle per unit path length."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-PER-CentiM ; + qudt:applicableUnit unit:EV-PER-ANGSTROM ; + qudt:applicableUnit unit:EV-PER-M ; + qudt:applicableUnit unit:J-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD203" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stopping_power_(particle_radiation)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD203"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$S = -\\frac{dE}{dx}$, where $-dE$ is the energy decrement in the $x-direction$ along an elementary path with the length $dx$."^^qudt:LatexString ; + qudt:plainTextDescription "The \"Total Linear Stopping Power\" is defined as the average energy loss of the particle per unit path length." ; + qudt:symbol "S" ; + rdfs:comment "Applicable units are those of quantitykind:TotalLinearStoppingPower" ; + rdfs:isDefinedBy ; + rdfs:label "Total Linear Stopping Power"@en . + +quantitykind:TotalMassStoppingPower + a qudt:QuantityKind ; + dcterms:description "If a substance is compared in gaseous and solid form, then the linear stopping powers of the two states are very different just because of the different density. One therefore often divides S(E) by the density of the material to obtain the \"Mass Stopping Power\". The mass stopping power then depends only very little on the density of the material."^^qudt:LatexString ; + qudt:applicableUnit unit:ERG-CentiM2-PER-GM ; + qudt:applicableUnit unit:EV-M2-PER-KiloGM ; + qudt:applicableUnit unit:J-M2-PER-KiloGM ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-2D0 ; + qudt:iec61360Code "0112/2///62720#UAD204" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stopping_power_(particle_radiation)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD204"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:latexDefinition "$S_m = \\frac{S}{\\rho}$, where $S$ is the total linear stopping power and $\\rho$ is the mass density of the sample."^^qudt:LatexString ; + qudt:plainTextDescription "If a substance is compared in gaseous and solid form, then the linear stopping powers of the two states are very different just because of the different density. One therefore often divides S(E) by the density of the material to obtain the \"Mass Stopping Power\". The mass stopping power then depends only very little on the density of the material." ; + qudt:symbol "S_m" ; + rdfs:comment "Applicable units are those of quantitykind:TotalMassStoppingPower" ; + rdfs:isDefinedBy ; + rdfs:label "Total Mass Stopping Power"@en . + +quantitykind:TotalPressure + a qudt:QuantityKind ; + dcterms:description " The total pressure is the sum of the dynamic and static pressures, that is $P_0 = P + q$."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:symbol "P_0" ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Total Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:TotalRadiance + a qudt:QuantityKind ; + dcterms:description "ratio between the differential change in the energy fluence dΨ and the time interval dt: ψ = dΨ / dt; the total radiance is identical to the product of the particle flux density and the average energy of the particles"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:plainTextDescription "Quotient aus der differentiellen Änderung der Energiefluenz dΨ im Zeitintervall dt: ψ = dΨ / dt; die Energieflussdichte ist identisch mit dem Produkt der Teilchenflussdichte und der mittleren Teilchenenergie"@de ; + qudt:symbol "0173-1#Z4-BAJ318#002" ; + rdfs:isDefinedBy ; + rdfs:label "total radiance"@en-US . + +quantitykind:TouchThresholds + a qudt:QuantityKind ; + dcterms:description "\"Touch Thresholds\" are thresholds for touch, vibration and other stimuli to the skin."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_t}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Touch Thresholds\" are thresholds for touch, vibration and other stimuli to the skin." ; + rdfs:isDefinedBy ; + rdfs:label "Touch Thresholds"@en . + +quantitykind:TrafficIntensity + a qudt:QuantityKind ; + dcterms:description "number of all simultaneously occupied units in a particular group of units"@en ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD205" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD205"^^xsd:anyURI ; + qudt:plainTextDescription "Anzahl aller gleichzeitig belegten Einrichtungen in einer bestimmten Gruppe von einrichtungen"@de ; + qudt:symbol "0173-1#Z4-BAJ462#001" ; + rdfs:isDefinedBy ; + rdfs:label "traffic intensity" ; + rdfs:label "traffic intensity"@en-US . + +quantitykind:TransmissionRatioBetweenRotationAndTranslation + a qudt:QuantityKind ; + dcterms:description "relationship between rotational and longitudinal movements as a measure of how an angle is converted into a linear path"@en ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "Zusammenhang zwischen Dreh- und Längsbewegung als Maß dafür, wie ein überstrichener Drehwinkel in eine lineare Wegstrecke umgesetzt wird"@de ; + qudt:symbol "0173-1#Z4-BAJ400#003" ; + rdfs:isDefinedBy ; + rdfs:label "transmission ratio between rotation and translation"@en-US . + +quantitykind:Transmittance + a qudt:QuantityKind ; + dcterms:description "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Transmittance"^^xsd:anyURI ; + qudt:latexDefinition "$\\tau = \\frac{\\Phi_t}{\\Phi_m}$, where $\\Phi_t$ is the transmitted radiant flux or the transmitted luminous flux, and $\\Phi_m$ is the radiant flux or luminous flux of the incident radiation."^^qudt:LatexString ; + qudt:latexSymbol "$\\tau, T$"^^qudt:LatexString ; + qudt:plainTextDescription "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample." ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Transmittance"@en ; + skos:broader quantitykind:DimensionlessRatio ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:TransmittanceDensity + a qudt:QuantityKind ; + dcterms:description "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:latexDefinition "$A_{10}(\\lambda) = -lg(\\tau(\\lambda))$, where $\\tau$ is the transmittance at a given wavelength $\\lambda$."^^qudt:LatexString ; + qudt:plainTextDescription "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample." ; + qudt:symbol "A_10, D" ; + rdfs:comment "Applicable units are those of quantitykind:TransmittanceDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Transmittance Density"@en . + +quantitykind:TrueExhaustVelocity + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:symbol "u_{e}" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "True Exhaust Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:Turbidity + a qudt:QuantityKind ; + dcterms:description "Turbidity is the cloudiness or haziness of a fluid, or of air, caused by individual particles (suspended solids) that are generally invisible to the naked eye, similar to smoke in air. Turbidity in open water is often caused by phytoplankton and the measurement of turbidity is a key test of water quality. The higher the turbidity, the higher the risk of the drinkers developing gastrointestinal diseases, especially for immune-compromised people, because contaminants like virus or bacteria can become attached to the suspended solid. The suspended solids interfere with water disinfection with chlorine because the particles act as shields for the virus and bacteria. Similarly suspended solids can protect bacteria from UV sterilisation of water. Fluids can contain suspended solid matter consisting of particles of many different sizes. While some suspended material will be large enough and heavy enough to settle rapidly to the bottom container if a liquid sample is left to stand (the settleable solids), very small particles will settle only very slowly or not at all if the sample is regularly agitated or the particles are colloidal. These small solid particles cause the liquid to appear turbid."^^qudt:LatexString ; + qudt:applicableUnit unit:NTU ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Turbidity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Turbidity"^^xsd:anyURI ; + qudt:plainTextDescription "Turbidity is the cloudiness or haziness of a fluid, or of air, caused by individual particles (suspended solids) that are generally invisible to the naked eye, similar to smoke in air. Turbidity in open water is often caused by phytoplankton and the measurement of turbidity is a key test of water quality. The higher the turbidity, the higher the risk of the drinkers developing gastrointestinal diseases, especially for immune-compromised people, because contaminants like virus or bacteria can become attached to the suspended solid. The suspended solids interfere with water disinfection with chlorine because the particles act as shields for the virus and bacteria. Similarly suspended solids can protect bacteria from UV sterilisation of water. Fluids can contain suspended solid matter consisting of particles of many different sizes. While some suspended material will be large enough and heavy enough to settle rapidly to the bottom container if a liquid sample is left to stand (the settleable solids), very small particles will settle only very slowly or not at all if the sample is regularly agitated or the particles are colloidal. These small solid particles cause the liquid to appear turbid." ; + rdfs:comment "Applicable units are those of quantitykind:Turbidity" ; + rdfs:isDefinedBy ; + rdfs:label "Turbidity"@en . + +quantitykind:Turns + a qudt:QuantityKind ; + dcterms:description "\"Turns\" is the number of turns in a winding."^^qudt:LatexString ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription "\"Turns\" is the number of turns in a winding." ; + qudt:symbol "N" ; + rdfs:comment "Applicable units are those of quantitykind:Turns" ; + rdfs:isDefinedBy ; + rdfs:label "Turns"@en ; + skos:broader quantitykind:Count . + +quantitykind:Unbalance + a qudt:QuantityKind ; + dcterms:description "unsteady rotation of a body resulting from an anxious distribution of mass, expressed as the product of radius and related mass"@en ; + qudt:applicableUnit unit:KiloGM-M ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD206" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD206"^^xsd:anyURI ; + qudt:plainTextDescription "durch ungleichmäßige Masseverteilung bedingter, unruhiger Lauf rotierender Körper, ausgedrückt als Produkt aus dem Radius und einer zugehörigen Masse"@de ; + qudt:symbol "0173-1#Z4-BAJ432#001" ; + rdfs:comment "Applicable units are those of quantitykind:Unbalance" ; + rdfs:isDefinedBy ; + rdfs:label "unbalance" ; + rdfs:label "unbalance"@en-US . + +quantitykind:Unknown + a qudt:QuantityKind ; + dcterms:description "Placeholder value used for reference from units where it is not clear what a given unit is a measure of."@en ; + qudt:applicableUnit unit:A-HR-PER-DEG_C ; + qudt:applicableUnit unit:A-PER-A-HR ; + qudt:applicableUnit unit:A-PER-PA ; + qudt:applicableUnit unit:A-SEC2 ; + qudt:applicableUnit unit:A2-SEC ; + qudt:applicableUnit unit:BARN-PER-EV ; + qudt:applicableUnit unit:BARN-PER-SR ; + qudt:applicableUnit unit:BARN-PER-SR-EV ; + qudt:applicableUnit unit:C-M2-PER-KiloGM ; + qudt:applicableUnit unit:CCY_AWG ; + qudt:applicableUnit unit:CentiM-PER-BAR ; + qudt:applicableUnit unit:CentiM-PER-SEC-BAR ; + qudt:applicableUnit unit:CentiM-PER-SEC-K ; + qudt:applicableUnit unit:CentiM2-PER-CentiM3 ; + qudt:applicableUnit unit:CentiM3-PER-BAR ; + qudt:applicableUnit unit:CentiM3-PER-DAY-BAR ; + qudt:applicableUnit unit:CentiM3-PER-DAY-K ; + qudt:applicableUnit unit:CentiM3-PER-HR-BAR ; + qudt:applicableUnit unit:CentiM3-PER-HR-K ; + qudt:applicableUnit unit:CentiM3-PER-MIN-BAR ; + qudt:applicableUnit unit:CentiM3-PER-MIN-K ; + qudt:applicableUnit unit:CentiM3-PER-SEC-BAR ; + qudt:applicableUnit unit:CentiM3-PER-SEC-K ; + qudt:applicableUnit unit:CentiPOISE-PER-K ; + qudt:applicableUnit unit:DEG_C-KiloGM-PER-M2 ; + qudt:applicableUnit unit:DEG_C-PER-BAR ; + qudt:applicableUnit unit:DEG_C2-PER-SEC ; + qudt:applicableUnit unit:DEG_F-PER-BAR ; + qudt:applicableUnit unit:DeciB-MilliW ; + qudt:applicableUnit unit:DeciB-MilliW-PER-MegaHZ ; + qudt:applicableUnit unit:DeciB-W ; + qudt:applicableUnit unit:FT-HR-PER-GAL_UK ; + qudt:applicableUnit unit:FT-HR-PER-GAL_US ; + qudt:applicableUnit unit:FT-HR-PER-IN3 ; + qudt:applicableUnit unit:FT-PER-PSI ; + qudt:applicableUnit unit:FT-PER-SEC-DEG_F ; + qudt:applicableUnit unit:FT-PER-SEC-PSI ; + qudt:applicableUnit unit:FT-SEC-PER-GAL_UK ; + qudt:applicableUnit unit:FT-SEC-PER-GAL_US ; + qudt:applicableUnit unit:FT-SEC-PER-IN3 ; + qudt:applicableUnit unit:FT2-PER-BTU_IT-IN ; + qudt:applicableUnit unit:FT3-PER-PSI ; + qudt:applicableUnit unit:GM-HR-PER-L-CentiM3 ; + qudt:applicableUnit unit:GM-HR-PER-L-M3 ; + qudt:applicableUnit unit:GM-HR-PER-L2 ; + qudt:applicableUnit unit:GM-HR-PER-M3-CentiM3 ; + qudt:applicableUnit unit:GM-HR-PER-M3-L ; + qudt:applicableUnit unit:GM-HR-PER-M6 ; + qudt:applicableUnit unit:GM-MIN-PER-L-CentiM3 ; + qudt:applicableUnit unit:GM-MIN-PER-L-M3 ; + qudt:applicableUnit unit:GM-MIN-PER-L2 ; + qudt:applicableUnit unit:GM-MIN-PER-M3-CentiM3 ; + qudt:applicableUnit unit:GM-MIN-PER-M3-L ; + qudt:applicableUnit unit:GM-MIN-PER-M6 ; + qudt:applicableUnit unit:GM-PER-BAR ; + qudt:applicableUnit unit:GM-PER-CentiM3-K ; + qudt:applicableUnit unit:GM-PER-DAY-BAR ; + qudt:applicableUnit unit:GM-PER-DAY-K ; + qudt:applicableUnit unit:GM-PER-DEG_C ; + qudt:applicableUnit unit:GM-PER-DeciM3-K ; + qudt:applicableUnit unit:GM-PER-HR-BAR ; + qudt:applicableUnit unit:GM-PER-HR-K ; + qudt:applicableUnit unit:GM-PER-HZ ; + qudt:applicableUnit unit:GM-PER-K ; + qudt:applicableUnit unit:GM-PER-L-CentiPOISE ; + qudt:applicableUnit unit:GM-PER-L-K ; + qudt:applicableUnit unit:GM-PER-L-MilliPA-SEC ; + qudt:applicableUnit unit:GM-PER-L-PA-SEC ; + qudt:applicableUnit unit:GM-PER-L-POISE ; + qudt:applicableUnit unit:GM-PER-M3-CentiPOISE ; + qudt:applicableUnit unit:GM-PER-M3-K ; + qudt:applicableUnit unit:GM-PER-M3-MilliPA-SEC ; + qudt:applicableUnit unit:GM-PER-M3-PA-SEC ; + qudt:applicableUnit unit:GM-PER-M3-POISE ; + qudt:applicableUnit unit:GM-PER-MIN-BAR ; + qudt:applicableUnit unit:GM-PER-MIN-K ; + qudt:applicableUnit unit:GM-PER-MilliL-K ; + qudt:applicableUnit unit:GM-PER-SEC-BAR ; + qudt:applicableUnit unit:GM-PER-SEC-K ; + qudt:applicableUnit unit:GM-SEC-PER-L-CentiM3 ; + qudt:applicableUnit unit:GM-SEC-PER-L-M3 ; + qudt:applicableUnit unit:GM-SEC-PER-L2 ; + qudt:applicableUnit unit:GM-SEC-PER-M3-CentiM3 ; + qudt:applicableUnit unit:GM-SEC-PER-M3-L ; + qudt:applicableUnit unit:GM-SEC-PER-M6 ; + qudt:applicableUnit unit:HR-PER-FT2 ; + qudt:applicableUnit unit:IN-PER-PSI ; + qudt:applicableUnit unit:IN-PER-SEC-DEG_F ; + qudt:applicableUnit unit:IN-PER-SEC-PSI ; + qudt:applicableUnit unit:K-M-PER-SEC ; + qudt:applicableUnit unit:K-M2-PER-KiloGM-SEC ; + qudt:applicableUnit unit:K-PA-PER-SEC ; + qudt:applicableUnit unit:K-PER-BAR ; + qudt:applicableUnit unit:K-PER-PA ; + qudt:applicableUnit unit:K2 ; + qudt:applicableUnit unit:KiloGM-PER-BAR ; + qudt:applicableUnit unit:KiloGM-PER-CentiM3-K ; + qudt:applicableUnit unit:KiloGM-PER-DAY-BAR ; + qudt:applicableUnit unit:KiloGM-PER-DAY-K ; + qudt:applicableUnit unit:KiloGM-PER-DeciM3-K ; + qudt:applicableUnit unit:KiloGM-PER-HR-BAR ; + qudt:applicableUnit unit:KiloGM-PER-HR-K ; + qudt:applicableUnit unit:KiloGM-PER-K ; + qudt:applicableUnit unit:KiloGM-PER-L-K ; + qudt:applicableUnit unit:KiloGM-PER-M3-K ; + qudt:applicableUnit unit:KiloGM-PER-M3-SEC ; + qudt:applicableUnit unit:KiloGM-PER-MIN-BAR ; + qudt:applicableUnit unit:KiloGM-PER-MIN-K ; + qudt:applicableUnit unit:KiloGM-PER-PA ; + qudt:applicableUnit unit:KiloGM-PER-SEC-BAR ; + qudt:applicableUnit unit:KiloGM-PER-SEC-K ; + qudt:applicableUnit unit:KiloGM-PER-SEC-PA ; + qudt:applicableUnit unit:KiloGM-SEC2 ; + qudt:applicableUnit unit:KiloGM2-PER-SEC2 ; + qudt:applicableUnit unit:KiloM-PER-SEC-BAR ; + qudt:applicableUnit unit:KiloMOL-PER-M3-BAR ; + qudt:applicableUnit unit:KiloMOL-PER-M3-K ; + qudt:applicableUnit unit:KiloOHM-PER-BAR ; + qudt:applicableUnit unit:KiloOHM-PER-K ; + qudt:applicableUnit unit:KiloVAR-PER-K ; + qudt:applicableUnit unit:L-PER-BAR ; + qudt:applicableUnit unit:L-PER-DAY-BAR ; + qudt:applicableUnit unit:L-PER-DAY-K ; + qudt:applicableUnit unit:L-PER-HR-BAR ; + qudt:applicableUnit unit:L-PER-HR-K ; + qudt:applicableUnit unit:L-PER-MIN-BAR ; + qudt:applicableUnit unit:L-PER-MIN-K ; + qudt:applicableUnit unit:L-PER-SEC-BAR ; + qudt:applicableUnit unit:L-PER-SEC-K ; + qudt:applicableUnit unit:LB-FT2-PER-GAL_UK-LB_F-SEC ; + qudt:applicableUnit unit:LB-FT2-PER-GAL_US-LB_F-SEC ; + qudt:applicableUnit unit:LB-FT2-PER-IN3-LB_F-SEC ; + qudt:applicableUnit unit:LB-HR-PER-FT3-GAL_UK ; + qudt:applicableUnit unit:LB-HR-PER-FT3-GAL_US ; + qudt:applicableUnit unit:LB-HR-PER-FT3-IN3 ; + qudt:applicableUnit unit:LB-HR-PER-FT3-YD3 ; + qudt:applicableUnit unit:LB-HR-PER-FT6 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_UK-FT3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_UK-IN3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_UK-YD3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_UK2 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_US-FT3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_US-IN3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_US-YD3 ; + qudt:applicableUnit unit:LB-HR-PER-GAL_US2 ; + qudt:applicableUnit unit:LB-HR-PER-IN3-FT3 ; + qudt:applicableUnit unit:LB-HR-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:LB-HR-PER-IN3-GAL_US ; + qudt:applicableUnit unit:LB-HR-PER-IN3-YD3 ; + qudt:applicableUnit unit:LB-HR-PER-IN6 ; + qudt:applicableUnit unit:LB-IN2-PER-FT3-LB_F-SEC ; + qudt:applicableUnit unit:LB-IN2-PER-GAL_UK-LB_F-SEC ; + qudt:applicableUnit unit:LB-IN2-PER-GAL_US-LB_F-SEC ; + qudt:applicableUnit unit:LB-IN2-PER-IN3-LB_F-SEC ; + qudt:applicableUnit unit:LB-MIN-PER-FT3-GAL_UK ; + qudt:applicableUnit unit:LB-MIN-PER-FT3-GAL_US ; + qudt:applicableUnit unit:LB-MIN-PER-FT3-IN3 ; + qudt:applicableUnit unit:LB-MIN-PER-FT3-YD3 ; + qudt:applicableUnit unit:LB-MIN-PER-FT6 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_UK-FT3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_UK-IN3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_UK-YD3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_UK2 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_US-FT3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_US-IN3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_US-YD3 ; + qudt:applicableUnit unit:LB-MIN-PER-GAL_US2 ; + qudt:applicableUnit unit:LB-MIN-PER-IN3-FT3 ; + qudt:applicableUnit unit:LB-MIN-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:LB-MIN-PER-IN3-GAL_US ; + qudt:applicableUnit unit:LB-MIN-PER-IN3-YD3 ; + qudt:applicableUnit unit:LB-MIN-PER-IN6 ; + qudt:applicableUnit unit:LB-PER-DEG_F ; + qudt:applicableUnit unit:LB-PER-FT-LB_F-SEC ; + qudt:applicableUnit unit:LB-PER-FT3-DEG_F ; + qudt:applicableUnit unit:LB-PER-HR-DEG_F ; + qudt:applicableUnit unit:LB-PER-IN3-DEG_F ; + qudt:applicableUnit unit:LB-PER-MIN-DEG_F ; + qudt:applicableUnit unit:LB-PER-PSI ; + qudt:applicableUnit unit:LB-PER-SEC-DEG_F ; + qudt:applicableUnit unit:LB-SEC-PER-FT3-GAL_UK ; + qudt:applicableUnit unit:LB-SEC-PER-FT3-GAL_US ; + qudt:applicableUnit unit:LB-SEC-PER-FT3-IN3 ; + qudt:applicableUnit unit:LB-SEC-PER-FT3-YD3 ; + qudt:applicableUnit unit:LB-SEC-PER-FT6 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_UK-FT3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_UK-IN3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_UK-YD3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_UK2 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_US-FT3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_US-IN3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_US-YD3 ; + qudt:applicableUnit unit:LB-SEC-PER-GAL_US2 ; + qudt:applicableUnit unit:LB-SEC-PER-IN3-FT3 ; + qudt:applicableUnit unit:LB-SEC-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:LB-SEC-PER-IN3-GAL_US ; + qudt:applicableUnit unit:LB-SEC-PER-IN3-YD3 ; + qudt:applicableUnit unit:LB-SEC-PER-IN6 ; + qudt:applicableUnit unit:M-PER-BAR ; + qudt:applicableUnit unit:M-PER-PA ; + qudt:applicableUnit unit:M-PER-SEC-BAR ; + qudt:applicableUnit unit:M-PER-SEC-K ; + qudt:applicableUnit unit:M-PER-SEC-PA ; + qudt:applicableUnit unit:M-SEC ; + qudt:applicableUnit unit:M-SEC2 ; + qudt:applicableUnit unit:M2-HZ2 ; + qudt:applicableUnit unit:M2-HZ3 ; + qudt:applicableUnit unit:M2-HZ4 ; + qudt:applicableUnit unit:M2-PER-HA-YR ; + qudt:applicableUnit unit:M2-PER-HZ ; + qudt:applicableUnit unit:M2-PER-HZ-DEG ; + qudt:applicableUnit unit:M2-PER-HZ2 ; + qudt:applicableUnit unit:M2-PER-SEC-BAR ; + qudt:applicableUnit unit:M2-PER-SEC-K ; + qudt:applicableUnit unit:M2-PER-SEC-PA ; + qudt:applicableUnit unit:M2-SEC-PER-RAD ; + qudt:applicableUnit unit:M3-PER-BAR ; + qudt:applicableUnit unit:M3-PER-DAY-BAR ; + qudt:applicableUnit unit:M3-PER-DAY-K ; + qudt:applicableUnit unit:M3-PER-HR-BAR ; + qudt:applicableUnit unit:M3-PER-HR-K ; + qudt:applicableUnit unit:M3-PER-KiloGM-SEC2 ; + qudt:applicableUnit unit:M3-PER-MIN-BAR ; + qudt:applicableUnit unit:M3-PER-MIN-K ; + qudt:applicableUnit unit:M3-PER-PA ; + qudt:applicableUnit unit:M3-PER-SEC-BAR ; + qudt:applicableUnit unit:M3-PER-SEC-K ; + qudt:applicableUnit unit:M3-PER-SEC-PA ; + qudt:applicableUnit unit:M4-PER-SEC ; + qudt:applicableUnit unit:MOL-PER-GM-HR ; + qudt:applicableUnit unit:MOL-PER-KiloGM-K ; + qudt:applicableUnit unit:MOL-PER-L-BAR ; + qudt:applicableUnit unit:MOL-PER-L-K ; + qudt:applicableUnit unit:MOL-PER-M2 ; + qudt:applicableUnit unit:MOL-PER-M2-SEC-M-SR ; + qudt:applicableUnit unit:MOL-PER-M2-SEC-SR ; + qudt:applicableUnit unit:MOL-PER-M3-BAR ; + qudt:applicableUnit unit:MOL-PER-M3-K ; + qudt:applicableUnit unit:MOL-PER-M3-PA ; + qudt:applicableUnit unit:MOL-PER-MOL ; + qudt:applicableUnit unit:MegaCCY_USD-PER-YR ; + qudt:applicableUnit unit:MegaHZ-KiloM ; + qudt:applicableUnit unit:MegaOHM-PER-BAR ; + qudt:applicableUnit unit:MegaOHM-PER-K ; + qudt:applicableUnit unit:MicroGAL-PER-M ; + qudt:applicableUnit unit:MicroGM-PER-L-HR ; + qudt:applicableUnit unit:MicroGM-PER-M3-HR ; + qudt:applicableUnit unit:MicroGM-PER-M3-K ; + qudt:applicableUnit unit:MicroM-PER-MilliL ; + qudt:applicableUnit unit:MicroMOL-PER-GM-HR ; + qudt:applicableUnit unit:MicroMOL-PER-GM-SEC ; + qudt:applicableUnit unit:MicroMOL-PER-M2 ; + qudt:applicableUnit unit:MicroMOL-PER-M2-SEC2 ; + qudt:applicableUnit unit:MicroMOL-PER-MOL ; + qudt:applicableUnit unit:MicroMOL-PER-MicroMOL-DAY ; + qudt:applicableUnit unit:MicroVAR-PER-K ; + qudt:applicableUnit unit:MilliA-IN2-PER-LB_F ; + qudt:applicableUnit unit:MilliA-PER-BAR ; + qudt:applicableUnit unit:MilliA-PER-L-MIN ; + qudt:applicableUnit unit:MilliA-PER-LB_F-IN2 ; + qudt:applicableUnit unit:MilliBQ-PER-M2-DAY ; + qudt:applicableUnit unit:MilliGAL-PER-MO ; + qudt:applicableUnit unit:MilliGM-HR-PER-L-CentiM3 ; + qudt:applicableUnit unit:MilliGM-HR-PER-L-M3 ; + qudt:applicableUnit unit:MilliGM-HR-PER-L2 ; + qudt:applicableUnit unit:MilliGM-HR-PER-M3-CentiM3 ; + qudt:applicableUnit unit:MilliGM-HR-PER-M3-L ; + qudt:applicableUnit unit:MilliGM-HR-PER-M6 ; + qudt:applicableUnit unit:MilliGM-MIN-PER-L-CentiM3 ; + qudt:applicableUnit unit:MilliGM-MIN-PER-L-M3 ; + qudt:applicableUnit unit:MilliGM-MIN-PER-L2 ; + qudt:applicableUnit unit:MilliGM-MIN-PER-M3-CentiM3 ; + qudt:applicableUnit unit:MilliGM-MIN-PER-M3-L ; + qudt:applicableUnit unit:MilliGM-MIN-PER-M6 ; + qudt:applicableUnit unit:MilliGM-PER-BAR ; + qudt:applicableUnit unit:MilliGM-PER-DAY-BAR ; + qudt:applicableUnit unit:MilliGM-PER-DAY-K ; + qudt:applicableUnit unit:MilliGM-PER-HR-BAR ; + qudt:applicableUnit unit:MilliGM-PER-HR-K ; + qudt:applicableUnit unit:MilliGM-PER-K ; + qudt:applicableUnit unit:MilliGM-PER-L-CentiPOISE ; + qudt:applicableUnit unit:MilliGM-PER-L-MilliPA-SEC ; + qudt:applicableUnit unit:MilliGM-PER-L-PA-SEC ; + qudt:applicableUnit unit:MilliGM-PER-L-POISE ; + qudt:applicableUnit unit:MilliGM-PER-M3-CentiPOISE ; + qudt:applicableUnit unit:MilliGM-PER-M3-DAY ; + qudt:applicableUnit unit:MilliGM-PER-M3-HR ; + qudt:applicableUnit unit:MilliGM-PER-M3-K ; + qudt:applicableUnit unit:MilliGM-PER-M3-MilliPA-SEC ; + qudt:applicableUnit unit:MilliGM-PER-M3-PA-SEC ; + qudt:applicableUnit unit:MilliGM-PER-M3-POISE ; + qudt:applicableUnit unit:MilliGM-PER-M3-SEC ; + qudt:applicableUnit unit:MilliGM-PER-MIN-BAR ; + qudt:applicableUnit unit:MilliGM-PER-MIN-K ; + qudt:applicableUnit unit:MilliGM-PER-SEC-BAR ; + qudt:applicableUnit unit:MilliGM-PER-SEC-K ; + qudt:applicableUnit unit:MilliGM-SEC-PER-L-CentiM3 ; + qudt:applicableUnit unit:MilliGM-SEC-PER-L-M3 ; + qudt:applicableUnit unit:MilliGM-SEC-PER-L2 ; + qudt:applicableUnit unit:MilliGM-SEC-PER-M3-CentiM3 ; + qudt:applicableUnit unit:MilliGM-SEC-PER-M3-L ; + qudt:applicableUnit unit:MilliGM-SEC-PER-M6 ; + qudt:applicableUnit unit:MilliK-PER-BAR ; + qudt:applicableUnit unit:MilliL-PER-BAR ; + qudt:applicableUnit unit:MilliL-PER-DAY-BAR ; + qudt:applicableUnit unit:MilliL-PER-DAY-K ; + qudt:applicableUnit unit:MilliL-PER-HR-BAR ; + qudt:applicableUnit unit:MilliL-PER-HR-K ; + qudt:applicableUnit unit:MilliL-PER-M2-DAY ; + qudt:applicableUnit unit:MilliL-PER-MIN-BAR ; + qudt:applicableUnit unit:MilliL-PER-MIN-K ; + qudt:applicableUnit unit:MilliL-PER-SEC-BAR ; + qudt:applicableUnit unit:MilliL-PER-SEC-K ; + qudt:applicableUnit unit:MilliM-PER-BAR ; + qudt:applicableUnit unit:MilliM-PER-M2 ; + qudt:applicableUnit unit:MilliMOL-PER-M2 ; + qudt:applicableUnit unit:MilliMOL-PER-MOL ; + qudt:applicableUnit unit:MilliOHM-PER-BAR ; + qudt:applicableUnit unit:MilliOHM-PER-K ; + qudt:applicableUnit unit:MilliPA-SEC-PER-K ; + qudt:applicableUnit unit:MilliV-PER-V ; + qudt:applicableUnit unit:MilliVAR-PER-K ; + qudt:applicableUnit unit:MilliW-PER-CentiM2-MicroM-SR ; + qudt:applicableUnit unit:MilliW-PER-M2-NanoM-SR ; + qudt:applicableUnit unit:N-M-PER-W0dot5 ; + qudt:applicableUnit unit:N-M2-PER-KiloGM2 ; + qudt:applicableUnit unit:NP-PER-SEC ; + qudt:applicableUnit unit:NUM-PER-CentiM-KiloYR ; + qudt:applicableUnit unit:NUM-PER-GM ; + qudt:applicableUnit unit:NUM-PER-HectoGM ; + qudt:applicableUnit unit:NUM-PER-KiloGM ; + qudt:applicableUnit unit:NUM-PER-MilliGM ; + qudt:applicableUnit unit:NanoMOL-PER-GM-HR ; + qudt:applicableUnit unit:NanoMOL-PER-GM-SEC ; + qudt:applicableUnit unit:NanoMOL-PER-MicroGM-HR ; + qudt:applicableUnit unit:NanoMOL-PER-MicroMOL ; + qudt:applicableUnit unit:NanoMOL-PER-MicroMOL-DAY ; + qudt:applicableUnit unit:OHM-PER-BAR ; + qudt:applicableUnit unit:OHM-PER-K ; + qudt:applicableUnit unit:ONE ; + qudt:applicableUnit unit:OZ-FT-HR-PER-IN3-LB ; + qudt:applicableUnit unit:OZ-FT-SEC-PER-IN3-LB ; + qudt:applicableUnit unit:OZ-FT2-PER-IN3-LB_F-SEC ; + qudt:applicableUnit unit:OZ-HR-PER-IN3-FT3 ; + qudt:applicableUnit unit:OZ-HR-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:OZ-HR-PER-IN3-GAL_US ; + qudt:applicableUnit unit:OZ-HR-PER-IN3-YD3 ; + qudt:applicableUnit unit:OZ-HR-PER-IN6 ; + qudt:applicableUnit unit:OZ-IN2-PER-IN3-LB_F-SEC ; + qudt:applicableUnit unit:OZ-MIN-PER-IN3-FT3 ; + qudt:applicableUnit unit:OZ-MIN-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:OZ-MIN-PER-IN3-GAL_US ; + qudt:applicableUnit unit:OZ-MIN-PER-IN3-YD3 ; + qudt:applicableUnit unit:OZ-MIN-PER-IN6 ; + qudt:applicableUnit unit:OZ-SEC-PER-IN3-FT3 ; + qudt:applicableUnit unit:OZ-SEC-PER-IN3-GAL_UK ; + qudt:applicableUnit unit:OZ-SEC-PER-IN3-GAL_US ; + qudt:applicableUnit unit:OZ-SEC-PER-IN3-YD3 ; + qudt:applicableUnit unit:OZ-SEC-PER-IN6 ; + qudt:applicableUnit unit:PA-M ; + qudt:applicableUnit unit:PA-M-PER-SEC ; + qudt:applicableUnit unit:PA-M-PER-SEC2 ; + qudt:applicableUnit unit:PA-SEC-PER-K ; + qudt:applicableUnit unit:PA2-PER-SEC2 ; + qudt:applicableUnit unit:PER-KiloGM-SEC ; + qudt:applicableUnit unit:PER-M-NanoM-SR ; + qudt:applicableUnit unit:PER-M-SEC ; + qudt:applicableUnit unit:PER-M-SR ; + qudt:applicableUnit unit:PER-MicroMOL-L ; + qudt:applicableUnit unit:PER-PA-SEC ; + qudt:applicableUnit unit:PER-PERCENT ; + qudt:applicableUnit unit:PER-RAD ; + qudt:applicableUnit unit:PER-SEC-SR-M2 ; + qudt:applicableUnit unit:PER-SR ; + qudt:applicableUnit unit:PERCENT-FT-HR-PER-LB ; + qudt:applicableUnit unit:PERCENT-FT-SEC-PER-LB ; + qudt:applicableUnit unit:PERCENT-HR-PER-CentiM3 ; + qudt:applicableUnit unit:PERCENT-HR-PER-FT3 ; + qudt:applicableUnit unit:PERCENT-HR-PER-GAL_UK ; + qudt:applicableUnit unit:PERCENT-HR-PER-GAL_US ; + qudt:applicableUnit unit:PERCENT-HR-PER-IN3 ; + qudt:applicableUnit unit:PERCENT-HR-PER-L ; + qudt:applicableUnit unit:PERCENT-HR-PER-M3 ; + qudt:applicableUnit unit:PERCENT-HR-PER-YD3 ; + qudt:applicableUnit unit:PERCENT-MIN-PER-CentiM3 ; + qudt:applicableUnit unit:PERCENT-MIN-PER-FT3 ; + qudt:applicableUnit unit:PERCENT-MIN-PER-GAL_UK ; + qudt:applicableUnit unit:PERCENT-MIN-PER-GAL_US ; + qudt:applicableUnit unit:PERCENT-MIN-PER-IN3 ; + qudt:applicableUnit unit:PERCENT-MIN-PER-L ; + qudt:applicableUnit unit:PERCENT-MIN-PER-M3 ; + qudt:applicableUnit unit:PERCENT-MIN-PER-YD3 ; + qudt:applicableUnit unit:PERCENT-PER-100KiloCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-10KiloCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-CentiPOISE ; + qudt:applicableUnit unit:PERCENT-PER-DEG ; + qudt:applicableUnit unit:PERCENT-PER-DecaCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-DecaKiloCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-HectoKiloCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-KiloCOUNT ; + qudt:applicableUnit unit:PERCENT-PER-MilliPA-SEC ; + qudt:applicableUnit unit:PERCENT-PER-OHM ; + qudt:applicableUnit unit:PERCENT-PER-PA-SEC ; + qudt:applicableUnit unit:PERCENT-PER-PERCENT ; + qudt:applicableUnit unit:PERCENT-PER-POISE ; + qudt:applicableUnit unit:PERCENT-PER-V ; + qudt:applicableUnit unit:PERCENT-SEC-PER-CentiM3 ; + qudt:applicableUnit unit:PERCENT-SEC-PER-FT3 ; + qudt:applicableUnit unit:PERCENT-SEC-PER-GAL_UK ; + qudt:applicableUnit unit:PERCENT-SEC-PER-GAL_US ; + qudt:applicableUnit unit:PERCENT-SEC-PER-IN3 ; + qudt:applicableUnit unit:PERCENT-SEC-PER-L ; + qudt:applicableUnit unit:PERCENT-SEC-PER-M3 ; + qudt:applicableUnit unit:PERCENT-SEC-PER-YD3 ; + qudt:applicableUnit unit:POISE-PER-K ; + qudt:applicableUnit unit:PPT_VOL ; + qudt:applicableUnit unit:PicoA-PER-HectoPA ; + qudt:applicableUnit unit:PicoA-PER-MicroMOL-L ; + qudt:applicableUnit unit:PicoMOL-PER-M-W-SEC ; + qudt:applicableUnit unit:PicoW-PER-CentiM2-L ; + qudt:applicableUnit unit:SEC-PER-FT2 ; + qudt:applicableUnit unit:SEC-PER-M ; + qudt:applicableUnit unit:SON ; + qudt:applicableUnit unit:SPIN_QUANTUM_NUMBER ; + qudt:applicableUnit unit:ST-PER-BAR ; + qudt:applicableUnit unit:ST-PER-K ; + qudt:applicableUnit unit:ST-PER-PA ; + qudt:applicableUnit unit:TONNE-PER-BAR ; + qudt:applicableUnit unit:TONNE-PER-DAY-BAR ; + qudt:applicableUnit unit:TONNE-PER-DAY-K ; + qudt:applicableUnit unit:TONNE-PER-HR-BAR ; + qudt:applicableUnit unit:TONNE-PER-HR-K ; + qudt:applicableUnit unit:TONNE-PER-K ; + qudt:applicableUnit unit:TONNE-PER-M3-K ; + qudt:applicableUnit unit:TONNE-PER-MIN-BAR ; + qudt:applicableUnit unit:TONNE-PER-MIN-K ; + qudt:applicableUnit unit:TONNE-PER-SEC-BAR ; + qudt:applicableUnit unit:TONNE-PER-SEC-K ; + qudt:applicableUnit unit:TON_Metric-PER-BAR ; + qudt:applicableUnit unit:TON_Metric-PER-DAY-BAR ; + qudt:applicableUnit unit:TON_Metric-PER-DAY-K ; + qudt:applicableUnit unit:TON_Metric-PER-HR-BAR ; + qudt:applicableUnit unit:TON_Metric-PER-HR-K ; + qudt:applicableUnit unit:TON_Metric-PER-K ; + qudt:applicableUnit unit:TON_Metric-PER-M3-K ; + qudt:applicableUnit unit:TON_Metric-PER-MIN-BAR ; + qudt:applicableUnit unit:TON_Metric-PER-MIN-K ; + qudt:applicableUnit unit:TON_Metric-PER-SEC-BAR ; + qudt:applicableUnit unit:TON_Metric-PER-SEC-K ; + qudt:applicableUnit unit:TON_SHORT-PER-DEG_F ; + qudt:applicableUnit unit:TON_SHORT-PER-HR-DEG_F ; + qudt:applicableUnit unit:TON_SHORT-PER-HR-PSI ; + qudt:applicableUnit unit:TON_SHORT-PER-PSI ; + qudt:applicableUnit unit:UNKNOWN ; + qudt:applicableUnit unit:V-PER-L-MIN ; + qudt:applicableUnit unit:V-PER-V ; + qudt:applicableUnit unit:VAR-PER-K ; + qudt:applicableUnit unit:W-HR-PER-L ; + qudt:applicableUnit unit:W-M-PER-M2-SR ; + qudt:applicableUnit unit:W-PER-M2-M ; + qudt:applicableUnit unit:W-PER-M2-M-SR ; + qudt:applicableUnit unit:W-PER-M2-NanoM ; + qudt:applicableUnit unit:W-PER-M2-NanoM-SR ; + qudt:applicableUnit unit:YD-PER-PSI ; + qudt:applicableUnit unit:YD3-PER-PSI ; + qudt:hasDimensionVector qkdv:NotApplicable ; + rdfs:comment "Applicable units are those of quantitykind:Unknown" ; + rdfs:isDefinedBy ; + rdfs:label "Unknown"@en . + +quantitykind:UpperCriticalMagneticFluxDensity + a qudt:QuantityKind ; + dcterms:description "\"Upper Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for disappearance of bulk superconductivity."^^qudt:LatexString ; + qudt:applicableUnit unit:GAMMA ; + qudt:applicableUnit unit:GAUSS ; + qudt:applicableUnit unit:KiloGAUSS ; + qudt:applicableUnit unit:KiloT ; + qudt:applicableUnit unit:MicroT ; + qudt:applicableUnit unit:MilliT ; + qudt:applicableUnit unit:NanoT ; + qudt:applicableUnit unit:T ; + qudt:applicableUnit unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:plainTextDescription "\"Upper Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for disappearance of bulk superconductivity." ; + qudt:symbol "B_{c2}" ; + rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity" ; + rdfs:isDefinedBy ; + rdfs:label "Upper Critical Magnetic Flux Density"@en ; + skos:broader quantitykind:MagneticFluxDensity ; + skos:closeMatch quantitykind:LowerCriticalMagneticFluxDensity . + +quantitykind:VacuumThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:expression "$VT$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Vacuum Thrust"@en ; + skos:broader quantitykind:Thrust . + +quantitykind:VaporPermeability + a qudt:QuantityKind ; + dcterms:description "The moisture transmission rate of a material is referred to as its \"permeability\"."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-PA-SEC-M ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "https://users.encs.concordia.ca/~raojw/crd/essay/essay000287.html"^^xsd:anyURI ; + qudt:informativeReference "https://www.designingbuildings.co.uk/wiki/Vapour_Permeability"^^xsd:anyURI ; + qudt:plainTextDescription "The moisture transmission rate of a material is referred to as its \"permeability\"." ; + rdfs:comment "Applicable units are those of quantitykind:VaporPermeability" ; + rdfs:isDefinedBy ; + rdfs:label "Vapor Permeability"@en . + +quantitykind:VaporPermeance + a qudt:QuantityKind ; + dcterms:description "A material's \"permeance\", is dependent on thickness much like the R-value in heat transmission. Dividing the permeability of a material by its thickness gives the material's permeance. Permeance is the number that should be used to compare various products in regard to moisture transmission resistance."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloGM-PER-M2-PA-SEC ; + qudt:applicableUnit unit:NanoGM-PER-M2-PA-SEC ; + qudt:applicableUnit unit:PERM_Metric ; + qudt:applicableUnit unit:PERM_Metric_0DEG_C ; + qudt:applicableUnit unit:PERM_Metric_23DEG_C ; + qudt:applicableUnit unit:PERM_US ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:informativeReference "https://users.encs.concordia.ca/~raojw/crd/essay/essay000287.html"^^xsd:anyURI ; + qudt:informativeReference "https://www.designingbuildings.co.uk/wiki/Vapour_Permeability"^^xsd:anyURI ; + qudt:plainTextDescription "A material's \"permeance\", is dependent on thickness much like the R-value in heat transmission. Dividing the permeability of a material by its thickness gives the material's permeance. Permeance is the number that should be used to compare various products in regard to moisture transmission resistance." ; + rdfs:comment "Applicable units are those of quantitykind:VaporPermeance" ; + rdfs:isDefinedBy ; + rdfs:label "Vapor Permeability"@en . + +quantitykind:VaporPressure + a qudt:QuantityKind ; + dcterms:description "A pressure that is the one exerted by a substance vapor in thermodynamic equilibrium with either its solid or liquid phase at a given temperature in a closed system."^^qudt:LatexString ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:plainTextDescription "A pressure that is the one exerted by a substance vapor in thermodynamic equilibrium with either its solid or liquid phase at a given temperature in a closed system." ; + rdfs:comment "Applicable units are those of quantitykind:VaporPressure" ; + rdfs:isDefinedBy ; + rdfs:label "Vapor Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:VehicleVelocity + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:symbol "V" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Vehicle Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:Velocity + a qudt:QuantityKind ; + dcterms:description "In kinematics, velocity is the speed of an object and a specification of its direction of motion. Speed describes only how fast an object is moving, whereas velocity gives both how fast and in what direction the object is moving. "^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Velocity"^^xsd:anyURI ; + qudt:exactMatch quantitykind:LinearVelocity ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD236" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Velocity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD236"^^xsd:anyURI ; + qudt:plainTextDescription "In kinematics, velocity is the speed of an object and a specification of its direction of motion. Speed describes only how fast an object is moving, whereas velocity gives both how fast and in what direction the object is moving. " ; + qudt:siExactMatch si-quantity:VELO ; + qudt:symbol "v" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Geschwindigkeit"@de ; + rdfs:label "Halaju"@ms ; + rdfs:label "Rychlost"@cs ; + rdfs:label "hitrost"@sl ; + rdfs:label "hız"@tr ; + rdfs:label "prędkość"@pl ; + rdfs:label "velocidad"@es ; + rdfs:label "velocidade"@pt ; + rdfs:label "velocitas"@la ; + rdfs:label "velocity"@en ; + rdfs:label "velocità"@it ; + rdfs:label "vitesse"@fr ; + rdfs:label "viteză"@ro ; + rdfs:label "Επιφάνεια"@el ; + rdfs:label "Ско́рость"@ru ; + rdfs:label "מהירות"@he ; + rdfs:label "السرعة"@ar ; + rdfs:label "سرعت/تندی"@fa ; + rdfs:label "गति"@hi ; + rdfs:label "速力"@ja ; + rdfs:label "速度"@zh ; + skos:altLabel "rapidez"@es ; + skos:altLabel "वेग"@hi . + +quantitykind:VentilationRatePerFloorArea + a qudt:QuantityKind ; + dcterms:description "Ventilation Rate is often expressed by the volumetric flowrate of outdoor air introduced to a building. However, ASHRAE now recommends ventilation rates dependent upon floor area."^^qudt:LatexString ; + qudt:applicableUnit unit:L-PER-SEC-M2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Ventilation_(architecture)#Ventilation_rates_for_indoor_air_quality"^^xsd:anyURI ; + qudt:plainTextDescription "Ventilation Rate is often expressed by the volumetric flowrate of outdoor air introduced to a building. However, ASHRAE now recommends ventilation rates dependent upon floor area." ; + rdfs:comment "Applicable units are those of quantitykind:VentilationRatePerFloorArea" ; + rdfs:isDefinedBy ; + rdfs:label "Ventilation Rate per Floor Area"@en . + +quantitykind:VerticalVelocity + a qudt:QuantityKind ; + dcterms:description "The rate at which a body moves upwards at an angle of 90 degrees to the ground. It is the component of a projectile's velocity which is concerned with lifting the projectile."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM-PER-HR ; + qudt:applicableUnit unit:CentiM-PER-KiloYR ; + qudt:applicableUnit unit:CentiM-PER-SEC ; + qudt:applicableUnit unit:CentiM-PER-YR ; + qudt:applicableUnit unit:FT-PER-DAY ; + qudt:applicableUnit unit:FT-PER-HR ; + qudt:applicableUnit unit:FT-PER-MIN ; + qudt:applicableUnit unit:FT-PER-SEC ; + qudt:applicableUnit unit:GigaHZ-M ; + qudt:applicableUnit unit:IN-PER-MIN ; + qudt:applicableUnit unit:IN-PER-SEC ; + qudt:applicableUnit unit:IN-PER-YR ; + qudt:applicableUnit unit:KN ; + qudt:applicableUnit unit:KiloM-PER-DAY ; + qudt:applicableUnit unit:KiloM-PER-HR ; + qudt:applicableUnit unit:KiloM-PER-SEC ; + qudt:applicableUnit unit:M-PER-DAY ; + qudt:applicableUnit unit:M-PER-HR ; + qudt:applicableUnit unit:M-PER-MIN ; + qudt:applicableUnit unit:M-PER-SEC ; + qudt:applicableUnit unit:M-PER-YR ; + qudt:applicableUnit unit:MI-PER-HR ; + qudt:applicableUnit unit:MI-PER-MIN ; + qudt:applicableUnit unit:MI-PER-SEC ; + qudt:applicableUnit unit:MI_N-PER-HR ; + qudt:applicableUnit unit:MI_N-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-MIN ; + qudt:applicableUnit unit:MicroM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-DAY ; + qudt:applicableUnit unit:MilliM-PER-HR ; + qudt:applicableUnit unit:MilliM-PER-MIN ; + qudt:applicableUnit unit:MilliM-PER-SEC ; + qudt:applicableUnit unit:MilliM-PER-YR ; + qudt:applicableUnit unit:YD-PER-HR ; + qudt:applicableUnit unit:YD-PER-MIN ; + qudt:applicableUnit unit:YD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:plainTextDescription "The rate at which a body moves upwards at an angle of 90 degrees to the ground. It is the component of a projectile's velocity which is concerned with lifting the projectile." ; + qudt:symbol "V_{Z}" ; + rdfs:comment "Applicable units are those of quantitykind:Velocity" ; + rdfs:isDefinedBy ; + rdfs:label "Vertical Velocity"@en ; + skos:broader quantitykind:Velocity . + +quantitykind:VideoFrameRate + a qudt:QuantityKind ; + dcterms:description "Frame rate (also known as frame frequency) is the frequency (rate) at which an imaging device produces unique consecutive images called frames. The term applies equally well to computer graphics, video cameras, film cameras, and motion capture systems. Frame rate is most often expressed in frames per second (FPS) and is also expressed in progressive scan monitors as hertz (Hz)."^^qudt:LatexString ; + qudt:applicableUnit unit:FRAME-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Frame_rate"^^xsd:anyURI ; + qudt:plainTextDescription "Frame rate (also known as frame frequency) is the frequency (rate) at which an imaging device produces unique consecutive images called frames. The term applies equally well to computer graphics, video cameras, film cameras, and motion capture systems. Frame rate is most often expressed in frames per second (FPS) and is also expressed in progressive scan monitors as hertz (Hz)." ; + rdfs:comment "Applicable units are those of quantitykind:VideoFrameRate" ; + rdfs:isDefinedBy ; + rdfs:label "Video Frame Rate"@en ; + skos:broader quantitykind:InformationFlowRate . + +quantitykind:Viscosity + a qudt:QuantityKind ; + dcterms:description "Viscosity is a measure of the resistance of a fluid which is being deformed by either shear stress or extensional stress. In general terms it is the resistance of a liquid to flow, or its \"thickness\". Viscosity describes a fluid's internal resistance to flow and may be thought of as a measure of fluid friction. [Wikipedia]. In general conversation or in non-scientific contexts, if someone refers to the viscosity of a fluid, they're likely talking about its dynamic (or absolute) viscosity. However, in engineering or scientific contexts, it's essential to clarify which type of viscosity is being discussed, as the interpretation and use of the data may differ depending on whether one is talking about dynamic or kinematic viscosity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiPOISE ; + qudt:applicableUnit unit:DecaPOISE ; + qudt:applicableUnit unit:GM-PER-CentiM-SEC ; + qudt:applicableUnit unit:KiloGM-PER-M-DAY ; + qudt:applicableUnit unit:KiloGM-PER-M-HR ; + qudt:applicableUnit unit:KiloGM-PER-M-MIN ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC ; + qudt:applicableUnit unit:LB-PER-FT-DAY ; + qudt:applicableUnit unit:LB-PER-FT-HR ; + qudt:applicableUnit unit:LB-PER-FT-MIN ; + qudt:applicableUnit unit:LB-PER-FT-SEC ; + qudt:applicableUnit unit:LB_F-SEC-PER-FT2 ; + qudt:applicableUnit unit:LB_F-SEC-PER-IN2 ; + qudt:applicableUnit unit:MicroPOISE ; + qudt:applicableUnit unit:MilliPA-SEC ; + qudt:applicableUnit unit:N-SEC-PER-M2 ; + qudt:applicableUnit unit:PA-SEC ; + qudt:applicableUnit unit:PDL-SEC-PER-FT2 ; + qudt:applicableUnit unit:PDL-SEC-PER-IN2 ; + qudt:applicableUnit unit:POISE ; + qudt:applicableUnit unit:SLUG-PER-FT-SEC ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Viscosity"^^xsd:anyURI ; + qudt:exactMatch quantitykind:DynamicViscosity ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:plainTextDescription "Viscosity is a measure of the resistance of a fluid which is being deformed by either shear stress or extensional stress. In general terms it is the resistance of a liquid to flow, or its \"thickness\". Viscosity describes a fluid's internal resistance to flow and may be thought of as a measure of fluid friction. [Wikipedia]. In general conversation or in non-scientific contexts, if someone refers to the viscosity of a fluid, they're likely talking about its dynamic (or absolute) viscosity. However, in engineering or scientific contexts, it's essential to clarify which type of viscosity is being discussed, as the interpretation and use of the data may differ depending on whether one is talking about dynamic or kinematic viscosity." ; + rdfs:comment "Applicable units are those of quantitykind:Viscosity" ; + rdfs:isDefinedBy ; + rdfs:label "Viscosity"@en . + +quantitykind:VisibleRadiantEnergy + a qudt:QuantityKind ; + dcterms:description "\"Visible Radiant Energy\", also known as luminous energy, is the energy of electromagnetic waves. It is energy of the particles that are emitted, transferred, or received as radiation."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31892"^^xsd:anyURI ; + qudt:latexDefinition "Q"^^qudt:LatexString ; + qudt:plainTextDescription "\"Visible Radiant Energy\", also known as luminous energy, is the energy of electromagnetic waves. It is energy of the particles that are emitted, transferred, or received as radiation." ; + qudt:symbol "Q" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Visible Radiant Energy"@en ; + skos:broader quantitykind:Energy ; + skos:closeMatch quantitykind:LuminousEnergy . + +quantitykind:VisionThresholds + a qudt:QuantityKind ; + dcterms:description "\"Vision Thresholds\" is an abstract term to refer to a variety of measures for the thresholds of sensitivity of the eye."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_threshold#Vision"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_v}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Vision Thresholds\" is the thresholds of sensitivity of the eye." ; + rdfs:isDefinedBy ; + rdfs:label "Vision Thresholds"@en . + +quantitykind:Voltage + a qudt:QuantityKind ; + dcterms:description """$\\textit{Voltage}$, also referred to as $\\textit{Electric Tension}$, is the difference between electrical potentials of two points. For an electric field within a medium, $U_{ab} = - \\int_{r_a}^{r_b} E . {dr}$, where $E$ is electric field strength. +For an irrotational electric field, the voltage is independent of the path between the two points $a$ and $b$."""^^qudt:LatexString ; + qudt:applicableUnit unit:ExaV ; + qudt:applicableUnit unit:FemtoV ; + qudt:applicableUnit unit:GigaV ; + qudt:applicableUnit unit:KiloV ; + qudt:applicableUnit unit:MegaV ; + qudt:applicableUnit unit:MicroV ; + qudt:applicableUnit unit:MilliV ; + qudt:applicableUnit unit:NanoV ; + qudt:applicableUnit unit:PetaV ; + qudt:applicableUnit unit:PicoV ; + qudt:applicableUnit unit:PlanckVolt ; + qudt:applicableUnit unit:TeraV ; + qudt:applicableUnit unit:V ; + qudt:applicableUnit unit:V_Ab ; + qudt:applicableUnit unit:V_Stat ; + qudt:exactMatch quantitykind:ElectricPotential ; + qudt:exactMatch quantitykind:ElectricPotentialDifference ; + qudt:exactMatch quantitykind:EnergyPerElectricCharge ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD237" ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD237"^^xsd:anyURI ; + qudt:latexDefinition "$U_{ab} = V_a - V_b$, where $V_a$ and $V_b$ are electric potentials at points $a$ and $b$, respectively."^^qudt:LatexString ; + qudt:latexSymbol "$U_{ab}$"^^qudt:LatexString ; + qudt:symbol "U" ; + rdfs:comment "Applicable units are those of quantitykind:Voltage" ; + rdfs:isDefinedBy ; + rdfs:label "Voltage"@en . + +quantitykind:VoltagePhasor + a qudt:QuantityKind ; + dcterms:description "\"Voltage Phasor\" is a representation of voltage as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-26"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "When $u = \\hat{U} \\cos{(\\omega t + \\alpha)}$, where $u$ is the voltage, $\\omega$ is angular frequency, $t$ is time, and $\\alpha$ is initial phase, then $\\underline{U} = Ue^{ja}$."^^qudt:LatexString ; + qudt:latexSymbol "$\\underline{U}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Voltage Phasor\" is a representation of voltage as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one." ; + rdfs:isDefinedBy ; + rdfs:label "Voltage Phasor"@en . + +quantitykind:VoltageRatio + a qudt:QuantityKind ; + qudt:applicableUnit unit:PERCENT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvDenominator qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:qkdvNumerator qkdv:A0E-1L2I0M1H0T-3D0 ; + rdfs:comment "Applicable units are those of quantitykind:VoltageRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Voltage Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:Volume + a qudt:QuantityKind ; + dcterms:description "The volume of a solid object is the three-dimensional concept of how much space it occupies, often quantified numerically. One-dimensional figures (such as lines) and two-dimensional shapes (such as squares) are assigned zero volume in the three-dimensional space."^^qudt:LatexString ; + qudt:applicableUnit unit:AC-FT ; + qudt:applicableUnit unit:AC-FT_US ; + qudt:applicableUnit unit:ANGSTROM3 ; + qudt:applicableUnit unit:BBL ; + qudt:applicableUnit unit:BBL_UK_PET ; + qudt:applicableUnit unit:BU_US_DRY ; + qudt:applicableUnit unit:CentiM3 ; + qudt:applicableUnit unit:DecaL ; + qudt:applicableUnit unit:DecaM3 ; + qudt:applicableUnit unit:DeciL ; + qudt:applicableUnit unit:DeciM3 ; + qudt:applicableUnit unit:FBM ; + qudt:applicableUnit unit:FT3 ; + qudt:applicableUnit unit:FemtoL ; + qudt:applicableUnit unit:GI_UK ; + qudt:applicableUnit unit:GI_US ; + qudt:applicableUnit unit:GT ; + qudt:applicableUnit unit:HectoL ; + qudt:applicableUnit unit:IN3 ; + qudt:applicableUnit unit:KiloCubicFT ; + qudt:applicableUnit unit:KiloL ; + qudt:applicableUnit unit:L ; + qudt:applicableUnit unit:M3 ; + qudt:applicableUnit unit:MI3 ; + qudt:applicableUnit unit:MI_UK3 ; + qudt:applicableUnit unit:MegaL ; + qudt:applicableUnit unit:MicroL ; + qudt:applicableUnit unit:MicroM3 ; + qudt:applicableUnit unit:MilliL ; + qudt:applicableUnit unit:MilliM3 ; + qudt:applicableUnit unit:NT ; + qudt:applicableUnit unit:NanoL ; + qudt:applicableUnit unit:OZ_VOL_UK ; + qudt:applicableUnit unit:PINT ; + qudt:applicableUnit unit:PINT_UK ; + qudt:applicableUnit unit:PK_UK ; + qudt:applicableUnit unit:PicoL ; + qudt:applicableUnit unit:PlanckVolume ; + qudt:applicableUnit unit:QT_UK ; + qudt:applicableUnit unit:QT_US ; + qudt:applicableUnit unit:STANDARD ; + qudt:applicableUnit unit:STR ; + qudt:applicableUnit unit:TBSP ; + qudt:applicableUnit unit:TON_Register ; + qudt:applicableUnit unit:TON_SHIPPING_UK ; + qudt:applicableUnit unit:TON_SHIPPING_US ; + qudt:applicableUnit unit:TSP ; + qudt:applicableUnit unit:YD3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Volume"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD238" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD238"^^xsd:anyURI ; + qudt:plainTextDescription "The volume of a solid object is the three-dimensional concept of how much space it occupies, often quantified numerically. One-dimensional figures (such as lines) and two-dimensional shapes (such as squares) are assigned zero volume in the three-dimensional space." ; + qudt:siExactMatch si-quantity:VOLU ; + rdfs:comment "Applicable units are those of quantitykind:Volume" ; + rdfs:isDefinedBy ; + rdfs:label "Volume"@en . + +quantitykind:VolumeDensityOfCharge + a qudt:QuantityKind ; + dcterms:description "volume density of the electric charge Q present in a volume V"@en ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:plainTextDescription "räumliche Dichte der in einem Raumgebiet vom Volumen V enthaltenen elektrischen Ladung Q"@de ; + qudt:symbol "0173-1#Z4-BAJ368#002" ; + rdfs:isDefinedBy ; + rdfs:label "volume density of charge"@en-US . + +quantitykind:VolumeFlowRate + a qudt:QuantityKind ; + dcterms:description "Volumetric Flow Rate, (also known as volume flow rate, rate of fluid flow or volume velocity) is the volume of fluid which passes through a given surface per unit time."^^qudt:LatexString ; + qudt:applicableUnit unit:BBL_UK_PET-PER-DAY ; + qudt:applicableUnit unit:BBL_UK_PET-PER-HR ; + qudt:applicableUnit unit:BBL_UK_PET-PER-MIN ; + qudt:applicableUnit unit:BBL_UK_PET-PER-SEC ; + qudt:applicableUnit unit:BBL_US-PER-DAY ; + qudt:applicableUnit unit:BBL_US-PER-MIN ; + qudt:applicableUnit unit:BBL_US_PET-PER-HR ; + qudt:applicableUnit unit:BBL_US_PET-PER-SEC ; + qudt:applicableUnit unit:BU_UK-PER-DAY ; + qudt:applicableUnit unit:BU_UK-PER-HR ; + qudt:applicableUnit unit:BU_UK-PER-MIN ; + qudt:applicableUnit unit:BU_UK-PER-SEC ; + qudt:applicableUnit unit:BU_US_DRY-PER-DAY ; + qudt:applicableUnit unit:BU_US_DRY-PER-HR ; + qudt:applicableUnit unit:BU_US_DRY-PER-MIN ; + qudt:applicableUnit unit:BU_US_DRY-PER-SEC ; + qudt:applicableUnit unit:CentiM3-PER-DAY ; + qudt:applicableUnit unit:CentiM3-PER-HR ; + qudt:applicableUnit unit:CentiM3-PER-MIN ; + qudt:applicableUnit unit:CentiM3-PER-SEC ; + qudt:applicableUnit unit:DeciM3-PER-DAY ; + qudt:applicableUnit unit:DeciM3-PER-HR ; + qudt:applicableUnit unit:DeciM3-PER-MIN ; + qudt:applicableUnit unit:DeciM3-PER-SEC ; + qudt:applicableUnit unit:FT3-PER-DAY ; + qudt:applicableUnit unit:FT3-PER-HR ; + qudt:applicableUnit unit:FT3-PER-MIN ; + qudt:applicableUnit unit:FT3-PER-SEC ; + qudt:applicableUnit unit:GAL_UK-PER-DAY ; + qudt:applicableUnit unit:GAL_UK-PER-HR ; + qudt:applicableUnit unit:GAL_UK-PER-MIN ; + qudt:applicableUnit unit:GAL_UK-PER-SEC ; + qudt:applicableUnit unit:GAL_US-PER-DAY ; + qudt:applicableUnit unit:GAL_US-PER-HR ; + qudt:applicableUnit unit:GAL_US-PER-MIN ; + qudt:applicableUnit unit:GAL_US-PER-SEC ; + qudt:applicableUnit unit:GI_UK-PER-DAY ; + qudt:applicableUnit unit:GI_UK-PER-HR ; + qudt:applicableUnit unit:GI_UK-PER-MIN ; + qudt:applicableUnit unit:GI_UK-PER-SEC ; + qudt:applicableUnit unit:GI_US-PER-DAY ; + qudt:applicableUnit unit:GI_US-PER-HR ; + qudt:applicableUnit unit:GI_US-PER-MIN ; + qudt:applicableUnit unit:GI_US-PER-SEC ; + qudt:applicableUnit unit:IN3-PER-HR ; + qudt:applicableUnit unit:IN3-PER-MIN ; + qudt:applicableUnit unit:IN3-PER-SEC ; + qudt:applicableUnit unit:KiloL-PER-HR ; + qudt:applicableUnit unit:L-PER-DAY ; + qudt:applicableUnit unit:L-PER-HR ; + qudt:applicableUnit unit:L-PER-MIN ; + qudt:applicableUnit unit:L-PER-SEC ; + qudt:applicableUnit unit:M3-PER-DAY ; + qudt:applicableUnit unit:M3-PER-HR ; + qudt:applicableUnit unit:M3-PER-MIN ; + qudt:applicableUnit unit:M3-PER-SEC ; + qudt:applicableUnit unit:M3-PER-YR ; + qudt:applicableUnit unit:MilliL-PER-DAY ; + qudt:applicableUnit unit:MilliL-PER-HR ; + qudt:applicableUnit unit:MilliL-PER-MIN ; + qudt:applicableUnit unit:MilliL-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_US-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_US-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_US-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_US-PER-SEC ; + qudt:applicableUnit unit:PINT_UK-PER-DAY ; + qudt:applicableUnit unit:PINT_UK-PER-HR ; + qudt:applicableUnit unit:PINT_UK-PER-MIN ; + qudt:applicableUnit unit:PINT_UK-PER-SEC ; + qudt:applicableUnit unit:PINT_US-PER-DAY ; + qudt:applicableUnit unit:PINT_US-PER-HR ; + qudt:applicableUnit unit:PINT_US-PER-MIN ; + qudt:applicableUnit unit:PINT_US-PER-SEC ; + qudt:applicableUnit unit:PK_UK-PER-DAY ; + qudt:applicableUnit unit:PK_UK-PER-HR ; + qudt:applicableUnit unit:PK_UK-PER-MIN ; + qudt:applicableUnit unit:PK_UK-PER-SEC ; + qudt:applicableUnit unit:PK_US_DRY-PER-DAY ; + qudt:applicableUnit unit:PK_US_DRY-PER-HR ; + qudt:applicableUnit unit:PK_US_DRY-PER-MIN ; + qudt:applicableUnit unit:PK_US_DRY-PER-SEC ; + qudt:applicableUnit unit:QT_UK-PER-DAY ; + qudt:applicableUnit unit:QT_UK-PER-HR ; + qudt:applicableUnit unit:QT_UK-PER-MIN ; + qudt:applicableUnit unit:QT_UK-PER-SEC ; + qudt:applicableUnit unit:QT_US-PER-DAY ; + qudt:applicableUnit unit:QT_US-PER-HR ; + qudt:applicableUnit unit:QT_US-PER-MIN ; + qudt:applicableUnit unit:QT_US-PER-SEC ; + qudt:applicableUnit unit:YD3-PER-DAY ; + qudt:applicableUnit unit:YD3-PER-HR ; + qudt:applicableUnit unit:YD3-PER-MIN ; + qudt:applicableUnit unit:YD3-PER-SEC ; + qudt:exactMatch quantitykind:VolumePerTime ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD239" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Volumetric_flow_rate"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD239"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$q_V = \\frac{dV}{dt}$, where $V$ is volume and $t$ is time."^^qudt:LatexString ; + qudt:plainTextDescription "Volumetric Flow Rate, (also known as volume flow rate, rate of fluid flow or volume velocity) is the volume of fluid which passes through a given surface per unit time." ; + qudt:symbol "q_V" ; + rdfs:comment "Applicable units are those of quantitykind:VolumeFlowRate" ; + rdfs:isDefinedBy ; + rdfs:label "Volume Flow Rate"@en . + +quantitykind:VolumeFlowRate_SurfaceRelated + a qudt:QuantityKind ; + qudt:applicableUnit unit:M3-PER-SEC-M2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:iec61360Code "0112/2///62720#UAD183" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD183"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:VolumeFlowRate_SurfaceRelated" ; + rdfs:isDefinedBy ; + rdfs:label "surface‑related volume flow rate" . + +quantitykind:VolumeFlowRatio + a qudt:QuantityKind ; + dcterms:description """Volume flow ratio is commonly used in fluid dynamics and engineering, + referring to the ratio of the flow rates of two or more fluid streams within a system. In HVAC systems, + the flow ratio could compare the amount of fresh air introduced to the amount of recirculated air.""" ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:plainTextDescription """Volume flow ratio is commonly used in fluid dynamics and engineering, + referring to the ratio of the flow rates of two or more fluid streams within a system. In HVAC systems, + the flow ratio could compare the amount of fresh air introduced to the amount of recirculated air.""" ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Volume Flow Ratio"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:VolumeFraction + a qudt:QuantityKind ; + dcterms:description "\"Volume Fraction\" is the volume of a constituent divided by the volume of all constituents of the mixture prior to mixing. Volume fraction is also called volume concentration in ideal solutions where the volumes of the constituents are additive (the volume of the solution is equal to the sum of the volumes of its ingredients)."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM3-PER-CentiM3 ; + qudt:applicableUnit unit:CentiM3-PER-M3 ; + qudt:applicableUnit unit:DeciM3-PER-M3 ; + qudt:applicableUnit unit:L-PER-L ; + qudt:applicableUnit unit:M3-PER-M3 ; + qudt:applicableUnit unit:MicroL-PER-L ; + qudt:applicableUnit unit:MicroM3-PER-M3 ; + qudt:applicableUnit unit:MicroM3-PER-MilliL ; + qudt:applicableUnit unit:MilliL-PER-L ; + qudt:applicableUnit unit:MilliL-PER-M3 ; + qudt:applicableUnit unit:MilliM3-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:iec61360Code "0112/2///62720#UAD240" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Volume_fraction"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD240"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ; + qudt:latexDefinition "$\\varphi_B = \\frac{x_B V_{m,B}^*}{\\sum x_i V_{m,i}^*}$, where $V_{m,i}^*$ is the molar volume of the pure substances $i$ at the same temperature and pressure, $x_i$ denotes the amount-of-substance fraction of substance $i$, and $\\sum$ denotes summation over all substances $i$."^^qudt:LatexString ; + qudt:latexSymbol "$\\varphi_B$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Volume Fraction\" is the volume of a constituent divided by the volume of all constituents of the mixture prior to mixing. Volume fraction is also called volume concentration in ideal solutions where the volumes of the constituents are additive (the volume of the solution is equal to the sum of the volumes of its ingredients)." ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:VolumeFraction" ; + rdfs:isDefinedBy ; + rdfs:label "Volume Fraction"@en ; + skos:broader quantitykind:DimensionlessRatio . + +quantitykind:VolumeOrSectionModulus + a qudt:QuantityKind ; + dcterms:description "domain completely enclosed by a surface, which can be determined for Cartesian coordinates by integration according to the following equation: V = ∫∫∫ dx dy dz or for a homogeneous material, it is the ratio of the moment of inertia and the distance to any point on the neutral axis at which the stress is to be calculated"@en ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:plainTextDescription "der von einer Oberfläche eingeschlossene gesamte Rauminhalt, der für kartesische Koordinaten durch Integration nach folgender Gleichung ermittelt werden kann: V = ∫∫∫ dx dy dz oder bei einem homogenen Werkstoff Quotient Trägheitsmoment dividiert durch den Abstand zu einem Punkt auf der neutralen Achse, bei dem die Belastung berechnet werden soll"@de ; + qudt:symbol "0173-1#Z4-BAJ251#002" ; + rdfs:isDefinedBy ; + rdfs:label "volume or section modulus"@en-US . + +quantitykind:VolumePerArea + a qudt:QuantityKind ; + qudt:applicableUnit unit:M3-PER-HA ; + qudt:applicableUnit unit:M3-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:VolumePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Volume per Unit Area"@en . + +quantitykind:VolumePerTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:BBL_UK_PET-PER-DAY ; + qudt:applicableUnit unit:BBL_UK_PET-PER-HR ; + qudt:applicableUnit unit:BBL_UK_PET-PER-MIN ; + qudt:applicableUnit unit:BBL_UK_PET-PER-SEC ; + qudt:applicableUnit unit:BBL_US-PER-DAY ; + qudt:applicableUnit unit:BBL_US-PER-MIN ; + qudt:applicableUnit unit:BBL_US_PET-PER-HR ; + qudt:applicableUnit unit:BBL_US_PET-PER-SEC ; + qudt:applicableUnit unit:BU_UK-PER-DAY ; + qudt:applicableUnit unit:BU_UK-PER-HR ; + qudt:applicableUnit unit:BU_UK-PER-MIN ; + qudt:applicableUnit unit:BU_UK-PER-SEC ; + qudt:applicableUnit unit:BU_US_DRY-PER-DAY ; + qudt:applicableUnit unit:BU_US_DRY-PER-HR ; + qudt:applicableUnit unit:BU_US_DRY-PER-MIN ; + qudt:applicableUnit unit:BU_US_DRY-PER-SEC ; + qudt:applicableUnit unit:CentiM3-PER-DAY ; + qudt:applicableUnit unit:CentiM3-PER-HR ; + qudt:applicableUnit unit:CentiM3-PER-MIN ; + qudt:applicableUnit unit:CentiM3-PER-SEC ; + qudt:applicableUnit unit:DeciM3-PER-DAY ; + qudt:applicableUnit unit:DeciM3-PER-HR ; + qudt:applicableUnit unit:DeciM3-PER-MIN ; + qudt:applicableUnit unit:DeciM3-PER-SEC ; + qudt:applicableUnit unit:FT3-PER-DAY ; + qudt:applicableUnit unit:FT3-PER-HR ; + qudt:applicableUnit unit:FT3-PER-MIN ; + qudt:applicableUnit unit:FT3-PER-SEC ; + qudt:applicableUnit unit:GAL_UK-PER-DAY ; + qudt:applicableUnit unit:GAL_UK-PER-HR ; + qudt:applicableUnit unit:GAL_UK-PER-MIN ; + qudt:applicableUnit unit:GAL_UK-PER-SEC ; + qudt:applicableUnit unit:GAL_US-PER-DAY ; + qudt:applicableUnit unit:GAL_US-PER-HR ; + qudt:applicableUnit unit:GAL_US-PER-MIN ; + qudt:applicableUnit unit:GAL_US-PER-SEC ; + qudt:applicableUnit unit:GI_UK-PER-DAY ; + qudt:applicableUnit unit:GI_UK-PER-HR ; + qudt:applicableUnit unit:GI_UK-PER-MIN ; + qudt:applicableUnit unit:GI_UK-PER-SEC ; + qudt:applicableUnit unit:GI_US-PER-DAY ; + qudt:applicableUnit unit:GI_US-PER-HR ; + qudt:applicableUnit unit:GI_US-PER-MIN ; + qudt:applicableUnit unit:GI_US-PER-SEC ; + qudt:applicableUnit unit:IN3-PER-HR ; + qudt:applicableUnit unit:IN3-PER-MIN ; + qudt:applicableUnit unit:IN3-PER-SEC ; + qudt:applicableUnit unit:KiloL-PER-HR ; + qudt:applicableUnit unit:L-PER-DAY ; + qudt:applicableUnit unit:L-PER-HR ; + qudt:applicableUnit unit:L-PER-MIN ; + qudt:applicableUnit unit:L-PER-SEC ; + qudt:applicableUnit unit:M3-PER-DAY ; + qudt:applicableUnit unit:M3-PER-HR ; + qudt:applicableUnit unit:M3-PER-MIN ; + qudt:applicableUnit unit:M3-PER-SEC ; + qudt:applicableUnit unit:M3-PER-YR ; + qudt:applicableUnit unit:MilliL-PER-DAY ; + qudt:applicableUnit unit:MilliL-PER-HR ; + qudt:applicableUnit unit:MilliL-PER-MIN ; + qudt:applicableUnit unit:MilliL-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_UK-PER-SEC ; + qudt:applicableUnit unit:OZ_VOL_US-PER-DAY ; + qudt:applicableUnit unit:OZ_VOL_US-PER-HR ; + qudt:applicableUnit unit:OZ_VOL_US-PER-MIN ; + qudt:applicableUnit unit:OZ_VOL_US-PER-SEC ; + qudt:applicableUnit unit:PINT_UK-PER-DAY ; + qudt:applicableUnit unit:PINT_UK-PER-HR ; + qudt:applicableUnit unit:PINT_UK-PER-MIN ; + qudt:applicableUnit unit:PINT_UK-PER-SEC ; + qudt:applicableUnit unit:PINT_US-PER-DAY ; + qudt:applicableUnit unit:PINT_US-PER-HR ; + qudt:applicableUnit unit:PINT_US-PER-MIN ; + qudt:applicableUnit unit:PINT_US-PER-SEC ; + qudt:applicableUnit unit:PK_UK-PER-DAY ; + qudt:applicableUnit unit:PK_UK-PER-HR ; + qudt:applicableUnit unit:PK_UK-PER-MIN ; + qudt:applicableUnit unit:PK_UK-PER-SEC ; + qudt:applicableUnit unit:PK_US_DRY-PER-DAY ; + qudt:applicableUnit unit:PK_US_DRY-PER-HR ; + qudt:applicableUnit unit:PK_US_DRY-PER-MIN ; + qudt:applicableUnit unit:PK_US_DRY-PER-SEC ; + qudt:applicableUnit unit:QT_UK-PER-DAY ; + qudt:applicableUnit unit:QT_UK-PER-HR ; + qudt:applicableUnit unit:QT_UK-PER-MIN ; + qudt:applicableUnit unit:QT_UK-PER-SEC ; + qudt:applicableUnit unit:QT_US-PER-DAY ; + qudt:applicableUnit unit:QT_US-PER-HR ; + qudt:applicableUnit unit:QT_US-PER-MIN ; + qudt:applicableUnit unit:QT_US-PER-SEC ; + qudt:applicableUnit unit:YD3-PER-DAY ; + qudt:applicableUnit unit:YD3-PER-HR ; + qudt:applicableUnit unit:YD3-PER-MIN ; + qudt:applicableUnit unit:YD3-PER-SEC ; + qudt:exactMatch quantitykind:VolumeFlowRate ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + rdfs:comment "Applicable units are those of quantitykind:VolumePerTime" ; + rdfs:isDefinedBy ; + rdfs:label "Volume per Time"@en . + +quantitykind:VolumeStrain + a qudt:QuantityKind ; + dcterms:description "Volume, or volumetric, Strain, or dilatation (the relative variation of the volume) is the trace of the tensor $\\vartheta$."^^qudt:LatexString ; + qudt:applicableUnit unit:FRACTION ; + qudt:applicableUnit unit:GR ; + qudt:applicableUnit unit:NUM ; + qudt:applicableUnit unit:PERCENT ; + qudt:applicableUnit unit:PERMITTIVITY_REL ; + qudt:applicableUnit unit:PPB ; + qudt:applicableUnit unit:PPM ; + qudt:applicableUnit unit:PPQ ; + qudt:applicableUnit unit:PPT ; + qudt:applicableUnit unit:PPTH ; + qudt:applicableUnit unit:PPTM ; + qudt:applicableUnit unit:PSU ; + qudt:applicableUnit unit:UNITLESS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$\\vartheta = \\frac{\\Delta V}{V_0}$, where $\\Delta V$ is the increase in volume and $V_0$ is the volume in a reference state to be specified."^^qudt:LatexString ; + qudt:latexSymbol "$\\vartheta$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio" ; + rdfs:isDefinedBy ; + rdfs:label "Volume Strain"@en ; + skos:broader quantitykind:Strain . + +quantitykind:VolumeThermalExpansion + a qudt:QuantityKind ; + dcterms:description """When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. + +Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: + + * linear thermal expansion + * area thermal expansion + * volumetric thermal expansion + +These characteristics are closely related. The volumetric thermal expansion coefficient can be defined for both liquids and solids. The linear thermal expansion can only be defined for solids, and is common in engineering applications. + +Some substances expand when cooled, such as freezing water, so they have negative thermal expansion coefficients. [Wikipedia]""" ; + qudt:applicableUnit unit:CentiM3-PER-K ; + qudt:applicableUnit unit:FT3-PER-DEG_F ; + qudt:applicableUnit unit:L-PER-K ; + qudt:applicableUnit unit:M3-PER-K ; + qudt:applicableUnit unit:MilliL-PER-K ; + qudt:applicableUnit unit:YD3-PER-DEG_F ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:plainTextDescription """When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. + +Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: + + * linear thermal expansion + * area thermal expansion + * volumetric thermal expansion + +These characteristics are closely related. The volumetric thermal expansion coefficient can be defined for both liquids and solids. The linear thermal expansion can only be defined for solids, and is common in engineering applications. + +Some substances expand when cooled, such as freezing water, so they have negative thermal expansion coefficients. [Wikipedia]""" ; + rdfs:comment "Applicable units are those of quantitykind:VolumeThermalExpansion" ; + rdfs:isDefinedBy ; + rdfs:label "Volume Thermal Expansion"@en . + +quantitykind:VolumetricBitDensity + a qudt:QuantityKind ; + qudt:applicableUnit unit:BIT-PER-M3 ; + qudt:applicableUnit unit:ExbiBIT-PER-M3 ; + qudt:applicableUnit unit:GibiBIT-PER-M3 ; + qudt:applicableUnit unit:KibiBIT-PER-M3 ; + qudt:applicableUnit unit:MebiBIT-PER-M3 ; + qudt:applicableUnit unit:PebiBIT-PER-M3 ; + qudt:applicableUnit unit:TebiBIT-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:iec61360Code "0112/2///62720#UAD241" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD241"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:VolumetricBitDensity" ; + rdfs:isDefinedBy ; + rdfs:label "volumic bit density" . + +quantitykind:VolumetricElectricCharge + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD242" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD242"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "volumic electric charge" . + +quantitykind:VolumetricEntityDensity + a qudt:QuantityKind ; + dcterms:description "quantity whose value is inversely proportional to the volume value"@en ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Volumenwert verhält"@de ; + qudt:symbol "0173-1#Z4-BAJ377#003" ; + rdfs:isDefinedBy ; + rdfs:label "volumetric entity density"@en-US . + +quantitykind:VolumetricFlux + a qudt:QuantityKind ; + dcterms:description "In fluid dynamics, the volumetric flux is the rate of volume flow across a unit area (m3·s−1·m−2).[Wikipedia]"^^qudt:LatexString ; + qudt:applicableUnit unit:MilliL-PER-CentiM2-MIN ; + qudt:applicableUnit unit:MilliL-PER-CentiM2-SEC ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Volumetric_flux"^^xsd:anyURI ; + qudt:plainTextDescription "In fluid dynamics, the volumetric flux is the rate of volume flow across a unit area (m3·s−1·m−2).[Wikipedia]" ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T-1D0 ; + rdfs:comment "Applicable units are those of quantitykind:VolumetricFlux" ; + rdfs:isDefinedBy ; + rdfs:label "Volumetric Flux"@en . + +quantitykind:VolumetricHeatCapacity + a qudt:QuantityKind ; + dcterms:description "$\\textit{Volumetric Heat Capacity (VHC)}$, also termed $\\textit{volume-specific heat capacity}$, describes the ability of a given volume of a substance to store internal energy while undergoing a given temperature change, but without undergoing a phase transition. It is different from specific heat capacity in that the VHC is a $\\textit{per unit volume}$ measure of the relationship between thermal energy and temperature of a material, while the specific heat is a $\\textit{per unit mass}$ measure (or occasionally per molar quantity of the material)."^^qudt:LatexString ; + qudt:applicableUnit unit:CAL_TH-PER-CentiM3-K ; + qudt:applicableUnit unit:J-PER-CentiM3-K ; + qudt:applicableUnit unit:J-PER-M3-K ; + qudt:applicableUnit unit:LB_F-PER-IN2-DEG_F ; + qudt:applicableUnit unit:MilliBAR-PER-K ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Volumetric_heat_capacity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Volumetric_heat_capacity"^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:VolumetricHeatCapacity" ; + rdfs:isDefinedBy ; + rdfs:label "Volumetric Heat Capacity"@en . + +quantitykind:VolumetricOutputPower + a qudt:QuantityKind ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:iec61360Code "0112/2///62720#UAD243" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD243"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "volumic output power" . + +quantitykind:VolumicAmountOfSubstance + a qudt:QuantityKind ; + dcterms:description "quantity proportional to the number of single particles of a defined type present in a given sample, divided by the related volume of this sample"@en ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "Größe proportional der Anzahl von Einzelteilchen festgelegter Art, die in einer gegebenen Substanzprobe enthalten sind, dividiert durch das zugehörige Volumen dieser Substanzprobe"@de ; + qudt:symbol "0173-1#Z4-BAJ402#002" ; + rdfs:isDefinedBy ; + rdfs:label "volumic amount of substance"@en-US . + +quantitykind:VolumicDataQuantity + a qudt:QuantityKind ; + dcterms:description "amount of data, which is usually dependent on the respective complexity of the information or its coding procedure, divided by the related volume"@en ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch das zugehörige Volumen"@de ; + qudt:symbol "0173-1#Z4-BAJ401#002" ; + rdfs:isDefinedBy ; + rdfs:label "volumic data quantity"@en-US . + +quantitykind:VolumicElectromagneticEnergy + a qudt:QuantityKind ; + dcterms:description "$\\textit{Volumic Electromagnetic Energy}$, also known as the $\\textit{Electromagnetic Energy Density}$, is the energy associated with an electromagnetic field, per unit volume of the field."^^qudt:LatexString ; + qudt:applicableUnit unit:J-PER-M3 ; + qudt:exactMatch quantitykind:ElectromagneticEnergyDensity ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-64"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ; + qudt:latexDefinition "$w = (1/2) ( \\mathbf{E} \\cdot \\mathbf{D} + \\mathbf{B} \\cdot \\mathbf{H})$, where $\\mathbf{E}$ is electric field strength, $\\mathbf{D}$ is electric flux density, $\\mathbf{M}$ is magnetic flux density, and $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ; + qudt:latexSymbol "$w$"^^qudt:LatexString ; + rdfs:comment "Applicable units are those of quantitykind:VolumicElectromagneticEnergy" ; + rdfs:isDefinedBy ; + rdfs:label "Volumic Electromagnetic Energy"@en ; + rdfs:seeAlso quantitykind:ElectricFieldStrength ; + rdfs:seeAlso quantitykind:ElectricFluxDensity ; + rdfs:seeAlso quantitykind:MagneticFieldStrength_H ; + rdfs:seeAlso quantitykind:MagneticFluxDensity . + +quantitykind:VolumicOutput + a qudt:QuantityKind ; + dcterms:description "ratio released power divided by volume"@en ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:plainTextDescription "Quotient freigesetzte Wärmeleistung durch Volumen"@de ; + qudt:symbol "0173-1#Z4-BAJ366#003" ; + rdfs:isDefinedBy ; + rdfs:label "volumic output"@en-US . + +quantitykind:Vorticity + a qudt:QuantityKind ; + dcterms:description "In the simplest sense, vorticity is the tendency for elements of a fluid to \"spin.\" More formally, vorticity can be related to the amount of \"circulation\" or \"rotation\" (or more strictly, the local angular rate of rotation) in a fluid. The average vorticity in a small region of fluid flow is equal to the circulation C around the boundary of the small region, divided by the area A of the small region. Mathematically, vorticity is a vector field and is defined as the curl of the velocity field."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG-PER-HR ; + qudt:applicableUnit unit:DEG-PER-MIN ; + qudt:applicableUnit unit:DEG-PER-SEC ; + qudt:applicableUnit unit:PlanckFrequency_Ang ; + qudt:applicableUnit unit:RAD-PER-HR ; + qudt:applicableUnit unit:RAD-PER-MIN ; + qudt:applicableUnit unit:RAD-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:latexSymbol "$\\omega$"^^qudt:LatexString ; + qudt:plainTextDescription "In the simplest sense, vorticity is the tendency for elements of a fluid to \"spin.\" More formally, vorticity can be related to the amount of \"circulation\" or \"rotation\" (or more strictly, the local angular rate of rotation) in a fluid. The average vorticity in a small region of fluid flow is equal to the circulation C around the boundary of the small region, divided by the area A of the small region. Mathematically, vorticity is a vector field and is defined as the curl of the velocity field." ; + rdfs:comment "Applicable units are those of quantitykind:AngularVelocity" ; + rdfs:isDefinedBy ; + rdfs:label "Vorticity"@en ; + skos:broader quantitykind:AngularVelocity . + +quantitykind:WarmReceptorThreshold + a qudt:QuantityKind ; + dcterms:description "\"Warm Receptor Threshold\" is the threshold of warm-sensitive free nerve-ending."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:latexSymbol "$\\overline{T_w}$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Warm Receptor Threshold\" is the threshold of warm-sensitive free nerve-ending." ; + rdfs:isDefinedBy ; + rdfs:label "Warm Receptor Threshold"@en . + +quantitykind:WarpingConstant + a qudt:QuantityKind ; + dcterms:description "The \"Warping Constant\" is a measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m⁶."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiM6 ; + qudt:applicableUnit unit:M6 ; + qudt:hasDimensionVector qkdv:A0E0L6I0M0H0T0D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcwarpingconstantmeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "The \"Warping Constant\" is a measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m⁶." ; + rdfs:comment "Applicable units are those of quantitykind:WarpingConstant" ; + rdfs:isDefinedBy ; + rdfs:label "Warping Constant"@en . + +quantitykind:WarpingMoment + a qudt:QuantityKind ; + dcterms:description "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kNm²."^^qudt:LatexString ; + qudt:applicableUnit unit:KiloN-M2 ; + qudt:applicableUnit unit:N-M2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcwarpingmomentmeasure.htm"^^xsd:anyURI ; + qudt:plainTextDescription "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kNm²." ; + rdfs:comment "Applicable units are those of quantitykind:WarpingMoment" ; + rdfs:isDefinedBy ; + rdfs:label "Warping Moment"@en . + +quantitykind:WaterHorsepower + a qudt:QuantityKind ; + dcterms:description "No pump can convert all of its mechanical power into water power. Mechanical power is lost in the pumping process due to friction losses and other physical losses. It is because of these losses that the horsepower going into the pump has to be greater than the water horsepower leaving the pump. The efficiency of any given pump is defined as the ratio of the water horsepower out of the pump compared to the mechanical horsepower into the pump."^^qudt:LatexString ; + qudt:applicableUnit unit:BAR-L-PER-SEC ; + qudt:applicableUnit unit:BAR-M3-PER-SEC ; + qudt:applicableUnit unit:BTU_IT-PER-HR ; + qudt:applicableUnit unit:BTU_IT-PER-SEC ; + qudt:applicableUnit unit:ERG-PER-SEC ; + qudt:applicableUnit unit:ExaJ-PER-SEC ; + qudt:applicableUnit unit:ExaW ; + qudt:applicableUnit unit:FT-LB_F-PER-HR ; + qudt:applicableUnit unit:FT-LB_F-PER-MIN ; + qudt:applicableUnit unit:FT-LB_F-PER-SEC ; + qudt:applicableUnit unit:GigaJ-PER-HR ; + qudt:applicableUnit unit:GigaJ-PER-SEC ; + qudt:applicableUnit unit:GigaW ; + qudt:applicableUnit unit:HP ; + qudt:applicableUnit unit:HP_Boiler ; + qudt:applicableUnit unit:HP_Brake ; + qudt:applicableUnit unit:HP_Electric ; + qudt:applicableUnit unit:HP_Metric ; + qudt:applicableUnit unit:HectoPA-L-PER-SEC ; + qudt:applicableUnit unit:HectoPA-M3-PER-SEC ; + qudt:applicableUnit unit:J-PER-DAY ; + qudt:applicableUnit unit:J-PER-HR ; + qudt:applicableUnit unit:J-PER-MIN ; + qudt:applicableUnit unit:J-PER-SEC ; + qudt:applicableUnit unit:KiloBTU_IT-PER-HR ; + qudt:applicableUnit unit:KiloCAL-PER-MIN ; + qudt:applicableUnit unit:KiloCAL-PER-SEC ; + qudt:applicableUnit unit:KiloGM_F-M-PER-SEC ; + qudt:applicableUnit unit:KiloJ-PER-DAY ; + qudt:applicableUnit unit:KiloJ-PER-HR ; + qudt:applicableUnit unit:KiloJ-PER-MIN ; + qudt:applicableUnit unit:KiloJ-PER-SEC ; + qudt:applicableUnit unit:KiloW ; + qudt:applicableUnit unit:MegaBTU_IT-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-HR ; + qudt:applicableUnit unit:MegaJ-PER-SEC ; + qudt:applicableUnit unit:MegaPA-L-PER-SEC ; + qudt:applicableUnit unit:MegaPA-M3-PER-SEC ; + qudt:applicableUnit unit:MegaW ; + qudt:applicableUnit unit:MicroJ-PER-SEC ; + qudt:applicableUnit unit:MicroW ; + qudt:applicableUnit unit:MilliBAR-L-PER-SEC ; + qudt:applicableUnit unit:MilliBAR-M3-PER-SEC ; + qudt:applicableUnit unit:MilliJ-PER-SEC ; + qudt:applicableUnit unit:MilliW ; + qudt:applicableUnit unit:NanoJ-PER-SEC ; + qudt:applicableUnit unit:NanoW ; + qudt:applicableUnit unit:PA-L-PER-SEC ; + qudt:applicableUnit unit:PA-M3-PER-SEC ; + qudt:applicableUnit unit:PFERDESTAERKE ; + qudt:applicableUnit unit:PSI-IN3-PER-SEC ; + qudt:applicableUnit unit:PSI-L-PER-SEC ; + qudt:applicableUnit unit:PSI-M3-PER-SEC ; + qudt:applicableUnit unit:PSI-YD3-PER-SEC ; + qudt:applicableUnit unit:PetaJ-PER-SEC ; + qudt:applicableUnit unit:PetaW ; + qudt:applicableUnit unit:PicoJ-PER-SEC ; + qudt:applicableUnit unit:PicoW ; + qudt:applicableUnit unit:PlanckPower ; + qudt:applicableUnit unit:THM_US-PER-HR ; + qudt:applicableUnit unit:TON_FG ; + qudt:applicableUnit unit:TeraJ-PER-SEC ; + qudt:applicableUnit unit:TeraW ; + qudt:applicableUnit unit:TeraW-HR-PER-YR ; + qudt:applicableUnit unit:W ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:informativeReference "https://pubs.nmsu.edu/_m/M227/index.html#:~:text=Water%20horsepower%20is%20the%20minimum,produce%20that%20flow%20are%20known."^^xsd:anyURI ; + rdfs:comment "Applicable units are those of quantitykind:Power" ; + rdfs:isDefinedBy ; + rdfs:label "Water Horsepower"@en ; + skos:broader quantitykind:Power . + +quantitykind:WaterVaporDiffusionCoefficient + a qudt:QuantityKind ; + qudt:applicableUnit unit:KiloGM-PER-PA-SEC-M ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:informativeReference "https://www.wufi-wiki.com/mediawiki/index.php/Details:WaterVaporDiffusion"^^xsd:anyURI ; + qudt:plainTextDescription "The Water vapour diffusion coefficient describes how easy vapor diffusion happens in a given material." ; + rdfs:comment "Applicable units are those of quantitykind:WaterVaporDiffusionCoefficient" ; + rdfs:isDefinedBy ; + rdfs:label "Wasserdampfdiffusionsleitkoeffizient"@de ; + rdfs:label "Water vapour diffusion coefficient"@en . + +quantitykind:WaterVapourPermeability + a qudt:QuantityKind ; + dcterms:description "mass of water vapour passing a surface divided by the area of this surface, the pressure difference, and the corresponding time"@en ; + qudt:applicableUnit unit:PERM_0DEG_C ; + qudt:applicableUnit unit:PERM_23DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:iec61360Code "0112/2///62720#UAD244" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD244"^^xsd:anyURI ; + qudt:plainTextDescription "Masse des durch eine Fläche hindurchtretenden Wasserdampfes, dividiert durch den Flächeninhalt dieser Fläche, die Druckdifferenz und die dazugehörige Zeit"@de ; + qudt:symbol "0173-1#Z4-BAJ446#001" ; + rdfs:comment "Applicable units are those of quantitykind:WaterVapourPermeability" ; + rdfs:isDefinedBy ; + rdfs:label "water vapour permeability" ; + rdfs:label "water vapour permeability"@en-US . + +quantitykind:Wavelength + a qudt:QuantityKind ; + dcterms:description "For a monochromatic wave, \"wavelength\" is the distance between two successive points in a direction perpendicular to the wavefront where at a given instant the phase differs by $2\\pi$. The wavelength of a sinusoidal wave is the spatial period of the wave—the distance over which the wave's shape repeats. The SI unit of wavelength is the meter."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Wavelength"^^xsd:anyURI ; + qudt:latexDefinition "$\\lambda = \\frac{c}{\\nu}$, where $\\lambda$ is the wave length, $\\nu$ is the frequency, and $c$ is the speed of light in the medium."^^qudt:LatexString ; + qudt:symbol "λ" ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Jarak gelombang"@ms ; + rdfs:label "Vlnové délka"@cs ; + rdfs:label "Wellenlänge"@de ; + rdfs:label "comprimento de onda"@pt ; + rdfs:label "dalga boyu"@tr ; + rdfs:label "longitud de onda"@es ; + rdfs:label "longueur d'onde"@fr ; + rdfs:label "lunghezza d'onda"@it ; + rdfs:label "wavelength"@en ; + rdfs:label "длина волны"@ru ; + rdfs:label "طول موج"@fa ; + rdfs:label "波长"@zh ; + skos:broader quantitykind:Length ; + vaem:todo "belongs to SOQ-ISO" . + +quantitykind:Wavenumber + a qudt:QuantityKind ; + dcterms:description "\"Wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector. Light passing through different media keeps its frequency, but not its wavelength or wavenumber. The unit for wavenumber commonly used in spectroscopy is centimetre to power minus one, PER-CM, rather than metre to power minus one, PER-M."^^qudt:LatexString ; + qudt:applicableUnit unit:KY ; + qudt:applicableUnit unit:M-PER-HA ; + qudt:applicableUnit unit:M-PER-M2 ; + qudt:applicableUnit unit:MESH ; + qudt:applicableUnit unit:NUM-PER-M ; + qudt:applicableUnit unit:PER-ANGSTROM ; + qudt:applicableUnit unit:PER-CentiM ; + qudt:applicableUnit unit:PER-KiloM ; + qudt:applicableUnit unit:PER-M ; + qudt:applicableUnit unit:PER-MicroM ; + qudt:applicableUnit unit:PER-MilliM ; + qudt:applicableUnit unit:PER-NanoM ; + qudt:applicableUnit unit:PER-PicoM ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Wavenumber"^^xsd:anyURI ; + qudt:latexDefinition """$\\sigma = \\frac{\\nu}{c}$, where $\\sigma$ is the wave number, $\\nu$ is the frequency, and $c$ is the speed of light in the medium. + +Or: + +$k = \\frac{2\\pi}{\\lambda}= \\frac{2\\pi\\upsilon}{\\upsilon_p}=\\frac{\\omega}{\\upsilon_p}$, where $\\upsilon$ is the frequency of the wave, $\\lambda$ is the wavelength, $\\omega = 2\\pi \\upsilon$ is the angular frequency of the wave, and $\\upsilon_p$ is the phase velocity of the wave."""^^qudt:LatexString ; + qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector. Light passing through different media keeps its frequency, but not its wavelength or wavenumber. The unit for wavenumber commonly used in spectroscopy is centimetre to power minus one, PER-CM, rather than metre to power minus one, PER-M." ; + qudt:siExactMatch si-quantity:WANU ; + rdfs:comment "Applicable units are those of quantitykind:InverseLength" ; + rdfs:isDefinedBy ; + rdfs:label "Bilangan gelombang"@ms ; + rdfs:label "Liczba falowa"@pl ; + rdfs:label "Repetenz"@de ; + rdfs:label "Vlnové číslo"@cs ; + rdfs:label "dalga sayısı"@tr ; + rdfs:label "nombre d'onde"@fr ; + rdfs:label "numero d'onda"@it ; + rdfs:label "número de ola"@es ; + rdfs:label "número de onda"@pt ; + rdfs:label "valovno število"@sl ; + rdfs:label "wavenumber"@en ; + rdfs:label "Волновое число"@ru ; + rdfs:label "عدد الموجة"@ar ; + rdfs:label "عدد موج"@fa ; + rdfs:label "波数"@ja ; + rdfs:label "波数"@zh ; + rdfs:seeAlso quantitykind:AngularWavenumber ; + skos:altLabel "Wellenzahl"@de ; + skos:broader quantitykind:InverseLength . + +quantitykind:WebTime + a qudt:QuantityKind ; + qudt:applicableUnit unit:AttoSEC ; + qudt:applicableUnit unit:CentiPOISE-PER-BAR ; + qudt:applicableUnit unit:DAY ; + qudt:applicableUnit unit:DAY_Sidereal ; + qudt:applicableUnit unit:DeciSEC ; + qudt:applicableUnit unit:FemtoSEC ; + qudt:applicableUnit unit:H-PER-KiloOHM ; + qudt:applicableUnit unit:H-PER-OHM ; + qudt:applicableUnit unit:HR ; + qudt:applicableUnit unit:HR_Sidereal ; + qudt:applicableUnit unit:KiloSEC ; + qudt:applicableUnit unit:KiloYR ; + qudt:applicableUnit unit:MIN ; + qudt:applicableUnit unit:MIN_Sidereal ; + qudt:applicableUnit unit:MO ; + qudt:applicableUnit unit:MO_MeanGREGORIAN ; + qudt:applicableUnit unit:MO_MeanJulian ; + qudt:applicableUnit unit:MO_Synodic ; + qudt:applicableUnit unit:MegaSEC ; + qudt:applicableUnit unit:MegaYR ; + qudt:applicableUnit unit:MicroH-PER-KiloOHM ; + qudt:applicableUnit unit:MicroH-PER-OHM ; + qudt:applicableUnit unit:MicroSEC ; + qudt:applicableUnit unit:MilliH-PER-KiloOHM ; + qudt:applicableUnit unit:MilliH-PER-OHM ; + qudt:applicableUnit unit:MilliPA-SEC-PER-BAR ; + qudt:applicableUnit unit:MilliSEC ; + qudt:applicableUnit unit:NanoSEC ; + qudt:applicableUnit unit:PA-SEC-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-BAR ; + qudt:applicableUnit unit:POISE-PER-PA ; + qudt:applicableUnit unit:PicoSEC ; + qudt:applicableUnit unit:PlanckTime ; + qudt:applicableUnit unit:SEC ; + qudt:applicableUnit unit:SH ; + qudt:applicableUnit unit:WK ; + qudt:applicableUnit unit:YR ; + qudt:applicableUnit unit:YR_Common ; + qudt:applicableUnit unit:YR_Metrology ; + qudt:applicableUnit unit:YR_Sidereal ; + qudt:applicableUnit unit:YR_TROPICAL ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + rdfs:comment "Applicable units are those of quantitykind:Time" ; + rdfs:comment "Web Time" ; + rdfs:isDefinedBy ; + rdfs:label "Web Time"@en ; + skos:broader quantitykind:Time . + +quantitykind:WebTimeAveragePressure + a qudt:QuantityKind ; + qudt:applicableUnit unit:ATM ; + qudt:applicableUnit unit:ATM_T ; + qudt:applicableUnit unit:BAR ; + qudt:applicableUnit unit:BARAD ; + qudt:applicableUnit unit:BARYE ; + qudt:applicableUnit unit:CentiBAR ; + qudt:applicableUnit unit:CentiM_H2O ; + qudt:applicableUnit unit:CentiM_H2O_4DEG_C ; + qudt:applicableUnit unit:CentiM_HG ; + qudt:applicableUnit unit:CentiM_HG_0DEG_C ; + qudt:applicableUnit unit:DYN-PER-CentiM2 ; + qudt:applicableUnit unit:DecaPA ; + qudt:applicableUnit unit:DeciBAR ; + qudt:applicableUnit unit:FT_H2O ; + qudt:applicableUnit unit:FT_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:FT_HG ; + qudt:applicableUnit unit:GM_F-PER-CentiM2 ; + qudt:applicableUnit unit:GigaPA ; + qudt:applicableUnit unit:HectoBAR ; + qudt:applicableUnit unit:HectoPA ; + qudt:applicableUnit unit:IN_H2O ; + qudt:applicableUnit unit:IN_H2O_39dot2DEG_F ; + qudt:applicableUnit unit:IN_H2O_60DEG_F ; + qudt:applicableUnit unit:IN_HG ; + qudt:applicableUnit unit:IN_HG_32DEG_F ; + qudt:applicableUnit unit:IN_HG_60DEG_F ; + qudt:applicableUnit unit:KIP_F-PER-IN2 ; + qudt:applicableUnit unit:KiloBAR ; + qudt:applicableUnit unit:KiloGM-PER-M-SEC2 ; + qudt:applicableUnit unit:KiloGM_F-PER-CentiM2 ; + qudt:applicableUnit unit:KiloGM_F-PER-M2 ; + qudt:applicableUnit unit:KiloGM_F-PER-MilliM2 ; + qudt:applicableUnit unit:KiloLB_F-PER-IN2 ; + qudt:applicableUnit unit:KiloN-PER-M2 ; + qudt:applicableUnit unit:KiloPA ; + qudt:applicableUnit unit:KiloPA_A ; + qudt:applicableUnit unit:LB_F-PER-FT2 ; + qudt:applicableUnit unit:LB_F-PER-IN2 ; + qudt:applicableUnit unit:M_H2O ; + qudt:applicableUnit unit:MegaBAR ; + qudt:applicableUnit unit:MegaPA ; + qudt:applicableUnit unit:MegaPSI ; + qudt:applicableUnit unit:MicroATM ; + qudt:applicableUnit unit:MicroBAR ; + qudt:applicableUnit unit:MicroPA ; + qudt:applicableUnit unit:MicroTORR ; + qudt:applicableUnit unit:MilliBAR ; + qudt:applicableUnit unit:MilliM_H2O ; + qudt:applicableUnit unit:MilliM_HG ; + qudt:applicableUnit unit:MilliM_HGA ; + qudt:applicableUnit unit:MilliPA ; + qudt:applicableUnit unit:MilliTORR ; + qudt:applicableUnit unit:N-PER-CentiM2 ; + qudt:applicableUnit unit:N-PER-M2 ; + qudt:applicableUnit unit:N-PER-MilliM2 ; + qudt:applicableUnit unit:PA ; + qudt:applicableUnit unit:PDL-PER-FT2 ; + qudt:applicableUnit unit:PDL-PER-IN2 ; + qudt:applicableUnit unit:PSI ; + qudt:applicableUnit unit:PicoPA ; + qudt:applicableUnit unit:PlanckPressure ; + qudt:applicableUnit unit:TORR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:ForcePerArea" ; + rdfs:isDefinedBy ; + rdfs:label "Web Time Average Pressure"@en ; + skos:broader quantitykind:Pressure . + +quantitykind:WebTimeAverageThrust + a qudt:QuantityKind ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:comment "Web Time Avg Thrust (Mlbf)" ; + rdfs:isDefinedBy ; + rdfs:label "Web Time Average Thrust"@en ; + skos:broader quantitykind:Thrust . + +quantitykind:Weight + a qudt:QuantityKind ; + dcterms:description "The force with which a body is attracted toward an astronomical body. Or, the product of the mass of a body and the acceleration acting on a body. In a dynamic situation, the weight can be a multiple of that under resting conditions. Weight also varies on other planets in accordance with their gravity."^^qudt:LatexString ; + qudt:applicableUnit unit:CentiN ; + qudt:applicableUnit unit:DYN ; + qudt:applicableUnit unit:DeciN ; + qudt:applicableUnit unit:GM_F ; + qudt:applicableUnit unit:GigaN ; + qudt:applicableUnit unit:KIP_F ; + qudt:applicableUnit unit:KiloGM-M-PER-SEC2 ; + qudt:applicableUnit unit:KiloGM_F ; + qudt:applicableUnit unit:KiloLB_F ; + qudt:applicableUnit unit:KiloN ; + qudt:applicableUnit unit:KiloPOND ; + qudt:applicableUnit unit:LB_F ; + qudt:applicableUnit unit:MegaLB_F ; + qudt:applicableUnit unit:MegaN ; + qudt:applicableUnit unit:MicroN ; + qudt:applicableUnit unit:MilliN ; + qudt:applicableUnit unit:N ; + qudt:applicableUnit unit:NanoN ; + qudt:applicableUnit unit:OZ_F ; + qudt:applicableUnit unit:PDL ; + qudt:applicableUnit unit:POND ; + qudt:applicableUnit unit:PlanckForce ; + qudt:applicableUnit unit:TON_F_US ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Weight"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Weight"^^xsd:anyURI ; + qudt:plainTextDescription "The force with which a body is attracted toward an astronomical body. Or, the product of the mass of a body and the acceleration acting on a body. In a dynamic situation, the weight can be a multiple of that under resting conditions. Weight also varies on other planets in accordance with their gravity." ; + qudt:symbol "bold letter W" ; + rdfs:comment "Applicable units are those of quantitykind:Force" ; + rdfs:isDefinedBy ; + rdfs:label "Ağırlık"@tr ; + rdfs:label "Berat"@ms ; + rdfs:label "Gewicht"@de ; + rdfs:label "Siła ciężkości"@pl ; + rdfs:label "forza peso"@it ; + rdfs:label "greutate"@ro ; + rdfs:label "peso"@es ; + rdfs:label "peso"@pt ; + rdfs:label "poids"@fr ; + rdfs:label "tíha"@cs ; + rdfs:label "weight"@en ; + rdfs:label "Вес"@ru ; + rdfs:label "وزن"@ar ; + rdfs:label "وزن"@fa ; + rdfs:label "重さ"@ja ; + rdfs:label "重量"@zh ; + skos:broader quantitykind:Force . + +quantitykind:WetBulbTemperature + a qudt:QuantityKind ; + dcterms:description "The temperature of a parcel of air cooled to saturation (100% relative humidity) by the evaporation of water into it, with the latent heat supplied by the parcel."^^qudt:LatexString ; + qudt:applicableUnit unit:DEG_C ; + qudt:applicableUnit unit:DEG_F ; + qudt:applicableUnit unit:DEG_R ; + qudt:applicableUnit unit:DecaK ; + qudt:applicableUnit unit:K ; + qudt:applicableUnit unit:MegaK ; + qudt:applicableUnit unit:MilliDEG_C ; + qudt:applicableUnit unit:MilliK ; + qudt:applicableUnit unit:PlanckTemperature ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:plainTextDescription "the temperature of a parcel of air cooled to saturation (100% relative humidity) by the evaporation of water into it, with the latent heat supplied by the parcel." ; + rdfs:comment "Applicable units are those of quantitykind:Temperature" ; + rdfs:isDefinedBy ; + rdfs:label "Wet Bulb Temperature"@en ; + skos:broader quantitykind:Temperature . + +quantitykind:Width + a qudt:QuantityKind ; + dcterms:description "\"Width\" is the middle of three dimensions: length, width, thickness."^^qudt:LatexString ; + qudt:applicableUnit unit:ANGSTROM ; + qudt:applicableUnit unit:AU ; + qudt:applicableUnit unit:BTU_IT-PER-LB_F ; + qudt:applicableUnit unit:CH ; + qudt:applicableUnit unit:CHAIN_US ; + qudt:applicableUnit unit:CentiM ; + qudt:applicableUnit unit:DecaM ; + qudt:applicableUnit unit:DeciM ; + qudt:applicableUnit unit:FATH ; + qudt:applicableUnit unit:FM ; + qudt:applicableUnit unit:FT ; + qudt:applicableUnit unit:FT_US ; + qudt:applicableUnit unit:FUR ; + qudt:applicableUnit unit:FUR_Long ; + qudt:applicableUnit unit:FemtoM ; + qudt:applicableUnit unit:GAUGE_FR ; + qudt:applicableUnit unit:GA_Charriere ; + qudt:applicableUnit unit:HectoM ; + qudt:applicableUnit unit:IN ; + qudt:applicableUnit unit:KiloM ; + qudt:applicableUnit unit:LY ; + qudt:applicableUnit unit:M ; + qudt:applicableUnit unit:MI ; + qudt:applicableUnit unit:MI_N ; + qudt:applicableUnit unit:MI_US ; + qudt:applicableUnit unit:MicroIN ; + qudt:applicableUnit unit:MicroM ; + qudt:applicableUnit unit:MilLength ; + qudt:applicableUnit unit:MilliIN ; + qudt:applicableUnit unit:MilliM ; + qudt:applicableUnit unit:NanoM ; + qudt:applicableUnit unit:PARSEC ; + qudt:applicableUnit unit:PCA ; + qudt:applicableUnit unit:PT ; + qudt:applicableUnit unit:PicoM ; + qudt:applicableUnit unit:PlanckLength ; + qudt:applicableUnit unit:ROD ; + qudt:applicableUnit unit:YD ; + qudt:applicableUnit unit:ZOLL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:plainTextDescription "\"Width\" is the middle of three dimensions: length, width, thickness." ; + rdfs:comment "Applicable units are those of quantitykind:Length" ; + rdfs:isDefinedBy ; + rdfs:label "Width"@en ; + skos:broader quantitykind:Length . + +quantitykind:Work + a qudt:QuantityKind ; + dcterms:description """ + $\\textit{Work}$ or $net\\ work$ is equal to the change in kinetic energy. + This relationship is called the work-energy theorem: + $$Wnet = K. E._f K. E._o $$ + where $K. E._f$ is the final kinetic energy and $K. E._o$ is the original kinetic energy. + Potential energy, also referred to as stored energy, is the ability of a system to do work due to its position or internal structure. + Change in potential energy is equal to work. + The potential energy equations can also be derived from the integral form of work: + $$\\Delta P. E. = W = \\int F \\cdot dx$$. + """^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Work_(physics)"^^xsd:anyURI ; + qudt:informativeReference "http://www.cliffsnotes.com/study_guide/Work-and-Energy.topicArticleId-10453,articleId-10418.html"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:latexDefinition "$A = \\int Pdt$, where $P$ is power and $t$ is time."^^qudt:LatexString ; + qudt:plainTextDescription "A force is said to do Work when it acts on a body so that there is a displacement of the point of application, however small, in the direction of the force. The concepts of work and energy are closely tied to the concept of force because an applied force can do work on an object and cause a change in energy. Energy is defined as the ability to do work. Work is done on an object when an applied force moves it through a distance. Kinetic energy is the energy of an object in motion. The net work is equal to the change in kinetic energy." ; + qudt:symbol "A" ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Arbeit"@de ; + rdfs:label "delo"@sl ; + rdfs:label "iş"@tr ; + rdfs:label "kerja"@ms ; + rdfs:label "lavoro"@it ; + rdfs:label "lucru mecanic"@ro ; + rdfs:label "praca"@pl ; + rdfs:label "práce"@cs ; + rdfs:label "trabajo"@es ; + rdfs:label "trabalho"@pt ; + rdfs:label "travail"@fr ; + rdfs:label "work"@en ; + rdfs:label "کار"@fa ; + rdfs:label "कार्य"@hi ; + rdfs:label "仕事量"@ja ; + rdfs:label "功"@zh ; + skos:broader quantitykind:Energy . + +quantitykind:WorkFunction + a qudt:QuantityKind ; + dcterms:description "\"Work Function\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The minimum energy (usually measured in electronvolts) needed to remove an electron from a solid to a point immediately outside the solid surface (or energy needed to move an electron from the Fermi level into vacuum)."^^qudt:LatexString ; + qudt:applicableUnit unit:AttoJ ; + qudt:applicableUnit unit:BTU_IT ; + qudt:applicableUnit unit:BTU_TH ; + qudt:applicableUnit unit:CAL_IT ; + qudt:applicableUnit unit:CAL_TH ; + qudt:applicableUnit unit:ERG ; + qudt:applicableUnit unit:EV ; + qudt:applicableUnit unit:E_h ; + qudt:applicableUnit unit:ExaJ ; + qudt:applicableUnit unit:FT-LB_F ; + qudt:applicableUnit unit:FT-PDL ; + qudt:applicableUnit unit:FemtoJ ; + qudt:applicableUnit unit:GigaEV ; + qudt:applicableUnit unit:GigaJ ; + qudt:applicableUnit unit:GigaW-HR ; + qudt:applicableUnit unit:J ; + qudt:applicableUnit unit:KiloBTU_IT ; + qudt:applicableUnit unit:KiloBTU_TH ; + qudt:applicableUnit unit:KiloCAL ; + qudt:applicableUnit unit:KiloEV ; + qudt:applicableUnit unit:KiloJ ; + qudt:applicableUnit unit:KiloVA-HR ; + qudt:applicableUnit unit:KiloVAR-HR ; + qudt:applicableUnit unit:KiloW-HR ; + qudt:applicableUnit unit:MegaBTU_IT ; + qudt:applicableUnit unit:MegaEV ; + qudt:applicableUnit unit:MegaJ ; + qudt:applicableUnit unit:MegaTOE ; + qudt:applicableUnit unit:MegaVA-HR ; + qudt:applicableUnit unit:MegaVAR-HR ; + qudt:applicableUnit unit:MegaW-HR ; + qudt:applicableUnit unit:MicroJ ; + qudt:applicableUnit unit:MilliJ ; + qudt:applicableUnit unit:NanoJ ; + qudt:applicableUnit unit:PetaJ ; + qudt:applicableUnit unit:PicoJ ; + qudt:applicableUnit unit:PlanckEnergy ; + qudt:applicableUnit unit:QUAD ; + qudt:applicableUnit unit:THERM_EC ; + qudt:applicableUnit unit:THERM_US ; + qudt:applicableUnit unit:THM_EEC ; + qudt:applicableUnit unit:THM_US ; + qudt:applicableUnit unit:TOE ; + qudt:applicableUnit unit:TeraJ ; + qudt:applicableUnit unit:TeraW-HR ; + qudt:applicableUnit unit:TonEnergy ; + qudt:applicableUnit unit:VA-HR ; + qudt:applicableUnit unit:VAR-HR ; + qudt:applicableUnit unit:W-HR ; + qudt:applicableUnit unit:W-SEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Work_function"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:latexSymbol "$\\Phi$"^^qudt:LatexString ; + qudt:plainTextDescription "\"Work Function\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The minimum energy (usually measured in electronvolts) needed to remove an electron from a solid to a point immediately outside the solid surface (or energy needed to move an electron from the Fermi level into vacuum)." ; + rdfs:comment "Applicable units are those of quantitykind:Energy" ; + rdfs:isDefinedBy ; + rdfs:label "Work Function"@en ; + skos:broader quantitykind:Energy . + +vaem:GMD_QUDT-QUANTITY-KINDS-ALL + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2019-08-01T16:25:54.850+00:00"^^xsd:dateTime ; + dcterms:creator "Ralph Hodgson" ; + dcterms:creator "Steve Ray" ; + dcterms:description "Provides the set of all quantity kinds."^^qudt:LatexString ; + dcterms:modified "2024-10-26T14:11:16.049-04:00"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "QUANTITY-KINDS-ALL" ; + dcterms:title "QUDT Quantity Kinds Version 3.1 Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Quantity Kind Vocabulary Metadata Version 3.1.0" ; + vaem:applicableDiscipline "All disciplines" ; + vaem:applicableDomain "Science, Medicine and Engineering" ; + vaem:dateCreated "2019-08-01T21:26:38"^^xsd:dateTime ; + vaem:graphTitle "QUDT Quantity Kinds Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:intent "Provides a vocabulary of all quantity kinds." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-QUANTITY-KINDS-ALL.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png" ; + vaem:namespace "http://qudt.org/vocab/quantitykind/"^^xsd:anyURI ; + vaem:namespacePrefix "quantitykind" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-QUANTITY-KINDS-ALL.html"^^xsd:anyURI ; + vaem:specificity 1 ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/quantitykind"^^xsd:anyURI ; + vaem:usesNonImportedResource dc:contributor ; + vaem:usesNonImportedResource dc:creator ; + vaem:usesNonImportedResource dc:description ; + vaem:usesNonImportedResource dc:rights ; + vaem:usesNonImportedResource dc:subject ; + vaem:usesNonImportedResource dc:title ; + vaem:usesNonImportedResource dcterms:contributor ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:description ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:rights ; + vaem:usesNonImportedResource dcterms:subject ; + vaem:usesNonImportedResource dcterms:title ; + vaem:usesNonImportedResource ; + vaem:usesNonImportedResource skos:closeMatch ; + vaem:usesNonImportedResource skos:exactMatch ; + vaem:usesNonImportedResource voag:QUDT-Attribution ; + vaem:usesNonImportedResource voag:QUDT-QUANTITY-KINDS-VocabCatalogEntry_v1.2 ; + vaem:withAttributionTo ; + vaem:withAttributionTo voag:QUDT-Attribution . + +voag:QUDT-QUANTITY-KINDS-VocabCatalogEntry_v1.2 + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Quantity Kinds Vocabulary Catalog Entry v1.2" . + + diff --git a/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl b/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl new file mode 100644 index 000000000..38ac5e97f --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl @@ -0,0 +1,742 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix prov: . +@prefix quantitykind: . +@prefix qudt: . +@prefix soqk: . +@prefix sou: . +@prefix vaem: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:versionInfo "Created with TopBraid Composer" ; + rdfs:label "QUDT VOCAB Systems of Quantity Kinds Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-SOQK . + +soqk:CGS + a qudt:SystemOfQuantityKinds ; + qudt:hasBaseQuantityKind quantitykind:Dimensionless ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasUnitSystem sou:CGS ; + qudt:systemDerivedQuantityKind quantitykind:AngularAcceleration ; + qudt:systemDerivedQuantityKind quantitykind:AngularMomentum ; + qudt:systemDerivedQuantityKind quantitykind:AngularVelocity ; + qudt:systemDerivedQuantityKind quantitykind:Area ; + qudt:systemDerivedQuantityKind quantitykind:AreaAngle ; + qudt:systemDerivedQuantityKind quantitykind:AreaTime ; + qudt:systemDerivedQuantityKind quantitykind:Curvature ; + qudt:systemDerivedQuantityKind quantitykind:Density ; + qudt:systemDerivedQuantityKind quantitykind:DynamicViscosity ; + qudt:systemDerivedQuantityKind quantitykind:Energy ; + qudt:systemDerivedQuantityKind quantitykind:EnergyDensity ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerArea ; + qudt:systemDerivedQuantityKind quantitykind:Force ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerArea ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerLength ; + qudt:systemDerivedQuantityKind quantitykind:Frequency ; + qudt:systemDerivedQuantityKind quantitykind:LengthMass ; + qudt:systemDerivedQuantityKind quantitykind:LinearAcceleration ; + qudt:systemDerivedQuantityKind quantitykind:LinearMomentum ; + qudt:systemDerivedQuantityKind quantitykind:LinearVelocity ; + qudt:systemDerivedQuantityKind quantitykind:MassPerArea ; + qudt:systemDerivedQuantityKind quantitykind:MassPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MassPerTime ; + qudt:systemDerivedQuantityKind quantitykind:MomentOfInertia ; + qudt:systemDerivedQuantityKind quantitykind:Power ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerArea ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerAreaAngle ; + qudt:systemDerivedQuantityKind quantitykind:Pressure ; + qudt:systemDerivedQuantityKind quantitykind:RadiantIntensity ; + qudt:systemDerivedQuantityKind quantitykind:SpecificEnergy ; + qudt:systemDerivedQuantityKind quantitykind:Stress ; + qudt:systemDerivedQuantityKind quantitykind:Time_Squared ; + qudt:systemDerivedQuantityKind quantitykind:Torque ; + qudt:systemDerivedQuantityKind quantitykind:Volume ; + qudt:systemDerivedQuantityKind quantitykind:VolumePerTime ; + rdfs:isDefinedBy ; + rdfs:label "CGS System of Quantity Kinds" . + +soqk:CGS-EMU + a qudt:SystemOfQuantityKinds ; + dcterms:description "The electromagnetic system of units is used to measure electrical quantities of electric charge, current, and voltage, within the centimeter gram second (or \"CGS\") metric system of units. In electromagnetic units, electric current is derived the CGS base units length, mass, and time by solving Ampere's Law (expressing the force between two parallel conducting wires) for current and setting the constant of proportionality (k_m) equal to unity. Thus, in the CGS-EMU system, electric current is derived from length, mass, and time."^^rdf:HTML ; + qudt:hasBaseQuantityKind quantitykind:Dimensionless ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasUnitSystem sou:CGS-EMU ; + qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField ; + qudt:systemDerivedQuantityKind quantitykind:Capacitance ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:ElectricConductivity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentPerLength ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDisplacementField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricFlux ; + qudt:systemDerivedQuantityKind quantitykind:ElectricPotential ; + qudt:systemDerivedQuantityKind quantitykind:ElectromotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:Inductance ; + qudt:systemDerivedQuantityKind quantitykind:LengthPerElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:MagneticField ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFlux ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MagnetizationField ; + qudt:systemDerivedQuantityKind quantitykind:MagnetomotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:Permeability ; + qudt:systemDerivedQuantityKind quantitykind:Permittivity ; + qudt:systemDerivedQuantityKind quantitykind:Resistance ; + rdfs:isDefinedBy ; + rdfs:label "CGS-EMU System of Quantity Kinds" . + +soqk:CGS-ESU + a qudt:SystemOfQuantityKinds ; + dcterms:description "The electrostatic system of units is used to measure electrical quantities of electric charge, current, and voltage within the centimeter gram second (or \"CGS\") metric system of units. In electrostatic units, electric charge is derived from Coulomb's Law (expressing the force exerted between two charged particles separated by a distance) by solving for electric charge and setting the constant of proportionality (k_s) equal to unity. Thus, in electrostatic units, the dimensionality of electric charge is derived from the base CGS quantities of length, mass, and time."^^rdf:HTML ; + qudt:hasBaseQuantityKind quantitykind:Dimensionless ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasUnitSystem sou:CGS-ESU ; + qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField ; + qudt:systemDerivedQuantityKind quantitykind:Capacitance ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentPerLength ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDisplacementField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricFlux ; + qudt:systemDerivedQuantityKind quantitykind:ElectricPotential ; + qudt:systemDerivedQuantityKind quantitykind:ElectromotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:Inductance ; + qudt:systemDerivedQuantityKind quantitykind:LengthPerElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:MagneticField ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFlux ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MagnetizationField ; + qudt:systemDerivedQuantityKind quantitykind:MagnetomotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:Permeability ; + qudt:systemDerivedQuantityKind quantitykind:Permittivity ; + qudt:systemDerivedQuantityKind quantitykind:Resistance ; + rdfs:isDefinedBy ; + rdfs:label "CGS-ESU System of Quantity Kinds" . + +soqk:CGS-Gauss + a qudt:SystemOfQuantityKinds ; + qudt:hasBaseQuantityKind quantitykind:Dimensionless ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasUnitSystem sou:CGS-GAUSS ; + qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField ; + qudt:systemDerivedQuantityKind quantitykind:Capacitance ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentPerLength ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDisplacementField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricField ; + qudt:systemDerivedQuantityKind quantitykind:ElectricFlux ; + qudt:systemDerivedQuantityKind quantitykind:ElectricPotential ; + qudt:systemDerivedQuantityKind quantitykind:ElectromotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:Inductance ; + qudt:systemDerivedQuantityKind quantitykind:LengthPerElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:MagneticField ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFlux ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MagnetizationField ; + qudt:systemDerivedQuantityKind quantitykind:Permeability ; + qudt:systemDerivedQuantityKind quantitykind:Permittivity ; + qudt:systemDerivedQuantityKind quantitykind:Resistance ; + rdfs:isDefinedBy ; + rdfs:label "CGS-Gauss System of Quantity Kinds" . + +soqk:IMPERIAL + a qudt:SystemOfQuantityKinds ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:AreaTemperature ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:hasQuantityKind quantitykind:AreaTimeTemperature ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:KinematicViscosity ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:hasQuantityKind quantitykind:MassTemperature ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:hasQuantityKind quantitykind:ThermalDiffusivity ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:hasQuantityKind quantitykind:ThermalEnergyLength ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:hasQuantityKind quantitykind:ThrustToMassRatio ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + rdfs:isDefinedBy ; + rdfs:label "Imperial System of Quantity Kinds" . + +soqk:ISQ + a qudt:SystemOfQuantityKinds ; + dcterms:description "The ISO 80000 standards were prepared by Technical Committee ISO/TC 12, Quantities and units in co-operation with IEC/TC 25, Quantities and units."^^rdf:HTML ; + qudt:hasBaseQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasBaseQuantityKind quantitykind:ElectricCurrent ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:LuminousIntensity ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Absorptance ; + qudt:hasQuantityKind quantitykind:AcousticImpedance ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:ActivityThresholds ; + qudt:hasQuantityKind quantitykind:Adaptation ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularWavenumber ; + qudt:hasQuantityKind quantitykind:ApparentPower ; + qudt:hasQuantityKind quantitykind:AuditoryThresholds ; + qudt:hasQuantityKind quantitykind:BendingMomentOfForce ; + qudt:hasQuantityKind quantitykind:Breadth ; + qudt:hasQuantityKind quantitykind:BulkModulus ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:hasQuantityKind quantitykind:CartesianCoordinates ; + qudt:hasQuantityKind quantitykind:CartesianVolume ; + qudt:hasQuantityKind quantitykind:CelsiusTemperature ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:hasQuantityKind quantitykind:Coercivity ; + qudt:hasQuantityKind quantitykind:ColdReceptorThreshold ; + qudt:hasQuantityKind quantitykind:CombinedNonEvaporativeHeatTransferCoefficient ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:hasQuantityKind quantitykind:CompressibilityFactor ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:hasQuantityKind quantitykind:ConductionSpeed ; + qudt:hasQuantityKind quantitykind:ConductiveHeatTransferRate ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:hasQuantityKind quantitykind:ConvectiveHeatTransfer ; + qudt:hasQuantityKind quantitykind:CouplingFactor ; + qudt:hasQuantityKind quantitykind:CubicExpansionCoefficient ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:DewPointTemperature ; + qudt:hasQuantityKind quantitykind:Diameter ; + qudt:hasQuantityKind quantitykind:Displacement ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:DisplacementCurrentDensity ; + qudt:hasQuantityKind quantitykind:Distance ; + qudt:hasQuantityKind quantitykind:DynamicFriction ; + qudt:hasQuantityKind quantitykind:Efficiency ; + qudt:hasQuantityKind quantitykind:EinsteinTransitionProbability ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeLinearDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeSurfaceDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:hasQuantityKind quantitykind:ElectricDisplacement ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:hasQuantityKind quantitykind:ElectricFlux ; + qudt:hasQuantityKind quantitykind:ElectricFluxDensity ; + qudt:hasQuantityKind quantitykind:ElectricPolarization ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:ElectricSusceptibility ; + qudt:hasQuantityKind quantitykind:ElectromagneticEnergyDensity ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:Emissivity ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:hasQuantityKind quantitykind:Energy_Squared ; + qudt:hasQuantityKind quantitykind:Entropy ; + qudt:hasQuantityKind quantitykind:EvaporativeHeatTransfer ; + qudt:hasQuantityKind quantitykind:EvaporativeHeatTransferCoefficient ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:hasQuantityKind quantitykind:Friction ; + qudt:hasQuantityKind quantitykind:GeneralizedCoordinate ; + qudt:hasQuantityKind quantitykind:GeneralizedForce ; + qudt:hasQuantityKind quantitykind:GeneralizedMomentum ; + qudt:hasQuantityKind quantitykind:GeneralizedVelocity ; + qudt:hasQuantityKind quantitykind:GibbsEnergy ; + qudt:hasQuantityKind quantitykind:GravitationalAttraction ; + qudt:hasQuantityKind quantitykind:GustatoryThreshold ; + qudt:hasQuantityKind quantitykind:HamiltonFunction ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:hasQuantityKind quantitykind:HeatCapacityRatio ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:HeatFlowRatePerArea ; + qudt:hasQuantityKind quantitykind:HelmholtzEnergy ; + qudt:hasQuantityKind quantitykind:Impedance ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:hasQuantityKind quantitykind:InstantaneousPower ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:hasQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:hasQuantityKind quantitykind:IsentropicCompressibility ; + qudt:hasQuantityKind quantitykind:IsentropicExponent ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:hasQuantityKind quantitykind:LagrangeFunction ; + qudt:hasQuantityKind quantitykind:LeakageFactor ; + qudt:hasQuantityKind quantitykind:LengthByForce ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:LinearStrain ; + qudt:hasQuantityKind quantitykind:LogarithmicFrequencyInterval ; + qudt:hasQuantityKind quantitykind:LossFactor ; + qudt:hasQuantityKind quantitykind:LuminousEmittance ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:hasQuantityKind quantitykind:MagneticAreaMoment ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:hasQuantityKind quantitykind:MagneticMoment ; + qudt:hasQuantityKind quantitykind:MagneticPolarization ; + qudt:hasQuantityKind quantitykind:MagneticSusceptability ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagneticVectorPotential ; + qudt:hasQuantityKind quantitykind:Magnetization ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:MassAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:MassConcentrationOfWater ; + qudt:hasQuantityKind quantitykind:MassConcentrationOfWaterVapour ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassFractionOfDryMatter ; + qudt:hasQuantityKind quantitykind:MassFractionOfWater ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:hasQuantityKind quantitykind:MassRatioOfWaterToDryMatter ; + qudt:hasQuantityKind quantitykind:MassRatioOfWaterVapourToDryGas ; + qudt:hasQuantityKind quantitykind:MassicActivity ; + qudt:hasQuantityKind quantitykind:MassieuFunction ; + qudt:hasQuantityKind quantitykind:MechanicalEnergy ; + qudt:hasQuantityKind quantitykind:MechanicalSurfaceImpedance ; + qudt:hasQuantityKind quantitykind:ModulusOfAdmittance ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ModulusOfImpedance ; + qudt:hasQuantityKind quantitykind:MolarAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:MolarAngularMomentum ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:hasQuantityKind quantitykind:MutualInductance ; + qudt:hasQuantityKind quantitykind:NapierianAbsorbance ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:hasQuantityKind quantitykind:NormalStress ; + qudt:hasQuantityKind quantitykind:OlfactoryThreshold ; + qudt:hasQuantityKind quantitykind:PathLength ; + qudt:hasQuantityKind quantitykind:Permeability ; + qudt:hasQuantityKind quantitykind:Permeance ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:hasQuantityKind quantitykind:PermittivityRatio ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PhaseDifference ; + qudt:hasQuantityKind quantitykind:PhaseSpeedOfSound ; + qudt:hasQuantityKind quantitykind:PhotoThresholdOfAwarenessFunction ; + qudt:hasQuantityKind quantitykind:PlanckFunction ; + qudt:hasQuantityKind quantitykind:PoissonRatio ; + qudt:hasQuantityKind quantitykind:PolarMomentOfInertia ; + qudt:hasQuantityKind quantitykind:PositionVector ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:hasQuantityKind quantitykind:PowerArea ; + qudt:hasQuantityKind quantitykind:PowerAreaPerSolidAngle ; + qudt:hasQuantityKind quantitykind:PowerFactor ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:PowerPerAreaAngle ; + qudt:hasQuantityKind quantitykind:PoyntingVector ; + qudt:hasQuantityKind quantitykind:Pressure ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:hasQuantityKind quantitykind:QualityFactor ; + qudt:hasQuantityKind quantitykind:RadialDistance ; + qudt:hasQuantityKind quantitykind:Radiance ; + qudt:hasQuantityKind quantitykind:RadianceFactor ; + qudt:hasQuantityKind quantitykind:RadiantEnergyDensity ; + qudt:hasQuantityKind quantitykind:RadiantFluence ; + qudt:hasQuantityKind quantitykind:RadiantFlux ; + qudt:hasQuantityKind quantitykind:RadiantIntensity ; + qudt:hasQuantityKind quantitykind:RadiativeHeatTransfer ; + qudt:hasQuantityKind quantitykind:Radiosity ; + qudt:hasQuantityKind quantitykind:Radius ; + qudt:hasQuantityKind quantitykind:RadiusOfCurvature ; + qudt:hasQuantityKind quantitykind:RatioOfSpecificHeatCapacities ; + qudt:hasQuantityKind quantitykind:Reactance ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:hasQuantityKind quantitykind:Reflectance ; + qudt:hasQuantityKind quantitykind:ReflectanceFactor ; + qudt:hasQuantityKind quantitykind:RefractiveIndex ; + qudt:hasQuantityKind quantitykind:RelativeHumidity ; + qudt:hasQuantityKind quantitykind:RelativeMassConcentrationOfVapour ; + qudt:hasQuantityKind quantitykind:RelativeMassRatioOfVapour ; + qudt:hasQuantityKind quantitykind:RelativePartialPressure ; + qudt:hasQuantityKind quantitykind:RelativePressureCoefficient ; + qudt:hasQuantityKind quantitykind:Reluctance ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:hasQuantityKind quantitykind:ScalarMagneticPotential ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:hasQuantityKind quantitykind:SectionModulus ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:ShearStrain ; + qudt:hasQuantityKind quantitykind:ShearStress ; + qudt:hasQuantityKind quantitykind:SoundEnergyDensity ; + qudt:hasQuantityKind quantitykind:SoundExposure ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundParticleAcceleration ; + qudt:hasQuantityKind quantitykind:SoundParticleVelocity ; + qudt:hasQuantityKind quantitykind:SoundPower ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:hasQuantityKind quantitykind:SoundVolumeVelocity ; + qudt:hasQuantityKind quantitykind:SourceVoltage ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:hasQuantityKind quantitykind:SpecificEnthalpy ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificGibbsEnergy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:hasQuantityKind quantitykind:SpecificHelmholtzEnergy ; + qudt:hasQuantityKind quantitykind:SpecificImpulseByMass ; + qudt:hasQuantityKind quantitykind:SpecificImpulseByWeight ; + qudt:hasQuantityKind quantitykind:SpecificInternalEnergy ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:hasQuantityKind quantitykind:SpectralLuminousEfficiency ; + qudt:hasQuantityKind quantitykind:SpeedOfLight ; + qudt:hasQuantityKind quantitykind:SpeedOfSound ; + qudt:hasQuantityKind quantitykind:SphericalIlluminance ; + qudt:hasQuantityKind quantitykind:StandardGravitationalParameter ; + qudt:hasQuantityKind quantitykind:StaticFriction ; + qudt:hasQuantityKind quantitykind:Susceptance ; + qudt:hasQuantityKind quantitykind:TemporalSummationFunction ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:hasQuantityKind quantitykind:ThermalDiffusivity ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:hasQuantityKind quantitykind:ThermodynamicEnergy ; + qudt:hasQuantityKind quantitykind:Thickness ; + qudt:hasQuantityKind quantitykind:Thrust ; + qudt:hasQuantityKind quantitykind:ThrustToMassRatio ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:hasQuantityKind quantitykind:TotalCurrentDensity ; + qudt:hasQuantityKind quantitykind:TouchThresholds ; + qudt:hasQuantityKind quantitykind:Transmittance ; + qudt:hasQuantityKind quantitykind:TransmittanceDensity ; + qudt:hasQuantityKind quantitykind:Turns ; + qudt:hasQuantityKind quantitykind:VisionThresholds ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:hasQuantityKind quantitykind:VoltagePhasor ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumeStrain ; + qudt:hasQuantityKind quantitykind:VolumicElectromagneticEnergy ; + qudt:hasQuantityKind quantitykind:WarmReceptorThreshold ; + qudt:hasQuantityKind quantitykind:Weight ; + qudt:hasQuantityKind quantitykind:Work ; + qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=112-02-01"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_tc_browse.htm?commid=46202"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "ISO System of Quantity Kinds (ISQ)" . + +soqk:Planck + a qudt:SystemOfQuantityKinds ; + qudt:hasQuantityKind quantitykind:Length ; + rdfs:isDefinedBy ; + rdfs:label "Planck System of Quantities" . + +soqk:SI + a qudt:SystemOfQuantityKinds ; + qudt:dbpediaMatch "http://dbpedia.org/resource/International_System_of_UnitsX"^^xsd:anyURI ; + qudt:hasBaseQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasBaseQuantityKind quantitykind:Dimensionless ; + qudt:hasBaseQuantityKind quantitykind:ElectricCurrent ; + qudt:hasBaseQuantityKind quantitykind:Length ; + qudt:hasBaseQuantityKind quantitykind:LuminousIntensity ; + qudt:hasBaseQuantityKind quantitykind:Mass ; + qudt:hasBaseQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:hasBaseQuantityKind quantitykind:Time ; + qudt:systemDerivedQuantityKind quantitykind:AbsorbedDose ; + qudt:systemDerivedQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:systemDerivedQuantityKind quantitykind:Activity ; + qudt:systemDerivedQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:systemDerivedQuantityKind quantitykind:AmountOfSubstancePerVolume ; + qudt:systemDerivedQuantityKind quantitykind:AngularAcceleration ; + qudt:systemDerivedQuantityKind quantitykind:AngularMomentum ; + qudt:systemDerivedQuantityKind quantitykind:AngularVelocity ; + qudt:systemDerivedQuantityKind quantitykind:Area ; + qudt:systemDerivedQuantityKind quantitykind:AreaAngle ; + qudt:systemDerivedQuantityKind quantitykind:AreaPerTime ; + qudt:systemDerivedQuantityKind quantitykind:AreaTemperature ; + qudt:systemDerivedQuantityKind quantitykind:AreaThermalExpansion ; + qudt:systemDerivedQuantityKind quantitykind:AreaTime ; + qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField ; + qudt:systemDerivedQuantityKind quantitykind:Capacitance ; + qudt:systemDerivedQuantityKind quantitykind:CatalyticActivity ; + qudt:systemDerivedQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:systemDerivedQuantityKind quantitykind:Density ; + qudt:systemDerivedQuantityKind quantitykind:DoseEquivalent ; + qudt:systemDerivedQuantityKind quantitykind:DynamicViscosity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:ElectricChargeLineDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ; + qudt:systemDerivedQuantityKind quantitykind:ElectricChargePerArea ; + qudt:systemDerivedQuantityKind quantitykind:ElectricChargePerMass ; + qudt:systemDerivedQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricConductivity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentPerAngle ; + qudt:systemDerivedQuantityKind quantitykind:ElectricCurrentPerEnergy ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic ; + qudt:systemDerivedQuantityKind quantitykind:ElectricDisplacement ; + qudt:systemDerivedQuantityKind quantitykind:ElectricFieldStrength ; + qudt:systemDerivedQuantityKind quantitykind:ElectricFlux ; + qudt:systemDerivedQuantityKind quantitykind:ElectricPotential ; + qudt:systemDerivedQuantityKind quantitykind:ElectricQuadrupoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:ElectromotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:Energy ; + qudt:systemDerivedQuantityKind quantitykind:EnergyDensity ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerArea ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerAreaElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:EnergyPerMagneticFluxDensity_Squared ; + qudt:systemDerivedQuantityKind quantitykind:Energy_Squared ; + qudt:systemDerivedQuantityKind quantitykind:Exposure ; + qudt:systemDerivedQuantityKind quantitykind:Force ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerArea ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerAreaTime ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:ForcePerLength ; + qudt:systemDerivedQuantityKind quantitykind:Frequency ; + qudt:systemDerivedQuantityKind quantitykind:GravitationalAttraction ; + qudt:systemDerivedQuantityKind quantitykind:HeatCapacity ; + qudt:systemDerivedQuantityKind quantitykind:HeatFlowRate ; + qudt:systemDerivedQuantityKind quantitykind:HeatFlowRatePerArea ; + qudt:systemDerivedQuantityKind quantitykind:Illuminance ; + qudt:systemDerivedQuantityKind quantitykind:Inductance ; + qudt:systemDerivedQuantityKind quantitykind:InverseAmountOfSubstance ; + qudt:systemDerivedQuantityKind quantitykind:InverseEnergy ; + qudt:systemDerivedQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:systemDerivedQuantityKind quantitykind:InverseLength ; + qudt:systemDerivedQuantityKind quantitykind:InverseLengthTemperature ; + qudt:systemDerivedQuantityKind quantitykind:InverseMagneticFlux ; + qudt:systemDerivedQuantityKind quantitykind:InversePermittivity ; + qudt:systemDerivedQuantityKind quantitykind:InverseTimeTemperature ; + qudt:systemDerivedQuantityKind quantitykind:InverseVolume ; + qudt:systemDerivedQuantityKind quantitykind:KinematicViscosity ; + qudt:systemDerivedQuantityKind quantitykind:LengthEnergy ; + qudt:systemDerivedQuantityKind quantitykind:LengthMass ; + qudt:systemDerivedQuantityKind quantitykind:LengthMolarEnergy ; + qudt:systemDerivedQuantityKind quantitykind:LengthPerElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:LengthTemperature ; + qudt:systemDerivedQuantityKind quantitykind:LinearAcceleration ; + qudt:systemDerivedQuantityKind quantitykind:LinearElectricCurrent ; + qudt:systemDerivedQuantityKind quantitykind:LinearMomentum ; + qudt:systemDerivedQuantityKind quantitykind:LinearThermalExpansion ; + qudt:systemDerivedQuantityKind quantitykind:LinearVelocity ; + qudt:systemDerivedQuantityKind quantitykind:Luminance ; + qudt:systemDerivedQuantityKind quantitykind:LuminousEfficacy ; + qudt:systemDerivedQuantityKind quantitykind:LuminousEnergy ; + qudt:systemDerivedQuantityKind quantitykind:LuminousFlux ; + qudt:systemDerivedQuantityKind quantitykind:LuminousFluxPerArea ; + qudt:systemDerivedQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFlux ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFluxDensity ; + qudt:systemDerivedQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MagneticReluctivity ; + qudt:systemDerivedQuantityKind quantitykind:Magnetization ; + qudt:systemDerivedQuantityKind quantitykind:MagnetomotiveForce ; + qudt:systemDerivedQuantityKind quantitykind:MassPerArea ; + qudt:systemDerivedQuantityKind quantitykind:MassPerAreaTime ; + qudt:systemDerivedQuantityKind quantitykind:MassPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:MassPerLength ; + qudt:systemDerivedQuantityKind quantitykind:MassPerTime ; + qudt:systemDerivedQuantityKind quantitykind:MassTemperature ; + qudt:systemDerivedQuantityKind quantitykind:MolarAngularMomentum ; + qudt:systemDerivedQuantityKind quantitykind:MolarEnergy ; + qudt:systemDerivedQuantityKind quantitykind:MolarHeatCapacity ; + qudt:systemDerivedQuantityKind quantitykind:MolarMass ; + qudt:systemDerivedQuantityKind quantitykind:MolarVolume ; + qudt:systemDerivedQuantityKind quantitykind:MomentOfInertia ; + qudt:systemDerivedQuantityKind quantitykind:Permeability ; + qudt:systemDerivedQuantityKind quantitykind:Permittivity ; + qudt:systemDerivedQuantityKind quantitykind:PlaneAngle ; + qudt:systemDerivedQuantityKind quantitykind:Polarizability ; + qudt:systemDerivedQuantityKind quantitykind:PolarizationField ; + qudt:systemDerivedQuantityKind quantitykind:Power ; + qudt:systemDerivedQuantityKind quantitykind:PowerArea ; + qudt:systemDerivedQuantityKind quantitykind:PowerAreaPerSolidAngle ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerArea ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerAreaAngle ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerAreaQuarticTemperature ; + qudt:systemDerivedQuantityKind quantitykind:PowerPerElectricCharge ; + qudt:systemDerivedQuantityKind quantitykind:RadiantIntensity ; + qudt:systemDerivedQuantityKind quantitykind:Resistance ; + qudt:systemDerivedQuantityKind quantitykind:SolidAngle ; + qudt:systemDerivedQuantityKind quantitykind:SpecificEnergy ; + qudt:systemDerivedQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:systemDerivedQuantityKind quantitykind:SpecificHeatPressure ; + qudt:systemDerivedQuantityKind quantitykind:SpecificHeatVolume ; + qudt:systemDerivedQuantityKind quantitykind:SpecificImpulseByMass ; + qudt:systemDerivedQuantityKind quantitykind:SpecificVolume ; + qudt:systemDerivedQuantityKind quantitykind:StandardGravitationalParameter ; + qudt:systemDerivedQuantityKind quantitykind:Stress ; + qudt:systemDerivedQuantityKind quantitykind:TemperatureAmountOfSubstance ; + qudt:systemDerivedQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ; + qudt:systemDerivedQuantityKind quantitykind:TemperaturePerTime ; + qudt:systemDerivedQuantityKind quantitykind:ThermalConductivity ; + qudt:systemDerivedQuantityKind quantitykind:ThermalDiffusivity ; + qudt:systemDerivedQuantityKind quantitykind:ThermalInsulance ; + qudt:systemDerivedQuantityKind quantitykind:ThermalResistance ; + qudt:systemDerivedQuantityKind quantitykind:ThermalResistivity ; + qudt:systemDerivedQuantityKind quantitykind:ThrustToMassRatio ; + qudt:systemDerivedQuantityKind quantitykind:TimeTemperature ; + qudt:systemDerivedQuantityKind quantitykind:Time_Squared ; + qudt:systemDerivedQuantityKind quantitykind:Torque ; + qudt:systemDerivedQuantityKind quantitykind:Volume ; + qudt:systemDerivedQuantityKind quantitykind:VolumePerTime ; + qudt:systemDerivedQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:systemDerivedQuantityKind quantitykind:VolumetricHeatCapacity ; + rdfs:isDefinedBy ; + rdfs:label "International System of Quantity Kinds" . + +soqk:USCS + a qudt:SystemOfQuantityKinds ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:AreaTemperature ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:hasQuantityKind quantitykind:AreaTimeTemperature ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:KinematicViscosity ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:hasQuantityKind quantitykind:MassTemperature ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:hasQuantityKind quantitykind:ThermalDiffusivity ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:hasQuantityKind quantitykind:ThermalEnergyLength ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:hasQuantityKind quantitykind:ThrustToMassRatio ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + rdfs:isDefinedBy ; + rdfs:label "US Customary System of Quantity Kinds" . + +vaem:GMD_QUDT-SOQK + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2016-07-04"^^xsd:date ; + dcterms:creator "Ralph Hodgson" ; + dcterms:description "QUDT Systems of Quantity Kinds Vocabulary Version 3.1.0"^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Systems of Quantity Kinds" ; + dcterms:title "QUDT Systems of Quantity Kinds Version 3.1Vocabulary" ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT System of Quantity Kinds Vocabulary Version 3.1.0 Metadata" ; + vaem:graphTitle "QUDT Systems of Quantity Kinds Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT ; + vaem:hasSteward vaem:QUDT ; + vaem:intent "The intent of this graph is the specification of all Systems of Quantity Kinds" ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:name "soqk" ; + vaem:namespace "http://qudt.org/vocab/soqk/"^^xsd:anyURI ; + vaem:namespacePrefix "soqk" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/soqk"^^xsd:anyURI ; + vaem:usesNonImportedResource prov:wasInfluencedBy ; + vaem:usesNonImportedResource prov:wasInformedBy . + + diff --git a/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl b/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl new file mode 100644 index 000000000..8e0a65e59 --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl @@ -0,0 +1,202 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix prefix: . +@prefix prov: . +@prefix qudt: . +@prefix sou: . +@prefix unit: . +@prefix vaem: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:versionInfo "Created with TopBraid Composer" ; + rdfs:label "QUDT VOCAB Systems of Units Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-SOU . + +sou:ASU + a qudt:SystemOfUnits ; + dcterms:description "The astronomical system of units, formally called the IAU (1976) System of Astronomical Constants, is a system of measurement developed for use in astronomy. It was adopted by the International Astronomical Union (IAU) in 1976, and has been slightly updated since then. The system was developed because of the difficulties in measuring and expressing astronomical data in International System of Units (SI units). In particular, there is a huge quantity of very precise data relating to the positions of objects within the solar system which cannot conveniently be expressed or processed in SI units. Through a number of modifications, the astronomical system of units now explicitly recognizes the consequences of general relativity, which is a necessary addition to the International System of Units in order to accurately treat astronomical data. The astronomical system of units is a tridimensional system, in that it defines units of length, mass and time. The associated astronomical constants also fix the different frames of reference that are needed to report observations. The system is a conventional system, in that neither the unit of length nor the unit of mass are true physical constants, and there are at least three different measures of time."^^rdf:HTML ; + qudt:informativeReference "http://www.iau.org/public/themes/measuring/"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Astronomic System Of Units"@en . + +sou:CGS + a qudt:SystemOfUnits ; + dcterms:description "

The centimetre-gram-second system (abbreviated CGS or cgs) is a variant of the metric system of physical units based on centimetre as the unit of length, gram as a unit of mass, and second as a unit of time. All CGS mechanical units are unambiguously derived from these three base units, but there are several different ways of extending the CGS system to cover electromagnetism. The CGS system has been largely supplanted by the MKS system, based on metre, kilogram, and second. Note that the term cgs is ambiguous, since there are several variants with conflicting definitions of electromagnetic quantities and units. The unqualified term is generally associated with the Gaussian system of units, so this more precise URI is preferred.

"^^rdf:HTML ; + qudt:abbreviation "CGS" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Centimetre_gram_second_system_of_units"^^xsd:anyURI ; + qudt:hasBaseUnit unit:CentiM ; + qudt:hasBaseUnit unit:GM ; + qudt:hasBaseUnit unit:SEC ; + qudt:hasBaseUnit unit:UNITLESS ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Centimetre–gram–second_system_of_units"^^xsd:anyURI ; + qudt:informativeReference "http://scienceworld.wolfram.com/physics/cgs.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.tf.uni-kiel.de/matwis/amat/mw1_ge/kap_2/basics/b2_1_14.html"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "CGS System of Units"@en ; + rdfs:seeAlso sou:CGS-EMU ; + rdfs:seeAlso sou:CGS-ESU ; + rdfs:seeAlso sou:CGS-GAUSS . + +sou:CGS-EMU + a qudt:SystemOfUnits ; + dcterms:description "The units in this system are formed in a manner similar to that of the cgs electrostatic system of units: the unit of electric current was defined using the law that describes the force between current-carrying wires. To do this, the permeability of free space (the magnetic constant, relating the magnetic flux density in a vacuum to the strength of the external magnetic field), was set at 1. To distinguish cgs electromagnetic units from units in the international system, they were often given the prefix “ab-”. However, most are often referred to purely descriptively as the 'e.m. unit of capacitance', etc. "^^rdf:HTML ; + qudt:abbreviation "CGS-EMU" ; + qudt:hasBaseUnit unit:BIOT ; + qudt:hasBaseUnit unit:CentiM ; + qudt:hasBaseUnit unit:GM ; + qudt:hasBaseUnit unit:SEC ; + qudt:hasBaseUnit unit:UNITLESS ; + qudt:informativeReference "http://www.sizes.com/units/sys_cgs_em.htm"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "CGS System of Units - EMU"@en . + +sou:CGS-ESU + a qudt:SystemOfUnits ; + dcterms:description "The electrostatic system of units is a system of units used to measure electrical quantities of electric charge, current, and voltage, within the centimeter gram second (or \"CGS\") metric system of units. In electrostatic units, electrical charge is defined via the force it exerts on other charges. The various units of the e.s.u. system have specific names obtained by prefixing more familiar names with $stat$, but are often referred to purely descriptively as the 'e.s. unit of capacitance', etc. "^^rdf:HTML ; + qudt:abbreviation "CGS-ESU" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electrostatic_units"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-399#"^^xsd:anyURI ; + qudt:informativeReference "http://www.sizes.com/units/sys_cgs_stat.htm"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "CGS System of Units ESU"@en . + +sou:CGS-GAUSS + a qudt:SystemOfUnits ; + dcterms:description "Gaussian units constitute a metric system of physical units. This system is the most common of the several electromagnetic unit systems based on cgs (centimetre–gram–second) units. It is also called the Gaussian unit system, Gaussian-cgs units, or often just cgs units. The term \"cgs units\" is ambiguous and therefore to be avoided if possible: there are several variants of cgs with conflicting definitions of electromagnetic quantities and units. [Wikipedia]"^^rdf:HTML ; + qudt:abbreviation "CGS-GAUSS" ; + qudt:hasBaseUnit unit:CentiM ; + qudt:hasBaseUnit unit:GM ; + qudt:hasBaseUnit unit:SEC ; + qudt:hasBaseUnit unit:UNITLESS ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Gaussian_units"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "CGS System of Units - Gaussian"@en ; + rdfs:seeAlso sou:CGS . + +sou:IMPERIAL + a qudt:SystemOfUnits ; + dcterms:description "A system of units formerly widely used in the UK and the rest of the English-speaking world. It includes the pound (lb), quarter (qt), hundredweight (cwt), and ton (ton); the foot (ft), yard (yd), and mile (mi); and the gallon (gal), British thermal unit (btu), etc. These units have been largely replaced by metric units, although Imperial units persist in some contexts. In January 2000 an EU regulation outlawing the sale of goods in Imperial measures was adopted into British law; an exception was made for the sale of beer and milk in pints. "^^rdf:HTML ; + qudt:abbreviation "Imperial" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Imperial_units"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199234899.001.0001/acref-9780199234899-e-3147"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Imperial System of Units"@en . + +sou:PLANCK + a qudt:SystemOfUnits ; + dcterms:description """In physics, Planck units are physical units of measurement defined exclusively in terms of five universal physical constants listed below, in such a manner that these five physical constants take on the numerical value of 1 when expressed in terms of these units. Planck units elegantly simplify particular algebraic expressions appearing in physical law. +Originally proposed in 1899 by German physicist Max Planck, these units are also known as natural units because the origin of their definition comes only from properties of nature and not from any human construct. Planck units are unique among systems of natural units, because they are not defined in terms of properties of any prototype, physical object, or even elementary particle. +Unlike the meter and second, which exist as fundamental units in the SI system for (human) historical reasons, the Planck length and Planck time are conceptually linked at a fundamental physical level. Natural units help physicists to reframe questions."""^^rdf:HTML ; + qudt:abbreviation "PLANCK" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_units"^^xsd:anyURI ; + qudt:hasBaseUnit unit:PlanckCharge ; + qudt:hasBaseUnit unit:PlanckLength ; + qudt:hasBaseUnit unit:PlanckMass ; + qudt:hasBaseUnit unit:PlanckTemperature ; + qudt:hasBaseUnit unit:PlanckTime ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_units?oldid=495407713"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Planck System of Units"@en . + +sou:SI + a qudt:SystemOfUnits ; + dcterms:description "The International System of Units (abbreviated $SI$ from French: Système international d'unités) is the modern form of the metric system and is generally a system of units of measurement devised around seven base units and the convenience of the number ten. The older metric system included several groups of units. The SI was established in 1960, based on the metre-kilogram-second system, rather than the centimetre-gram-second system, which, in turn, had a few variants."^^rdf:HTML ; + qudt:abbreviation "SI" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/International_System_of_Units"^^xsd:anyURI ; + qudt:hasBaseUnit unit:A ; + qudt:hasBaseUnit unit:CD ; + qudt:hasBaseUnit unit:K ; + qudt:hasBaseUnit unit:KiloGM ; + qudt:hasBaseUnit unit:M ; + qudt:hasBaseUnit unit:MOL ; + qudt:hasBaseUnit unit:SEC ; + qudt:hasBaseUnit unit:UNITLESS ; + qudt:informativeReference "http://aurora.regenstrief.org/~ucum/ucum.html"^^xsd:anyURI ; + qudt:informativeReference "http://physics.info/system-international/"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811"^^xsd:anyURI ; + qudt:informativeReference "http://www.nist.gov/pml/pubs/sp811/index.cfm"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1292"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-appendix-0003"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-2791"^^xsd:anyURI ; + qudt:informativeReference "https://www.govinfo.gov/content/pkg/GOVPUB-C13-f10c2ff9e7af2091314396a2d53213e4/pdf/GOVPUB-C13-f10c2ff9e7af2091314396a2d53213e4.pdf"^^xsd:anyURI ; + qudt:prefix prefix:Atto ; + qudt:prefix prefix:Centi ; + qudt:prefix prefix:Deca ; + qudt:prefix prefix:Deci ; + qudt:prefix prefix:Deka ; + qudt:prefix prefix:Exa ; + qudt:prefix prefix:Femto ; + qudt:prefix prefix:Giga ; + qudt:prefix prefix:Hecto ; + qudt:prefix prefix:Kilo ; + qudt:prefix prefix:Mega ; + qudt:prefix prefix:Micro ; + qudt:prefix prefix:Milli ; + qudt:prefix prefix:Nano ; + qudt:prefix prefix:Peta ; + qudt:prefix prefix:Pico ; + qudt:prefix prefix:Quecto ; + qudt:prefix prefix:Quetta ; + qudt:prefix prefix:Ronna ; + qudt:prefix prefix:Ronto ; + qudt:prefix prefix:Tera ; + qudt:prefix prefix:Yocto ; + qudt:prefix prefix:Yotta ; + qudt:prefix prefix:Zepto ; + qudt:prefix prefix:Zetta ; + rdfs:isDefinedBy ; + rdfs:label "International System of Units"@en . + +sou:UNSTATED + a qudt:SystemOfUnits ; + dcterms:description "This placeholder system of units is for all units that do not fit will into any other system of units as modeled here."^^rdf:HTML ; + rdfs:isDefinedBy ; + rdfs:label "Unstated System Of Units"@en . + +sou:USCS + a qudt:SystemOfUnits ; + dcterms:description "United States customary units are a system of measurements commonly used in the United States. Many U.S. units are virtually identical to their imperial counterparts, but the U.S. customary system developed from English units used in the British Empire before the system of imperial units was standardized in 1824. Several numerical differences from the imperial system are present. The vast majority of U.S. customary units have been defined in terms of the meter and the kilogram since the Mendenhall Order of 1893 (and, in practice, for many years before that date). These definitions were refined in 1959. The United States is the only industrialized nation that does not mainly use the metric system in its commercial and standards activities, although the International System of Units (SI, often referred to as \"metric\") is commonly used in the U.S. Armed Forces, in fields relating to science, and increasingly in medicine, aviation, and government as well as various sectors of industry. [Wikipedia]"^^rdf:HTML ; + qudt:abbreviation "US Customary" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/United_States_customary_units"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "US Customary Unit System"@en ; + vaem:url "http://en.wikipedia.org/wiki/US_customary_units"^^xsd:anyURI . + +vaem:GMD_QUDT-SOU + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2016-07-04"^^xsd:date ; + dcterms:creator "Ralph Hodgson" ; + dcterms:description "QUDT Systems of Units Vocabulary Version 3.1.0"^^rdf:HTML ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Systems of Units" ; + dcterms:title "QUDT Systems of Units Version 3.1Vocabulary" ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT System of Units Vocabulary Metadata Version v3.1.0" ; + vaem:graphTitle "QUDT Systems of Units Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT ; + vaem:hasSteward vaem:QUDT ; + vaem:intent "The intent of this graph is the specification of all Systems of Units" ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-SYSTEMS-OF-UNITS.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:name "sou" ; + vaem:namespace "http://qudt.org/vocab/sou/"^^xsd:anyURI ; + vaem:namespacePrefix "sou" ; + vaem:owner "qudt.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-SYSTEMS-OF-UNITS.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/sou"^^xsd:anyURI ; + vaem:usesNonImportedResource prov:wasInfluencedBy ; + vaem:usesNonImportedResource prov:wasInformedBy . + + diff --git a/libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl b/libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl new file mode 100644 index 000000000..e64a0f04d --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl @@ -0,0 +1,70104 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix dcterms: . +@prefix prefix: . +@prefix prov: . +@prefix qkdv: . +@prefix quantitykind: . +@prefix qudt: . +@prefix si-unit: . +@prefix skos: . +@prefix sou: . +@prefix unit: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:imports ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT VOCAB Units of Measure Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-UNITS-ALL . + +unit:2PiRAD + a qudt:Unit ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + rdfs:isDefinedBy ; + rdfs:label "PiRAD" . + +unit:A + a qudt:Unit ; + dcterms:description """$\\textit{Ampere}$, often shortened to $\\text{amp}$, +is the SI unit of electric current and is one of the seven SI base units defined as: + +$$\\text{A} \\equiv \\frac{\\textit{C}}{\\textit{s}} +\\equiv \\frac{\\textit{coulomb}}{\\textit{second}} +\\equiv \\frac{\\text{joule}}{\\text{weber}}$$ + +Note that SI supports only the use of symbols and deprecates the use of any abbreviations for units. +"""^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ampere"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAA101" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ampere?oldid=494026699"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA101"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:ampere ; + qudt:symbol "A" ; + qudt:ucumCode "A"^^qudt:UCUMcs ; + qudt:udunitsCode "A" ; + qudt:uneceCommonCode "AMP" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere"@de ; + rdfs:label "amper"@hu ; + rdfs:label "amper"@pl ; + rdfs:label "amper"@ro ; + rdfs:label "amper"@sl ; + rdfs:label "amper"@tr ; + rdfs:label "ampere"@en ; + rdfs:label "ampere"@it ; + rdfs:label "ampere"@ms ; + rdfs:label "ampere"@pt ; + rdfs:label "amperio"@es ; + rdfs:label "amperium"@la ; + rdfs:label "ampère"@fr ; + rdfs:label "ampér"@cs ; + rdfs:label "αμπέρ"@el ; + rdfs:label "ампер"@bg ; + rdfs:label "ампер"@ru ; + rdfs:label "אמפר"@he ; + rdfs:label "آمپر"@fa ; + rdfs:label "أمبير"@ar ; + rdfs:label "एम्पीयर"@hi ; + rdfs:label "アンペア"@ja ; + rdfs:label "安培"@zh ; + skos:altLabel "amp" . + +unit:A-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Ampere Hour}$ is a practical unit of electric charge equal to the charge flowing + in one hour through a conductor passing one ampere. + An ampere-hour or amp-hour (symbol $Ah,\\,AHr,\\, A \\cdot h, A h$) is a unit of electric + charge, with sub-units milliampere-hour ($mAh$) and milliampere second ($mAs$). + One ampere-hour is equal to 3600 coulombs (ampere-seconds), the electric charge transferred + by a steady current of one ampere for one hour. + The ampere-hour is frequently used in measurements of electrochemical systems such as + electroplating and electrical batteries. + The commonly seen milliampere-hour ($mAh$ or $mA \\cdot h$) is one-thousandth of an + ampere-hour ($3.6 \\,coulombs$). + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA102" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ampere-hour"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-86"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA102"^^xsd:anyURI ; + qudt:symbol "A·h" ; + qudt:ucumCode "A.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "AMH" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Hour"@en . + +unit:A-HR-PER-DEG_C + a qudt:Unit ; + dcterms:description """$\\textit{Ampere Hour per Degree Celsius}$ is the product of the SI base unit ampere and the unit hour + divided by the unit degree Celsius. + """^^qudt:LatexString ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD886" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD886"^^xsd:anyURI ; + qudt:symbol "A·h/°C" ; + qudt:ucumCode "A.h.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere hour per degree Celsius" . + +unit:A-HR-PER-DeciM3 + a qudt:Unit ; + dcterms:description """$\\textit{Ampere Hour per Cubic Decimetre}$ is the product of the SI base unit ampere + and the unit hour divided by 0.001-fold of the power of the SI base unit metre with + the exponent 3. + """^^qudt:LatexString ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAD883" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD883"^^xsd:anyURI ; + qudt:symbol "A·h/dm³" ; + qudt:ucumCode "A.h.dm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere hour per cubic decimetre" . + +unit:A-HR-PER-KiloGM + a qudt:Unit ; + dcterms:description "product of the SI base unit ampere and the unit hour divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAD884" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD884"^^xsd:anyURI ; + qudt:symbol "A·h/kg" ; + qudt:ucumCode "A.h.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "A.h/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere hour per kilogram" . + +unit:A-HR-PER-M2 + a qudt:Unit ; + dcterms:description "product of the SI base unit ampere and the unit hour divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:hasQuantityKind quantitykind:ElectricChargeSurfaceDensity ; + qudt:hasQuantityKind quantitykind:ElectricPolarization ; + qudt:iec61360Code "0112/2///62720#UAD885" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD885"^^xsd:anyURI ; + qudt:symbol "A·h/m²" ; + qudt:ucumCode "A.h.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere hour per square metre" . + +unit:A-HR-PER-M3 + a qudt:Unit ; + dcterms:description "product of the SI base unit ampere and the unit hour divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAD882" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD882"^^xsd:anyURI ; + qudt:symbol "A·h/m³" ; + qudt:ucumCode "A.h.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere hour per cubic metre" . + +unit:A-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of electromagnetic moment."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$A-M^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticAreaMoment ; + qudt:hasQuantityKind quantitykind:MagneticMoment ; + qudt:iec61360Code "0112/2///62720#UAA106" ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+meter+squared"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA106"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "A·m²" ; + qudt:ucumCode "A.m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A5" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Square Meter"@en-US ; + rdfs:label "Ampere Square Metre"@en . + +unit:A-M2-PER-J-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of gyromagnetic ratio."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$A-m^2/J-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+square+meter+per+joule+second"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "A·m²/(J·s)" ; + qudt:ucumCode "A.m2.J-1.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "A.m2/(J.s)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A10" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Square Meter per Joule Second"@en-US ; + rdfs:label "Ampere Square Metre per Joule Second"@en . + +unit:A-MIN + a qudt:Unit ; + dcterms:description "product of the SI base unit ampere and the unit minute" ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:BatteryCapacity ; + qudt:iec61360Code "0112/2///62720#UAB383" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB383"^^xsd:anyURI ; + qudt:symbol "A·min" ; + qudt:ucumCode "A.min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N95" ; + rdfs:isDefinedBy ; + rdfs:label "ampere minute" . + +unit:A-PER-A-HR + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the SI base unit ampere and the unit hour" ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD890" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD890"^^xsd:anyURI ; + qudt:symbol "A/(A·h)" ; + qudt:ucumCode "A.A-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere per ampere hour" . + +unit:A-PER-CentiM + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAB073" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB073"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit ampere divided by the 0.01-fold of the SI base unit metre" ; + qudt:symbol "A/cm" ; + qudt:ucumCode "A.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A2" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Centimeter"@en-US ; + rdfs:label "Ampere per Centimetre"@en . + +unit:A-PER-CentiM2 + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:iec61360Code "0112/2///62720#UAB052" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB052"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit ampere divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "A/cm²" ; + qudt:ucumCode "A.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "A/cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A4" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Square Centimeter"@en-US ; + rdfs:label "Ampere per Square Centimetre"@en . + +unit:A-PER-DEG_C + a qudt:Unit ; + dcterms:description "A measure used to express how a current is subject to temperature. Originally used in Wien's Law to describe phenomena related to filaments. One use today is to express how a current generator derates with temperature."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$A/degC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:informativeReference "http://books.google.com/books?id=zkErAAAAYAAJ&pg=PA60&lpg=PA60&dq=ampere+per+degree"^^xsd:anyURI ; + qudt:informativeReference "http://web.mit.edu/course/21/21.guide/use-tab.htm"^^xsd:anyURI ; + qudt:symbol "A/°C" ; + qudt:ucumCode "A.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Degree Celsius"@en . + +unit:A-PER-GM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Ampere per gram}$ is a practical unit to describe an (applied) current relative to the involved amount of material. + This unit is often found in electrochemistry to standardize test conditions and compare various scales of investigated materials. + """^^qudt:LatexString ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificElectricCurrent ; + qudt:symbol "A/g" ; + qudt:ucumCode "A.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Gram"@en . + +unit:A-PER-J + a qudt:Unit ; + dcterms:description """$\\textit{Ampere per Joule}$ is the inverse measure of $joule-per-ampere$ or $weber$. + The measure for the reciprical of magnetic flux. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$A/J$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerEnergy ; + qudt:symbol "A/J" ; + qudt:ucumCode "A.J-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/J"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Joule"@en . + +unit:A-PER-K + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAD896" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD896"^^xsd:anyURI ; + qudt:symbol "A/K" ; + qudt:ucumCode "A.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere per kelvin" . + +unit:A-PER-KiloGM + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassicElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAB485" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB485"^^xsd:anyURI ; + qudt:symbol "A/kg" ; + qudt:ucumCode "A.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H31" ; + rdfs:isDefinedBy ; + rdfs:label "ampere per kilogram" . + +unit:A-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description " is the SI unit of magnetic field strength. One ampere per meter is equal to $\\pi/250$ oersteds ($12.566\\, 371\\,millioersteds$) in CGS units. The ampere per meter is also the SI unit of \"magnetization\" in the sense of magnetic dipole moment per unit volume; in this context $1 A/m = 0.001\\,emu\\,per\\,cubic\\,centimeter$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$A/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:Coercivity ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAA104" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA104"^^xsd:anyURI ; + qudt:symbol "A/m" ; + qudt:ucumCode "A.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "AE" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere je Meter"@de ; + rdfs:label "Ampere per Meter"@en-US ; + rdfs:label "amper bölü metre"@tr ; + rdfs:label "amper na meter"@sl ; + rdfs:label "amper na metr"@pl ; + rdfs:label "ampere al metro"@it ; + rdfs:label "ampere pe metru"@ro ; + rdfs:label "ampere per meter"@ms ; + rdfs:label "ampere per metre"@en ; + rdfs:label "ampere por metro"@pt ; + rdfs:label "amperio por metro"@es ; + rdfs:label "ampère par mètre"@fr ; + rdfs:label "ampérů na metr"@cs ; + rdfs:label "ампер на метр"@ru ; + rdfs:label "آمپر بر متر"@fa ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "प्रति मीटर एम्पीयर"@hi ; + rdfs:label "アンペア毎メートル"@ja ; + rdfs:label "安培每米"@zh . + +unit:A-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Ampere Per Square Meter}$ is a unit in the category of electric current density. +This unit is commonly used in the SI unit system. +"""^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$A/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:DisplacementCurrentDensity ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:TotalCurrentDensity ; + qudt:iec61360Code "0112/2///62720#UAA105" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA105"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Current_density"^^xsd:anyURI ; + qudt:symbol "A/m²" ; + qudt:ucumCode "A.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "A/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A41" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere je Quadratmeter"@de ; + rdfs:label "Ampere per Square Meter"@en-US ; + rdfs:label "amper bölü metre kare"@tr ; + rdfs:label "amper na kvadratni meter"@sl ; + rdfs:label "amper na metr kwadratowy"@pl ; + rdfs:label "ampere al metro quadrato"@it ; + rdfs:label "ampere pe metru pătrat"@ro ; + rdfs:label "ampere per meter persegi"@ms ; + rdfs:label "ampere per square metre"@en ; + rdfs:label "ampere por metro quadrado"@pt ; + rdfs:label "amperio por metro cuadrado"@es ; + rdfs:label "ampère par mètre carré"@fr ; + rdfs:label "ampér na metr čtvereční"@cs ; + rdfs:label "ампер на квадратный метр"@ru ; + rdfs:label "آمپر بر مترمربع"@fa ; + rdfs:label "أمبير في المتر المربع"@ar ; + rdfs:label "एम्पीयर प्रति वर्ग मीटर"@hi ; + rdfs:label "アンペア毎平方メートル"@ja ; + rdfs:label "安培每平方米"@zh . + +unit:A-PER-M2-K2 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$a/m^2-k^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H-2T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:RichardsonConstant ; + qudt:iec61360Code "0112/2///62720#UAB353" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB353"^^xsd:anyURI ; + qudt:symbol "A/(m²·K²)" ; + qudt:ucumCode "A.m-2.K-2"^^qudt:UCUMcs ; + qudt:ucumCode "A/(m2.K2)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A6" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Square Meter Square Kelvin"@en-US ; + rdfs:label "Ampere per Square Metre Square Kelvin"@en . + +unit:A-PER-MilliM + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAB072" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB072"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit ampere divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "A/mm" ; + qudt:ucumCode "A.mm-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A3" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Millimeter"@en-US ; + rdfs:label "Ampere per Millimetre"@en . + +unit:A-PER-MilliM2 + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:iec61360Code "0112/2///62720#UAB051" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB051"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit ampere divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "A/mm²" ; + qudt:ucumCode "A.mm-2"^^qudt:UCUMcs ; + qudt:ucumCode "A/mm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A7" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Square Millimeter"@en-US ; + rdfs:label "Ampere per Square Millimetre"@en . + +unit:A-PER-PA + a qudt:Unit ; + dcterms:description "SI base unit ampere divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB320" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB320"^^xsd:anyURI ; + qudt:symbol "A/Pa" ; + qudt:ucumCode "A.Pa-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/Pa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N93" ; + rdfs:isDefinedBy ; + rdfs:label "ampere per pascal" . + +unit:A-PER-RAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Ampere per Radian}$ is a derived unit for measuring the amount of current per unit measure of angle, expressed in ampere per radian."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$a-per-rad$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerAngle ; + qudt:symbol "A/rad" ; + qudt:ucumCode "A.rad-1"^^qudt:UCUMcs ; + qudt:ucumCode "A/rad"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ampere per Radian"@en . + +unit:A-SEC + a qudt:Unit ; + dcterms:description "product out of the SI base unit ampere and the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA107" ; + qudt:iec61360Code "0112/2///62720#UAD516" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA107"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD516"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the SI base unit ampere and the SI base unit second" ; + qudt:symbol "A·s" ; + qudt:ucumCode "A.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A8" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Second"@en . + +unit:A-SEC2 + a qudt:Unit ; + dcterms:description "product out of the power of the SI base unit ampere and the SI base unit second with the exponent 2" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "A·s²" ; + qudt:ucumCode "A.s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ampere per square second" . + +unit:A2-SEC + a qudt:Unit ; + dcterms:description "product out of the power of the SI base unit ampere with the exponent 2 and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E2L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA108" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA108"^^xsd:anyURI ; + qudt:symbol "A²·s" ; + qudt:ucumCode "A2.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H32" ; + rdfs:isDefinedBy ; + rdfs:label "ampere squared second" . + +unit:AC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The acre is a unit of area in a number of different systems, including the imperial and U.S. customary systems. Its international symbol is ac. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4046.8564224 ; + qudt:conversionMultiplierSN 4.0468564224E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Acre"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAA320" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acre?oldid=495387342"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA320"^^xsd:anyURI ; + qudt:scalingOf unit:M2 ; + qudt:symbol "acre" ; + qudt:ucumCode "[acr_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "ACR" ; + rdfs:isDefinedBy ; + rdfs:label "Acre"@en ; + skos:altLabel "acre" . + +unit:AC-FT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "An acre-foot is a unit of volume commonly used in the United States in reference to large-scale water resources, such as reservoirs, aqueducts, canals, sewer flow capacity, and river flows. It is defined by the volume of one acre of surface area to a depth of one foot. Since the acre is defined as a chain by a furlong ($66 ft \\times 660 ft$) the acre-foot is exactly $43,560 cubic feet$. For irrigation water, the volume of $1 ft \\times 1 \\; ac = 43,560 \\; ft^{3} (1,233.482 \\; m^{3}, 325,851 \\; US gal)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1233.4818375475202 ; + qudt:conversionMultiplierSN 1.2334818375475202E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:AC-FT_US ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:AC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB288" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Acre-foot"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-35"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB288"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "acre·ft" ; + qudt:ucumCode "[acr_br].[ft_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Acre Foot"@en . + +unit:AC-FT_US + a qudt:Unit ; + dcterms:description "unit of the volume, which is used in the United States to measure/gauge the capacity of reservoirs" ; + qudt:conversionMultiplier 1233.48426566137344 ; + qudt:conversionMultiplierSN 1.23348426566137344E3 ; + qudt:exactMatch unit:AC-FT ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:AC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT_US ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB288" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB288"^^xsd:anyURI ; + qudt:symbol "acre·ft{US Survey}" ; + qudt:ucumCode "[acr_br].[ft_us]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "acre-foot (based on U.S. survey foot)" . + +unit:AMU + a qudt:Unit ; + dcterms:description "The $\\textit{Unified Atomic Mass Unit}$ (symbol: $\\mu$) or $\\textit{dalton}$ (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of $1.660538782(83) \\times 10^{-27} kg$. One $Da$ is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a $\\textit{\"non-SI unit whose values in SI units must be obtained experimentally\"}$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ; + qudt:conversionMultiplierSN 1.66053878283E-27 ; + qudt:exactMatch unit:DA ; + qudt:exactMatch unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "amu" ; + qudt:ucumCode "u"^^qudt:UCUMcs ; + qudt:udunitsCode "u" ; + qudt:uneceCommonCode "D43" ; + rdfs:isDefinedBy ; + rdfs:label "Atomic mass unit"@en . + +unit:ANGSTROM + a qudt:Unit ; + dcterms:description "The $Angstr\\ddot{o}m$ is an internationally recognized unit of length equal to $0.1 \\,nanometre$ or $1 \\times 10^{-10}\\,metres$. Although accepted for use, it is not formally defined within the International System of Units(SI). The angstrom is often used in the natural sciences to express the sizes of atoms, lengths of chemical bonds and the wavelengths of electromagnetic radiation, and in technology for the dimensions of parts of integrated circuits. It is also commonly used in structural biology."^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000000001 ; + qudt:conversionMultiplierSN 1.0E-10 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/%C3%85ngstr%C3%B6m"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA023" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ångström?oldid=436192495"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA023"^^xsd:anyURI ; + qudt:latexSymbol "$\\AA$"^^qudt:LatexString ; + qudt:scalingOf unit:M ; + qudt:symbol "Å" ; + qudt:ucumCode "Ao"^^qudt:UCUMcs ; + qudt:udunitsCode "Å" ; + qudt:udunitsCode "Å" ; + qudt:uneceCommonCode "A11" ; + rdfs:isDefinedBy ; + rdfs:label "Angstrom"@en . + +unit:ANGSTROM3 + a qudt:Unit ; + dcterms:description "A unit that is a non-SI unit, specifically a CGS unit, of polarizability known informally as polarizability volume. The SI defined units for polarizability are C*m^2/V and can be converted to $Angstr\\ddot{o}m$^3 by multiplying the SI value by 4 times pi times the vacuum permittivity and then converting the resulting m^3 to $Angstr\\ddot{o}m$^3 through the SI base 10 conversion (multiplying by 10^-30)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.000000000000000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-30 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:ANGSTROM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:symbol "ų" ; + qudt:ucumCode "Ao3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Angstrom"@en ; + rdfs:label "Cubic Angstrom"@en-US . + +unit:ARCMIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A minute of arc, arcminute, or minute arc (MOA), is a unit of angular measurement equal to one sixtieth (1/60) of one degree (circle/21,600), or $\\pi /10,800 radians$. In turn, a second of arc or arcsecond is one sixtieth (1/60) of one minute of arc. Since one degree is defined as one three hundred and sixtieth (1/360) of a rotation, one minute of arc is 1/21,600 of a rotation. "^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000290888209 ; + qudt:conversionMultiplierSN 2.90888209E-4 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:MIN_Angle ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA097" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA097"^^xsd:anyURI ; + qudt:siExactMatch si-unit:arcminute ; + qudt:siUnitsExpression "1" ; + qudt:symbol "'" ; + qudt:ucumCode "'"^^qudt:UCUMcs ; + qudt:udunitsCode "′" ; + qudt:uneceCommonCode "D61" ; + rdfs:isDefinedBy ; + rdfs:label "ArcMinute"@en . + +unit:ARCSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Arc Second\" is a unit of angular measure, also called the $\\textit{second of arc}$, equal to $1/60 \\; arcminute$. One arcsecond is a very small angle: there are 1,296,000 in a circle. The SI recommends $\\textit{double prime}$ ($''$) as the symbol for the arcsecond. The symbol has become common in astronomy, where very small angles are stated in milliarcseconds ($mas$)."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000484813681 ; + qudt:conversionMultiplierSN 4.84813681E-6 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA096" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc#Symbols.2C_abbreviations_and_subdivisions"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA096"^^xsd:anyURI ; + qudt:siExactMatch si-unit:arcsecond ; + qudt:symbol "\"" ; + qudt:ucumCode "''"^^qudt:UCUMcs ; + qudt:udunitsCode "″" ; + qudt:uneceCommonCode "D62" ; + rdfs:isDefinedBy ; + rdfs:label "ArcSecond"@en . + +unit:ARE + a qudt:Unit ; + dcterms:description "An 'are' is a unit of area equal to 0.02471 acre and 100 centare."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB048" ; + qudt:informativeReference "http://www.anidatech.com/units.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB048"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M2 ; + qudt:symbol "a" ; + qudt:ucumCode "ar"^^qudt:UCUMcs ; + qudt:udunitsCode "a" ; + qudt:uneceCommonCode "ARE" ; + rdfs:isDefinedBy ; + rdfs:label "are"@en . + +unit:AT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The $\\textit{ampere-turn}$ was the MKS unit of magnetomotive force (MMF), represented by a direct current of one ampere flowing in a single-turn loop in a vacuum. \"Turns\" refers to the winding number of an electrical conductor comprising an inductor. The ampere-turn was replaced by the SI unit, $ampere$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:scalingOf unit:A ; + qudt:symbol "AT" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Turn"@en . + +unit:AT-PER-IN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Ampere Turn per Inch}$ is a measure of magnetic field intensity and is equal to 12.5664 Oersted. + """^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 39.3700787 ; + qudt:conversionMultiplierSN 3.93700787E1 ; + qudt:expression "$At/in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:AT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:symbol "AT/in" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Turn per Inch"@en . + +unit:AT-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Ampere Turn per Metre}$ is the SI unit of magnetic field strength. + One ampere per meter is equal to $\\pi/250$ oersteds (12.566 371 millioersteds) in CGS units. + The ampere per meter is also the SI unit of "magnetization" in the sense of magnetic dipole moment per unit volume; + in this context $1 A/m = 0.001 emu per cubic centimeter$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$At/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:AT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:symbol "AT/m" ; + rdfs:isDefinedBy ; + rdfs:label "Ampere Turn per Meter"@en-US ; + rdfs:label "Ampere Turn per Metre"@en . + +unit:ATM + a qudt:Unit ; + dcterms:description """ + The unit for $\\textit{Standard Atmosphere}$, symbol: $atm$, is an international reference pressure defined as $101.325 \\,kPa$ and formerly used as unit of pressure. + For practical purposes it has been replaced by the bar which is $100 kPa$. + The difference of about 1% is not significant for many applications, and is within the error range of common pressure gauges. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 101325.0 ; + qudt:conversionMultiplierSN 1.01325E5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA322" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atmosphere_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA322"^^xsd:anyURI ; + qudt:scalingOf unit:PA ; + qudt:symbol "atm" ; + qudt:ucumCode "atm"^^qudt:UCUMcs ; + qudt:udunitsCode "atm" ; + qudt:uneceCommonCode "ATM" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Atmosphere"@en . + +unit:ATM-M3-PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Atmosphere Cubic Metre per Mole}$ consists of the power of the SI base unit metre with the exponent 3 multiplied by the unit atmosphere divided by the SI base unit mol. + """^^qudt:LatexString ; + qudt:conversionMultiplier 101325.0 ; + qudt:conversionMultiplierSN 1.01325E5 ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ATM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:HenrysLawVolatilityConstant ; + qudt:symbol "atm·m³/mol" ; + qudt:ucumCode "atm.m3.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "atm.m3/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Atmosphere Cubic Meter per Mole"@en-US ; + rdfs:label "Atmosphere Cubic Metre per Mole"@en . + +unit:ATM-PER-M + a qudt:Unit ; + dcterms:description """ + An [outdated] unit of the pressure divided by the SI base unit metre + """ ; + qudt:conversionMultiplier 101325.0 ; + qudt:conversionMultiplierSN 1.01325E5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ATM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB423" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB423"^^xsd:anyURI ; + qudt:symbol "atm/m" ; + qudt:ucumCode "atm.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "atm/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P83" ; + rdfs:isDefinedBy ; + rdfs:label "standard atmosphere per metre" . + +unit:ATM_T + a qudt:Unit ; + dcterms:description """ + The unit for $\\textit{Technical Atmosphere}$, symbol: $at$, is a non-SI unit of pressure equal to one kilogram-force per square centimeter. + The symbol $at$ clashes with that of the katal (symbol: $kat$), the SI unit of catalytic activity; a kilotechnical atmosphere would have the symbol $kat$, indistinguishable from the symbol for katal. + It also clashes with that of the non-SI unit, the $attotonne$, but that unit would be more likely be rendered as the equivalent SI unit. + Assay ton (abbreviation $AT$) is not a unit of measurement, but a standard quantity used in assaying ores of precious metals; it is $29 1D6 \\,grams$ (short assay ton) or $32 2D3 \\,grams$ (long assay ton), + the amount which bears the same ratio to a milligram as a short or long ton bears to a troy ounce. + In other words, the number of milligrams of a particular metal found in a sample of this size gives the number of troy ounces contained in a short or long ton of ore. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 98066.5 ; + qudt:conversionMultiplierSN 9.80665E4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA321" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Technical_atmosphere"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA321"^^xsd:anyURI ; + qudt:latexDefinition "$1 at = 98.0665 kPa \\approx 0.96784 standard atmospheres$"^^qudt:LatexString ; + qudt:scalingOf unit:PA ; + qudt:symbol "at" ; + qudt:ucumCode "att"^^qudt:UCUMcs ; + qudt:udunitsCode "at" ; + qudt:uneceCommonCode "ATT" ; + rdfs:isDefinedBy ; + rdfs:label "Technical Atmosphere"@en . + +unit:ATM_T-PER-M + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{technical atmosphere per metre}$ is the pressure which is generated by a 10 metre water + column divided by the SI base unit metre. + """^^qudt:LatexString ; + qudt:conversionMultiplier 98066.5 ; + qudt:conversionMultiplierSN 9.80665E4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ATM_T ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB424" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB424"^^xsd:anyURI ; + qudt:symbol "at/m" ; + qudt:ucumCode "att.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "att/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P84" ; + rdfs:isDefinedBy ; + rdfs:label "technical atmosphere per metre" . + +unit:AU + a qudt:Unit ; + dcterms:description """ + An $\\textit{astronomical unit}$, abbreviated as $AU$, $au$, $a.u.$, or $ua$ is a unit of length equal + to $149,597,870,700\\, metres$ ($92,955,807.273\\, mi$) or approximately the mean Earth Sun distance. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 149597870691.6 ; + qudt:conversionMultiplierSN 1.495978706916E11 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Astronomical_unit"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB066" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Astronomical_unit"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB066"^^xsd:anyURI ; + qudt:plainTextDescription "An astronomical unit (abbreviated as AU, au, a.u., or ua) is a unit of length equal to 149,597,870,700 metres (92,955,807.273 mi) or approximately the mean Earth Sun distance. The symbol ua is recommended by the International Bureau of Weights and Measures, and the international standard ISO 80000, while au is recommended by the International Astronomical Union, and is more common in Anglosphere countries. In general, the International System of Units only uses capital letters for the symbols of units which are named after individual scientists, while au or a.u. can also mean atomic unit or even arbitrary unit. However, the use of AU to refer to the astronomical unit is widespread. The astronomical constant whose value is one astronomical unit is referred to as unit distance and is given the symbol A. [Wikipedia]" ; + qudt:scalingOf unit:M ; + qudt:siExactMatch si-unit:astronomicalunit ; + qudt:symbol "AU" ; + qudt:ucumCode "AU"^^qudt:UCUMcs ; + qudt:udunitsCode "au" ; + qudt:udunitsCode "ua" ; + qudt:uneceCommonCode "A12" ; + rdfs:isDefinedBy ; + rdfs:label "astronomical-unit"@en . + +unit:A_Ab + a qudt:Unit ; + dcterms:description """ + The $\\textit{Abampere (aA)}$, also called the $biot$ after Jean-Baptiste Biot, is the basic electromagnetic unit of electric current in the emu-cgs system of units (electromagnetic cgs). + One $abampere$ is equal to ten amperes in the SI system of units. + An $abampere$ is the constant current that produces, when maintained in two parallel conductors of negligible circular section and of infinite length placed 1 centimetre apart, + a force of 2 dynes per centimetre between the two conductors. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abampere"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:exactMatch unit:BIOT ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abampere?oldid=489318583"^^xsd:anyURI ; + qudt:informativeReference "http://wordinfo.info/results/abampere"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-13?rskey=i2kRRz"^^xsd:anyURI ; + qudt:latexDefinition "$1\\,abA = 10\\,A$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:plainTextDescription "The Abampere (aA), also called the biot after Jean-Baptiste Biot, is the basic electromagnetic unit of electric current in the emu-cgs system of units (electromagnetic cgs). One abampere is equal to ten amperes in the SI system of units. An abampere is the constant current that produces, when maintained in two parallel conductors of negligible circular section and of infinite length placed 1 centimetre apart, a force of 2 dynes per centimetre between the two conductors." ; + qudt:scalingOf unit:A ; + qudt:symbol "abA" ; + qudt:ucumCode "Bi"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abampere"@en ; + skos:altLabel "biot" . + +unit:A_Ab-CentiM2 + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Abampere Square Centimeter}$ is the unit of magnetic moment in the electromagnetic centimeter-gram-second system. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:expression "$aAcm2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Ab ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticAreaMoment ; + qudt:hasQuantityKind quantitykind:MagneticMoment ; + qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ; + qudt:symbol "abA·cm²" ; + qudt:ucumCode "Bi.cm2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abampere Square centimeter"@en-US ; + rdfs:label "Abampere Square centimetre"@en ; + vaem:todo "Determine type for magnetic moment" . + +unit:A_Ab-PER-CentiM2 + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Abampere Per Square Centimeter}$, symbol $aA/cm^2$, is a unit in the category of Electric current density. + It is also known as $\\textit{abamperes per square centimeter}$, $\\textit{abampere/square centimeter}$, + and $\\textit{abampere per square centimetre}$. + This unit is commonly used in the cgs unit system. + $\\textit{Abampere Per Square Centimeter}$ has a dimension of $L^{-2}I$ where $L$ is length, and $I$ is electric current. + It can be converted to the corresponding standard SI unit $A/m^{2}$ by multiplying its value by a factor of 100000. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:expression "$aba-per-cm2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Ab ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:informativeReference "http://wordinfo.info/results/abampere"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_current_density--abampere_per_square_centimeter.cfm"^^xsd:anyURI ; + qudt:symbol "abA/cm²" ; + qudt:ucumCode "Bi.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "Bi/cm2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abampere per Square Centimeter"@en-US ; + rdfs:label "Abampere per Square Centimetre"@en . + +unit:A_Stat + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Statampere}$, symbol $statA$ is a unit in the category of Electric current. + It is also known as statamperes. + This unit is commonly used in the cgs unit system. + $\\textit{Statampere (statA)}$ has a dimension of $I$ where $I$ is electric current. + It can be converted to the corresponding standard SI unit $A$ by multiplying its value by a factor of 3.355641E-010. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.0000000003335641 ; + qudt:conversionMultiplierSN 3.335641E-10 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_current--statampere.cfm"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A ; + qudt:symbol "statA" ; + rdfs:isDefinedBy ; + rdfs:label "Statampere"@en . + +unit:A_Stat-PER-CentiM2 + a qudt:Unit ; + dcterms:description """ + The $\\textit{Statampere per Square Centimeter}$ is a unit of electric current density in the c.g.s. system of units. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.000003335641 ; + qudt:conversionMultiplierSN 3.335641E-6 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:expression "$statA / cm^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:symbol "statA/cm²" ; + rdfs:isDefinedBy ; + rdfs:label "Statampere per Square Centimeter"@en-US ; + rdfs:label "Statampere per Square Centimetre"@en . + +unit:AttoA + a qudt:Unit ; + dcterms:description """ + An $\\textit{AttoAmpere}$ is 0.000000000000000001-fold of the unit ampere + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAB637" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB637"^^xsd:anyURI ; + qudt:prefix prefix:Atto ; + qudt:scalingOf unit:A ; + qudt:symbol "aA" ; + rdfs:isDefinedBy ; + rdfs:label "attoampere" . + +unit:AttoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + An $\\textit{AttoColomb}$ is $10^{-18} C$, where $C$ is the unit for $Colomb$. + """^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Atto ; + qudt:scalingOf unit:C ; + qudt:symbol "aC" ; + qudt:ucumCode "aC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "AttoCoulomb"@en . + +unit:AttoFARAD + a qudt:Unit ; + dcterms:description """ + The $\\textit{AttoFarad}$ is 0,000 000 000 000 000 001-fold of the SI derived unit $farad$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA319" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA319"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000000000001-fold of the SI derived unit farad" ; + qudt:prefix prefix:Atto ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "aF" ; + qudt:ucumCode "aF"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H48" ; + rdfs:isDefinedBy ; + rdfs:label "Attofarad"@en . + +unit:AttoJ + a qudt:Unit ; + dcterms:description """ + The $\\textit{AttoJoule}$ is 0,000 000 000 000 000 001-fold of the derived SI unit $joule$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB125" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB125"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000000000001-fold of the derived SI unit joule" ; + qudt:prefix prefix:Atto ; + qudt:scalingOf unit:J ; + qudt:symbol "aJ" ; + qudt:ucumCode "aJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A13" ; + rdfs:isDefinedBy ; + rdfs:label "Attojoule"@en . + +unit:AttoJ-SEC + a qudt:Unit ; + dcterms:description """ + The $\\textit{AttoJoule Second}$ is the unit for the Planck's constant as product of the SI derived unit joule and the SI base unit second. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:AttoJ ; + ] ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:plainTextDescription "unit of the Planck's constant as product of the SI derived unit joule and the SI base unit second" ; + qudt:symbol "aJ·s" ; + qudt:ucumCode "aJ.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Attojoule Second"@en . + +unit:AttoSEC + a qudt:Unit ; + dcterms:description """ + An $\\textit{AttoSecond}$ is 0.000000000000000001-fold of the SI base unit $second$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAC696" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC696"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000000000001-fold of the SI base unit second" ; + qudt:prefix prefix:Atto ; + qudt:scalingOf unit:SEC ; + qudt:symbol "as" ; + qudt:ucumCode "as"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Attosecond"@en . + +unit:B + a qudt:DimensionlessUnit, qudt:LogarithmicUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Bel}$ is a logarithmic unit of sound pressure equal to 10 decibels (dB). + It is defined as: $1 B = (1/2) \\log_{10}(Np)$ + """^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bel"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:iec61360Code "0112/2///62720#UAB351" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_unit"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB351"^^xsd:anyURI ; + qudt:siExactMatch si-unit:bel ; + qudt:symbol "B" ; + qudt:ucumCode "B"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M72" ; + rdfs:isDefinedBy ; + rdfs:label "Bel"@de ; + rdfs:label "bel"@cs ; + rdfs:label "bel"@en ; + rdfs:label "bel"@fr ; + rdfs:label "bel"@hu ; + rdfs:label "bel"@it ; + rdfs:label "bel"@ms ; + rdfs:label "bel"@pl ; + rdfs:label "bel"@pt ; + rdfs:label "bel"@ro ; + rdfs:label "bel"@sl ; + rdfs:label "bel"@tr ; + rdfs:label "belio"@es ; + rdfs:label "μπέλ"@el ; + rdfs:label "бел"@bg ; + rdfs:label "бел"@ru ; + rdfs:label "בל"@he ; + rdfs:label "بل"@ar ; + rdfs:label "بل"@fa ; + rdfs:label "बेल"@hi ; + rdfs:label "ベル"@ja ; + rdfs:label "贝"@zh . + +unit:B-PER-M + a qudt:Unit ; + dcterms:description """ + The $\\textit{Bel}$ is the unit $\\textit{Bel}$ divided by the SI base unit metre/ + """^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:B ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearLogarithmicRatio ; + qudt:iec61360Code "0112/2///62720#UAB480" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB480"^^xsd:anyURI ; + qudt:symbol "B/m" ; + qudt:ucumCode "B.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "B/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P43" ; + rdfs:isDefinedBy ; + rdfs:label "bel per metre" . + +unit:BAN + a qudt:Unit ; + dcterms:description """ + A $\\textit{ban}$ is a logarithmic unit which measures information or entropy, + based on base 10 logarithms and powers of 10, rather than the powers of 2 + and base 2 logarithms which define the bit. + One $\\textit{ban}$ is approximately $3.32 (log_2 10) bits$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 2.30258509 ; + qudt:conversionMultiplierSN 2.30258509E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ban"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ban?oldid=472969907"^^xsd:anyURI ; + qudt:symbol "ban" ; + qudt:uneceCommonCode "Q15" ; + rdfs:isDefinedBy ; + rdfs:label "Ban"@en . + +unit:BAR + a qudt:Unit ; + dcterms:description """ + The $\\textit{bar}$ is a non-SI unit of pressure, defined by the IUPAC as exactly equal + to $100,000\\,Pa$. + It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 + the IUPAC has recommended that the standard for atmospheric pressure should be + harmonized to $100,000\\,Pa = 1 \\,bar \\approx 750.0616827\\, Torr$. + Units derived from the bar are the megabar (symbol: $Mbar$), kilobar (symbol: $kbar$), + decibar (symbol: $dbar$), centibar (symbol: $cbar$), and millibar (symbol: $mbar$ or $mb$). + They are not SI or cgs units, but they are accepted for use with the SI. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA323" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar?oldid=493875987"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA323"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:PA ; + qudt:symbol "bar" ; + qudt:ucumCode "bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "BAR" ; + rdfs:isDefinedBy ; + rdfs:label "Bar"@en . + +unit:BAR-L-PER-SEC + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Bar Litre Per Second}$ is the product of the unit $bar$ and + the unit $litre$ divided by the SI base unit for second. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA326" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA326"^^xsd:anyURI ; + qudt:plainTextDescription "The unit 'Bar Litre Per Second' is the product of the unit bar and the unit litre divided by the SI base unit second" ; + qudt:symbol "bar·L/s" ; + qudt:ucumCode "bar.L.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "bar.L/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F91" ; + rdfs:isDefinedBy ; + rdfs:label "Bar Liter per Second"@en-US ; + rdfs:label "Bar Litre per Second"@en . + +unit:BAR-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 0.001-fold of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA814" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA814"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 0.001-fold of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "bar·m³/s" ; + qudt:ucumCode "bar.m3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "bar.m3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F92" ; + rdfs:isDefinedBy ; + rdfs:label "Bar Cubic Meter per Second"@en-US ; + rdfs:label "Bar Cubic Metre per Second"@en . + +unit:BAR-PER-BAR + a qudt:Unit ; + dcterms:description "pressure relation consisting of the unit bar divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA325" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA325"^^xsd:anyURI ; + qudt:plainTextDescription "pressure relation consisting of the unit bar divided by the unit bar" ; + qudt:symbol "bar/bar" ; + qudt:ucumCode "bar.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "bar/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J56" ; + rdfs:isDefinedBy ; + rdfs:label "Bar per Bar"@en . + +unit:BAR-PER-DEG_C + a qudt:Unit ; + dcterms:description "unit bar divided by the unit °Celsius" ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAD921" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD921"^^xsd:anyURI ; + qudt:symbol "bar/°C" ; + qudt:ucumCode "bar.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "bar/Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "bar per degree Celsius" . + +unit:BAR-PER-K + a qudt:Unit ; + dcterms:description "unit with the name bar divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA324" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA324"^^xsd:anyURI ; + qudt:plainTextDescription "unit with the name bar divided by the SI base unit kelvin" ; + qudt:symbol "bar/K" ; + qudt:ucumCode "bar.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "bar/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F81" ; + rdfs:isDefinedBy ; + rdfs:label "Bar per Kelvin"@en . + +unit:BARAD + a qudt:Unit ; + dcterms:description "A barad is a dyne per square centimetre ($dyn \\cdot cm^{-2}$), and is equal to $0.1 Pa $ ($1 \\, micro \\, bar$, $0.000014504 \\, p.s.i.$). Note that this is precisely the microbar, the confusable bar being related in size to the normal atmospheric pressure, at $100\\,dyn \\cdot cm^{-2}$. Accordingly barad was not abbreviated, so occurs prefixed as in $cbarad = centibarad$. Despite being the coherent unit for pressure in c.g.s., barad was probably much less common than the non-coherent bar. Barad is sometimes called $barye$, a name also used for $bar$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:exactMatch unit:BARYE ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:symbol "Ba" ; + rdfs:isDefinedBy ; + rdfs:label "Barad"@en . + +unit:BARN + a qudt:Unit ; + dcterms:description "A barn (symbol b) is a unit of area. Originally used in nuclear physics for expressing the cross sectional area of nuclei and nuclear reactions, today it is used in all fields of high energy physics to express the cross sections of any scattering process, and is best understood as a measure of the probability of interaction between small particles. A barn is defined as $10^{-28} m^2 (100 fm^2)$ and is approximately the cross sectional area of a uranium nucleus. The barn is also the unit of area used in nuclear quadrupole resonance and nuclear magnetic resonance to quantify the interaction of a nucleus with an electric field gradient. While the barn is not an SI unit, it is accepted for use with the SI due to its continued use in particle physics."^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000000000000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-28 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Barn"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB297" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barn?oldid=492907677"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barn_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB297"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M2 ; + qudt:symbol "b" ; + qudt:ucumCode "b"^^qudt:UCUMcs ; + qudt:udunitsCode "b" ; + qudt:uneceCommonCode "A14" ; + rdfs:isDefinedBy ; + rdfs:label "Barn"@en . + +unit:BARN-PER-EV + a qudt:Unit ; + dcterms:description "unit for the representation of the cross section barn divided by the unit of the energy electronvolt which is used for the atomic physics, nuclear physics and particle physics" ; + qudt:conversionMultiplier 0.0000000006241509074460762607776240980930446 ; + qudt:conversionMultiplierSN 6.241509074460762607776240980930446E-10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BARN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB127" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB127"^^xsd:anyURI ; + qudt:symbol "b/eV" ; + qudt:ucumCode "b.eV-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A15" ; + rdfs:isDefinedBy ; + rdfs:label "barn per electronvolt" . + +unit:BARN-PER-SR + a qudt:Unit ; + dcterms:description "unit for the representation of the cross section barn divided by the unit of the solid angle steradian" ; + qudt:conversionMultiplier 0.0000000000000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-28 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BARN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB128" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB128"^^xsd:anyURI ; + qudt:symbol "b/sr" ; + qudt:ucumCode "b.sr-1"^^qudt:UCUMcs ; + qudt:ucumCode "b/sr"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A17" ; + rdfs:isDefinedBy ; + rdfs:label "barn per steradian" . + +unit:BARN-PER-SR-EV + a qudt:Unit ; + dcterms:description "unit for the representation of the cross section barn divided by the product of the unit of the solid angle steradian and the unit of the energy electronvolt which is used for the atomic physics, nuclear physics and particle physics" ; + qudt:conversionMultiplier 0.0000000006241509074460762607776240980930446 ; + qudt:conversionMultiplierSN 6.241509074460762607776240980930446E-10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BARN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB140" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB140"^^xsd:anyURI ; + qudt:symbol "b/(sr·eV)" ; + qudt:ucumCode "b.sr-1.eV-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A16" ; + rdfs:isDefinedBy ; + rdfs:label "barn per steradian electronvolt" . + +unit:BARYE + a qudt:Unit ; + dcterms:description "

The barye, or sometimes barad, barrie, bary, baryd, baryed, or barie, is the centimetre-gram-second (CGS) unit of pressure. It is equal to 1 dyne per square centimetre.

"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Barye"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:exactMatch unit:BARAD ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barye?oldid=478631158"^^xsd:anyURI ; + qudt:latexDefinition "$g/(cm\\cdot s{2}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:symbol "Ba" ; + rdfs:isDefinedBy ; + rdfs:label "Barye"@en ; + skos:altLabel "barad" ; + skos:altLabel "barie" ; + skos:altLabel "bary" ; + skos:altLabel "baryd" ; + skos:altLabel "baryed" . + +unit:BAUD + a qudt:Unit ; + dcterms:description "unit for the symbol rate in communications engineering and telecommunication, at which 1 baud corresponds to the speed, at which 1 symbol (defined measurable signal change in the physical exchange medium) will be exchanged per second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DigitRate ; + qudt:iec61360Code "0112/2///62720#UAA109" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA109"^^xsd:anyURI ; + qudt:symbol "Bd" ; + qudt:uneceCommonCode "J38" ; + rdfs:isDefinedBy ; + rdfs:label "baud" . + +unit:BBL + a qudt:Unit ; + dcterms:description "A barrel is one of several units of volume, with dry barrels, fluid barrels (UK beer barrel, U.S. beer barrel), oil barrel, etc. The volume of some barrel units is double others, with various volumes in the range of about 100-200 litres (22-44 imp gal; 26-53 US gal)."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Barrel"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:BBL_US ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA334" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barrel?oldid=494614619"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA334"^^xsd:anyURI ; + qudt:symbol "bbl" ; + qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "BLL" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel"@en . + +unit:BBL_UK_PET + a qudt:Unit ; + dcterms:description "unit of the volume for crude oil according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.1591132 ; + qudt:conversionMultiplierSN 1.591132E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA329" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA329"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for crude oil according to the Imperial system of units" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "bbl{UK petroleum}" ; + qudt:uneceCommonCode "J57" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (UK Petroleum)"@en . + +unit:BBL_UK_PET-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000001841587 ; + qudt:conversionMultiplierSN 1.841587E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_UK_PET ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA331" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA331"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit day" ; + qudt:symbol "bbl{UK petroleum}/d" ; + qudt:uneceCommonCode "J59" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (UK Petroleum) per Day"@en . + +unit:BBL_UK_PET-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000441981 ; + qudt:conversionMultiplierSN 4.41981E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_UK_PET ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA332" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA332"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit hour" ; + qudt:symbol "bbl{UK petroleum}/h" ; + qudt:uneceCommonCode "J60" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (UK Petroleum) per Hour"@en . + +unit:BBL_UK_PET-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.002651886 ; + qudt:conversionMultiplierSN 2.651886E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_UK_PET ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA330" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA330"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit minute" ; + qudt:symbol "bbl{UK petroleum}/min" ; + qudt:uneceCommonCode "J58" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (UK Petroleum) per Minute"@en . + +unit:BBL_UK_PET-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.1591132 ; + qudt:conversionMultiplierSN 1.591132E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_UK_PET ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA333" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA333"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "bbl{UK petroleum}/s" ; + qudt:uneceCommonCode "J61" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (UK Petroleum) per Second"@en . + +unit:BBL_US + a qudt:Unit ; + dcterms:description "unit of the volume for crude oil according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1589873 ; + qudt:conversionMultiplierSN 1.589873E-1 ; + qudt:exactMatch unit:BBL ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA334" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA334"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for crude oil according to the Anglo-American system of units" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "bbl{US petroleum}" ; + qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "bbl" ; + qudt:uneceCommonCode "BLL" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US)"@en . + +unit:BBL_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000184 ; + qudt:conversionMultiplierSN 1.84E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA335" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA335"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit day" ; + qudt:symbol "bbl{US petroleum}/d" ; + qudt:ucumCode "[bbl_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bbl_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B1" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US) per Day"@en . + +unit:BBL_US-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0026498 ; + qudt:conversionMultiplierSN 2.6498E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA337" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA337"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit minute" ; + qudt:symbol "bbl{US petroleum}/min" ; + qudt:ucumCode "[bbl_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bbl_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "5A" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US) per Minute"@en . + +unit:BBL_US_DRY + a qudt:Unit ; + dcterms:description "non SI-conform unit of the volume in the USA which applies to a resolution from 1912: 1 dry barrel (US) equals approximately to 115.63 litre"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1156281989625 ; + qudt:conversionMultiplierSN 1.156281989625E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAB117" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB117"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conform unit of the volume in the USA which applies to a resolution from 1912: 1 dry barrel (US) equals approximately to 115.63 litre" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "bbl{US dry}" ; + qudt:uneceCommonCode "BLD" ; + rdfs:isDefinedBy ; + rdfs:label "Dry Barrel (US)"@en . + +unit:BBL_US_PET + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1589873 ; + qudt:conversionMultiplierSN 1.589873E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units" ; + qudt:symbol "bbl{US petroleum}" ; + qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US Petroleum)"@en ; + skos:broader unit:BBL_US . + +unit:BBL_US_PET-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000044163 ; + qudt:conversionMultiplierSN 4.4163E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_US_PET ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA336" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA336"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit hour" ; + qudt:symbol "bbl{UK petroleum}/h" ; + qudt:ucumCode "[bbl_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bbl_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J62" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US Petroleum) per Hour"@en . + +unit:BBL_US_PET-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1589873 ; + qudt:conversionMultiplierSN 1.589873E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BBL_US_PET ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA338" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA338"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "bbl{UK petroleum}/s" ; + qudt:ucumCode "[bbl_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bbl_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J62" ; + rdfs:isDefinedBy ; + rdfs:label "Barrel (US Petroleum) per Second"@en . + +unit:BEAT-PER-MIN + a qudt:ContextualUnit, qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Heart Beat per Minute\" is a unit for 'Heart Rate' expressed as $BPM$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BEAT ; + ] ; + qudt:hasQuantityKind quantitykind:HeartRate ; + qudt:symbol "BPM" ; + qudt:ucumCode "/min{H.B.}"^^qudt:UCUMcs ; + qudt:ucumCode "min-1{H.B.}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Heart Beats per Minute"@en ; + skos:broader unit:NUM-PER-MIN . + +unit:BFT + a qudt:Unit ; + dcterms:description "unit for classification of winds according to their speed, developed by Sir Francis Beaufort as measure for the over-all behaviour of a ship's sail at different wind speeds"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:iec61360Code "0112/2///62720#UAA110" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA110"^^xsd:anyURI ; + qudt:plainTextDescription "unit for classification of winds according to their speed, developed by Sir Francis Beaufort as measure for the over-all behaviour of a ship's sail at different wind speeds" ; + qudt:symbol "Beufort" ; + qudt:uneceCommonCode "M19" ; + rdfs:isDefinedBy ; + rdfs:label "Beaufort"@en . + +unit:BIOT + a qudt:Unit ; + dcterms:description "\"Biot\" is another name for the abampere (aA), which is the basic electromagnetic unit of electric current in the emu-cgs (centimeter-gram-second) system of units. It is called after a French physicist, astronomer, and mathematician Jean-Baptiste Biot. One abampere is equal to ten amperes in the SI system of units. One abampere is the current, which produces a force of 2 dyne/cm between two infinitively long parallel wires that are 1 cm apart."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Biot"^^xsd:anyURI ; + qudt:exactMatch unit:A_Ab ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAB210" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Biot?oldid=443318821"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB210"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Abampere"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A ; + qudt:symbol "Bi" ; + qudt:ucumCode "Bi"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N96" ; + rdfs:isDefinedBy ; + rdfs:label "Biot"@en . + +unit:BIT + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "In information theory, a bit is the amount of information that, on average, can be stored in a discrete bit. It is thus the amount of information carried by a choice between two equally likely outcomes. One bit corresponds to about 0.693 nats (ln(2)), or 0.301 hartleys (log10(2))."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bit"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA339" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bit?oldid=495288173"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA339"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "b" ; + qudt:ucumCode "bit"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J63" ; + rdfs:isDefinedBy ; + rdfs:label "Bit"@en . + +unit:BIT-PER-M + a qudt:Unit ; + dcterms:description "unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BIT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA340" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA340"^^xsd:anyURI ; + qudt:symbol "b/m" ; + qudt:ucumCode "bit.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "bit/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E88" ; + rdfs:isDefinedBy ; + rdfs:label "bit per metre" . + +unit:BIT-PER-M2 + a qudt:Unit ; + dcterms:description "unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BIT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA341" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA341"^^xsd:anyURI ; + qudt:symbol "b/m²" ; + qudt:ucumCode "bit.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E89" ; + rdfs:isDefinedBy ; + rdfs:label "bit per square metre" . + +unit:BIT-PER-M3 + a qudt:Unit ; + dcterms:description "unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA342" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA342"^^xsd:anyURI ; + qudt:symbol "b/m³" ; + qudt:ucumCode "bit.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "bit per cubic metre" . + +unit:BIT-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A bit per second (B/s) is a unit of data transfer rate equal to 1 bits per second."^^rdf:HTML ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA343" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA343"^^xsd:anyURI ; + qudt:symbol "b/s" ; + qudt:ucumCode "Bd"^^qudt:UCUMcs ; + qudt:ucumCode "bit.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "bit/s"^^qudt:UCUMcs ; + qudt:udunitsCode "Bd" ; + qudt:udunitsCode "bps" ; + qudt:uneceCommonCode "B10" ; + rdfs:isDefinedBy ; + rdfs:label "Bit per Second"@en . + +unit:BQ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Becquerel}$ is the SI derived unit of activity, usually meaning radioactivity. + Radioactivity is caused when atoms disintegrate, ejecting energetic particles. + One becquerel is the radiation caused by one disintegration per second; + this is equivalent to about $27.0270 \\text{picocuries (pCi)}$. + The unit is named for a French physicist, Antoine-Henri Becquerel (1852-1908), + the discoverer of radioactivity. + Note: both the becquerel and the hertz are basically defined as one event per second, + yet they measure different things. + The hertz is used to measure the rates of events that happen periodically in a fixed and definite cycle. + The becquerel is used to measure the rates of events that happen sporadically and unpredictably, + not in a definite cycle. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Becquerel"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA111" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Becquerel?oldid=493710036"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA111"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:becquerel ; + qudt:symbol "Bq" ; + qudt:ucumCode "Bq"^^qudt:UCUMcs ; + qudt:udunitsCode "Bq" ; + qudt:uneceCommonCode "BQL" ; + rdfs:isDefinedBy ; + rdfs:label "Becquerel"@de ; + rdfs:label "becquerel"@cs ; + rdfs:label "becquerel"@en ; + rdfs:label "becquerel"@es ; + rdfs:label "becquerel"@fr ; + rdfs:label "becquerel"@hu ; + rdfs:label "becquerel"@it ; + rdfs:label "becquerel"@ms ; + rdfs:label "becquerel"@pt ; + rdfs:label "becquerel"@ro ; + rdfs:label "becquerel"@sl ; + rdfs:label "becquerelium"@la ; + rdfs:label "bekerel"@pl ; + rdfs:label "bekerel"@tr ; + rdfs:label "μπεκερέλ"@el ; + rdfs:label "бекерел"@bg ; + rdfs:label "беккерель"@ru ; + rdfs:label "בקרל"@he ; + rdfs:label "بيكريل"@ar ; + rdfs:label "بکرل"@fa ; + rdfs:label "बैक्वेरल"@hi ; + rdfs:label "ベクレル"@ja ; + rdfs:label "贝克勒尔"@zh . + +unit:BQ-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The only unit in the category of Specific radioactivity. It is also known as becquerels per kilogram, becquerel/kilogram. This unit is commonly used in the SI unit system. Becquerel Per Kilogram (Bq/kg) has a dimension of $M{-1}T{-1}$ where $M$ is mass, and $T$ is time. It essentially the same as the corresponding standard SI unit $/kg/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Bq/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BQ ; + ] ; + qudt:hasQuantityKind quantitykind:MassicActivity ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:iec61360Code "0112/2///62720#UAA112" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_radioactivity--becquerel_per_kilogram.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA112"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "\"Becquerel per Kilogram\" is used to describe radioactivity, which is often expressed in becquerels per unit of volume or weight, to express how much radioactive material is contained in a sample." ; + qudt:symbol "Bq/kg" ; + qudt:ucumCode "Bq.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "Bq/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A18" ; + rdfs:isDefinedBy ; + rdfs:label "Becquerel per Kilogram"@en . + +unit:BQ-PER-L + a qudt:Unit ; + dcterms:description "One radioactive disintegration per second from a one part in 10**3 of the SI unit of volume (cubic metre)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:ActivityConcentration ; + qudt:symbol "Bq/L" ; + qudt:ucumCode "Bq.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "Bq/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Becquerels per litre"@en . + +unit:BQ-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Bq/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SurfaceActivityDensity ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "Bq/m²" ; + qudt:ucumCode "Bq.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "Bq/m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Becquerel per Square Meter"@en-US ; + rdfs:label "Becquerel per Square Metre"@en . + +unit:BQ-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Becquerel Per Cubic Meter ($Bq/m3$) is a unit in the category of Radioactivity concentration. It is also known as becquerels per cubic meter, becquerel per cubic metre, becquerels per cubic metre, becquerel/cubic inch. This unit is commonly used in the SI unit system. Becquerel Per Cubic Meter (Bq/m3) has a dimension of $L{-3}T{-1}$ where $L$ is length, and $T$ is time. It essentially the same as the corresponding standard SI unit $/s\\cdot m{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Bq/m^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BQ ; + ] ; + qudt:hasQuantityKind quantitykind:ActivityConcentration ; + qudt:iec61360Code "0112/2///62720#UAB126" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--radioactivity_concentration--becquerel_per_cubic_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB126"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:plainTextDescription "The SI derived unit of unit in the category of Radioactivity concentration." ; + qudt:symbol "Bq/m³" ; + qudt:ucumCode "Bq.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "Bq/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A19" ; + rdfs:isDefinedBy ; + rdfs:label "Becquerel per Cubic Meter"@en-US ; + rdfs:label "Becquerel per Cubic Metre"@en . + +unit:BQ-SEC-PER-M3 + a qudt:Unit ; + dcterms:description "TBD"@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AbsoluteActivity ; + qudt:symbol "Bq·s/m³" ; + qudt:ucumCode "Bq.s.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Becquerels second per cubic metre"@en . + +unit:BREATH-PER-MIN + a qudt:ContextualUnit, qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of respiratory rate."^^rdf:HTML ; + qudt:expression "$breaths/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BREATH ; + ] ; + qudt:hasQuantityKind quantitykind:RespiratoryRate ; + qudt:symbol "breath/min" ; + qudt:ucumCode "/min{breath}"^^qudt:UCUMcs ; + qudt:ucumCode "min-1{breath}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Breath per Minute"@en ; + skos:broader unit:NUM-PER-MIN . + +unit:BREWSTER + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The brewster (B) is a non-SI unit used to measure the susceptibility of a material to photoelasticity, or the value of the stress-optic coefficient of the material. The unit has dimensions reciprocal to those of stress. One brewster is defined to be equal to 10^-12 square metres per newton (m^2/N or 1/Pa) or 10^-13 square centimetres per dyne (cm^2/dyn). The unit is named after David Brewster, who discovered stress-induced birefringence in 1816."^^rdf:HTML ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:exactMatch unit:NanoM-PER-MilliM-MegaPA ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Brewster_(unit)"^^xsd:anyURI ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siUnitsExpression "nm/mm/MPa" ; + qudt:symbol "B" ; + rdfs:isDefinedBy ; + rdfs:label "Brewster"@en . + +unit:BTU_39DEG_F + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit of heat energy according to the Imperial system of units in a reference temperature of 39 °F" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB216" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB216"^^xsd:anyURI ; + qudt:symbol "Btu (39 °F)" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (39 °F)" . + +unit:BTU_59DEG_F + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit of heat energy according to the Imperial system of units in a reference temperature of 59 °F" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB217" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB217"^^xsd:anyURI ; + qudt:symbol "Btu (59 °F)" ; + qudt:uneceCommonCode "N67" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (59 °F)" . + +unit:BTU_60DEG_F + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit of head energy according to the Imperial system of units at a reference temperature of 60 °F" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB218" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB218"^^xsd:anyURI ; + qudt:symbol "Btu (60 °F)" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (60 °F)" . + +unit:BTU_IT + a qudt:Unit ; + dcterms:description """$\\textit{British Thermal Unit}$ (BTU or Btu) is a traditional unit of energy equal to about $1.0550558526 \\textit{ kilojoule}$. + It is approximately the amount of energy needed to heat 1 pound (0.454 kg) of water from $39^{\\circ}{F}$ to $40^{\\circ}{F}$ . + The unit is most often used in the power, steam generation, heating and air conditioning industries. + In scientific contexts the BTU has largely been replaced by the SI unit of energy, the $joule$, though it may be used as a measure of agricultural energy production (BTU/kg). + It is still used unofficially in metric English-speaking countries (such as Canada), and remains the standard unit of classification for air conditioning units manufactured and sold in many non-English-speaking metric countries. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1055.05585262 ; + qudt:conversionMultiplierSN 1.05505585262E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA114" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/British_thermal_unit"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_ics/catalogue_detail_ics.htm?csnumber=31890"^^xsd:anyURI ; + qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/british-thermal-unit_group.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA114"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "Btu{IT}" ; + qudt:ucumCode "[Btu_IT]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "BTU" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (International Definition)"@en . + +unit:BTU_IT-FT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU_{IT} \\, Foot}$ is an Imperial unit for $\\textit{Thermal Energy Length}$ expressed as $Btu-ft$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 321.581024 ; + qudt:conversionMultiplierSN 3.21581024E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu-ft$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalEnergyLength ; + qudt:symbol "Btu{IT}·ft" ; + qudt:ucumCode "[Btu_IT].[ft_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU Foot"@en . + +unit:BTU_IT-FT-PER-FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + A $BTU_{IT}$, $\\italic{Foot per Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity', + expressed as $Btu_{it} \\cdot ft/(h \\cdot ft^2 \\cdot degF)$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.730734666 ; + qudt:conversionMultiplierSN 1.730734666E0 ; + qudt:expression "$Btu(IT) ft/(h ft^2 degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA115" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA115"^^xsd:anyURI ; + qudt:plainTextDescription "British thermal unit (international table) foot per hour Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units." ; + qudt:symbol "Btu{IT}·ft/(ft²·h·°F)" ; + qudt:ucumCode "[Btu_IT].[ft_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT].[ft_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J40" ; + rdfs:isDefinedBy ; + rdfs:label "BTU (IT) Foot per Square Foot Hour Degree Fahrenheit"@en ; + vaem:comment "qudt:exactMatch: unit:BTU_IT-FT-PER-HR-FT2-DEG_F" . + +unit:BTU_IT-IN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + ${\\bf BTU \\, Inch}$ is an Imperial unit for 'Thermal Energy Length' expressed as $Btu-in$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 26.7984187 ; + qudt:conversionMultiplierSN 2.67984187E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu-in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalEnergyLength ; + qudt:symbol "Btu{IT}·in" ; + qudt:ucumCode "[Btu_IT].[in_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU Inch"@en . + +unit:BTU_IT-IN-PER-FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + $BTU_{th}$ Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity' expressed as $Btu_{it}-in/(h-ft^{2}-degF)$. + An International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. + $1\\,Btu_{it} \\cdot in/(h \\cdot ft^{2} \\cdot degF)$ shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.144227889 ; + qudt:conversionMultiplierSN 1.44227889E-1 ; + qudt:exactMatch unit:BTU_IT-IN-PER-HR-FT2-DEG_F ; + qudt:expression "$Btu(it)-in-per-h-ft2-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA117" ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA117"^^xsd:anyURI ; + qudt:latexSymbol "$Btu_{it} \\cdot in/(h \\cdot ft^{2} \\cdot degF)$"^^qudt:LatexString ; + qudt:plainTextDescription "BTU (th) Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity', an International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units." ; + qudt:symbol "Btu{IT}·in/(ft²·h·°F)" ; + qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT].[in_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J41" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) Inch per Hour Square Foot Degree Fahrenheit"@en ; + vaem:comment "qudt:exactMatch: unit:BTU_IT-IN-PER-HR-FT2-DEG_F" . + +unit:BTU_IT-IN-PER-FT2-SEC-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The unit $BTU_{IT}$, Inch per Square Foot Second Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as $Btu_{it}-in/(ft^{2}-s-degF)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 519.220399911 ; + qudt:conversionMultiplierSN 5.19220399911E2 ; + qudt:exactMatch unit:BTU_IT-IN-PER-SEC-FT2-DEG_F ; + qudt:expression "$Btu(it)-in-per-s-ft2-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA118" ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA118"^^xsd:anyURI ; + qudt:plainTextDescription "British thermal unit (international table) inch per second Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units." ; + qudt:symbol "Btu{IT}·in/(ft²·s·°F)" ; + qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT].[in_i]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J42" ; + rdfs:isDefinedBy ; + rdfs:label "BTU (IT) Inch per Square Foot Second Degree Fahrenheit"@en . + +unit:BTU_IT-IN-PER-HR-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.144227889 ; + qudt:conversionMultiplierSN 1.44227889E-1 ; + qudt:exactMatch unit:BTU_IT-IN-PER-FT2-HR-DEG_F ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA117" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA117"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{IT}·in/(h·ft²·°F)" ; + qudt:ucumCode "[Btu_IT].[in_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT].[in_i]/(h.[ft_i]2.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J41" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) Inch per Hour Square Foot degree Fahrenheit"@en . + +unit:BTU_IT-IN-PER-SEC-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 519.220399911 ; + qudt:conversionMultiplierSN 5.19220399911E2 ; + qudt:exactMatch unit:BTU_IT-IN-PER-FT2-SEC-DEG_F ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA118" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA118"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{IT}·in/(s·ft²·°F)" ; + qudt:ucumCode "[Btu_IT].[in_i].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT].[in_i]/(s.[ft_i]2.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J42" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) Inch per Second Square Foot degree Fahrenheit"@en . + +unit:BTU_IT-PER-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{British Thermal Unit (IT) Per Fahrenheit Degree}$ ($Btu (IT)/^\\circ F$) is a measure of heat capacity. + It can be converted to the corresponding standard SI unit $J/K$ by multiplying its value by a factor of $1899.10534$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1899.100535 ; + qudt:conversionMultiplierSN 1.899100535E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/degF$"^^qudt:LatexString ; + qudt:expression "$btu-per-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAB271" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB271"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/°F" ; + qudt:ucumCode "[Btu_IT].[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[degF]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N60" ; + rdfs:isDefinedBy ; + rdfs:label "BTU (IT) per Degree Fahrenheit"@en . + +unit:BTU_IT-PER-DEG_R + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{BTU per Degree Rankine}$ is an Imperial unit for 'Heat Capacity' expressed as $Btu/degR$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1899.100535 ; + qudt:conversionMultiplierSN 1.899100535E3 ; + qudt:expression "$btu-per-degR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAB273" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB273"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/°R" ; + qudt:ucumCode "[Btu_IT].[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[degR]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N62" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Degree Rankine"@en . + +unit:BTU_IT-PER-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{BTU per Square Foot}$ is an Imperial unit for 'Energy Per Area' expressed as $Btu/ft^2$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 11356.5267 ; + qudt:conversionMultiplierSN 1.13565267E4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:iec61360Code "0112/2///62720#UAB283" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB283"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/ft²" ; + qudt:ucumCode "[Btu_IT].[ft_i]-2"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[ft_i]2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P37" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Square Foot"@en . + +unit:BTU_IT-PER-FT2-HR + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 3.154590745063048768072844787664884 ; + qudt:conversionMultiplierSN 3.154590745063048768072844787664884E0 ; + qudt:exactMatch unit:BTU_IT-PER-HR-FT2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB263" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB263"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/(ft²·h)" ; + qudt:ucumCode "[Btu_IT].[ft_i]-2.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N50" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (international table) per square foot hour" . + +unit:BTU_IT-PER-FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{BTU per Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Coefficient Of Heat Transfer' expressed as $Btu/(h-ft^{2}-degF)$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 5.678263341113487328270053328717809 ; + qudt:conversionMultiplierSN 5.678263341113487328270053328717809E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/(h-ft^{2}-degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:symbol "Btu{IT}/(ft²·h·°F)" ; + qudt:ucumCode "[Btu_IT].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Square Foot Hour Degree Fahrenheit"@en . + +unit:BTU_IT-PER-FT2-SEC + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 11356.52668222697556506224123559358 ; + qudt:conversionMultiplierSN 1.135652668222697556506224123559358E4 ; + qudt:exactMatch unit:BTU_IT-PER-SEC-FT2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB266" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB266"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/(ft²·s)" ; + qudt:ucumCode "[Btu_IT].[ft_i]-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N53" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (international table) per square foot second" . + +unit:BTU_IT-PER-FT2-SEC-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{BTU per Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Coefficient Of Heat Transfer' expressed as $Btu/(ft^{2}-s-degF)$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 20441.74802800855438177219198338411 ; + qudt:conversionMultiplierSN 2.044174802800855438177219198338411E4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/(ft^{2}-s-degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:symbol "Btu{IT}/(ft²·s·°F)" ; + qudt:ucumCode "[Btu_IT].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N76" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Square Foot Second Degree Fahrenheit"@en . + +unit:BTU_IT-PER-FT3 + a qudt:Unit ; + dcterms:description """$\\textit{British Thermal Unit (IT) Per Cubic Foot}$ ($Btu (IT)/ft^3$) is a unit in the category of Energy density. + It is also known as Btu per cubic foot, Btu/cubic foot. + This unit is commonly used in the UK, US unit systems. + It has a dimension of $ML^{-1}T^{-2}$ where $M$ is mass, $L$ is length, and $T$ is time. + It can be converted to the corresponding standard SI unit $J/m^3$ by multiplying its value by a factor of 37258.94579. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 37258.94579 ; + qudt:conversionMultiplierSN 3.725894579E4 ; + qudt:expression "$Btu(IT)-per-ft3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAB280" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB280"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/ft³" ; + qudt:ucumCode "[Btu_IT].[ft_i]-3"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[ft_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N58" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (IT) per Cubic Foot"@en . + +unit:BTU_IT-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\text{BTU per Hour}$ is the amount of energy that is being produced or consumed per hour. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.29307107 ; + qudt:conversionMultiplierSN 2.9307107E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA116" ; + qudt:informativeReference "http://www.simetric.co.uk/sibtu.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA116"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/h" ; + qudt:ucumCode "[Btu_IT].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2I" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Hour"@en . + +unit:BTU_IT-PER-HR-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{BTU per Hour Square Foot}$ is an Imperial unit for 'Power Per Area' expressed as $Btu/(h-ft^2)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3.154590745063048768072844787664884 ; + qudt:conversionMultiplierSN 3.154590745063048768072844787664884E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:BTU_IT-PER-FT2-HR ; + qudt:expression "$Btu/(h-ft^{2})$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:symbol "Btu{IT}/(h·ft²)" ; + qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/(h.[ft_i]2)"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Hour Square Foot"@en . + +unit:BTU_IT-PER-HR-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the heat transition coefficient according to the Imperial system of units" ; + qudt:conversionMultiplier 5.678263341113487328270053328717809 ; + qudt:conversionMultiplierSN 5.678263341113487328270053328717809E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB276" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB276"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/(h·ft²·°F)" ; + qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N74" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (international table) per hour square foot degree Fahrenheit" . + +unit:BTU_IT-PER-HR-FT2-DEG_R + a qudt:Unit ; + dcterms:description "unit of the heat transfer coefficient according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 5.678263341113487328270053328717809 ; + qudt:conversionMultiplierSN 5.678263341113487328270053328717809E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB099" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB099"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ; + qudt:symbol "Btu{IT}/(h·ft²·°R)" ; + qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2.[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/(h.[ft_i]2.[degR])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A23" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Hour Square Foot degree Rankine"@en . + +unit:BTU_IT-PER-IN2-SEC + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 1635339.842240684481368962737925476 ; + qudt:conversionMultiplierSN 1.635339842240684481368962737925476E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB268" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB268"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/(in²·s)" ; + qudt:ucumCode "[Btu_IT].[in_i]-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N55" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (international table) per square inch second" . + +unit:BTU_IT-PER-LB + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The amount of energy generated by a pound of substance is measured in British thermal units (IT) per pound of mass. 1 $Btu_{IT}/lb$ is equivalent to $2.326 \\times 10^3$ joule per kilogram (J/kg)."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2326.0 ; + qudt:conversionMultiplierSN 2.326E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$Btu/lb$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/lbm" ; + qudt:ucumCode "[Btu_IT].[lb_av]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[lb_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "AZ" ; + rdfs:isDefinedBy ; + rdfs:label "BTU-IT-PER-lb"@en . + +unit:BTU_IT-PER-LB-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "British Thermal Unit (therm.) Per Pound Per Fahrenheit Degree (Btu (therm.)/lb- degF) is a unit in the category of Specific heat. This unit is commonly used in the UK unit system. British Thermal Unit (therm.) Per Pound Per Fahrenheit Degree (Btu (therm.)/lb-degF) has a dimension of $L2T^{-2}Q^{-1}$ where $L$ is length, $T$ is time, and $Q$ is temperature. It can be converted to the corresponding standard SI unit $J/kg-K$ by multiplying its value by a factor of 4183.99895."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.799999999999665056000000000028 ; + qudt:conversionMultiplierSN 4.186799999999999665056000000000028E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/(lb-degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:symbol "Btu{IT}/(lbm·°F)" ; + qudt:ucumCode "[Btu_IT].[lb_av]-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([lb_av].[degF])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Pound Degree Fahrenheit"@en . + +unit:BTU_IT-PER-LB-DEG_R + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU \\, per \\, Pound \\, Degree \\, Rankine}$ is a unit for 'Specific Heat Capacity' expressed as $Btu/(lb-degR)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.799999999999665056000000000028 ; + qudt:conversionMultiplierSN 4.186799999999999665056000000000028E3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/(lb-degR)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:symbol "Btu{IT}/(lbm·°R)" ; + qudt:ucumCode "[Btu_IT].[lb_av]-1.[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([lb_av].[degR])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Pound Degree Rankine"@en . + +unit:BTU_IT-PER-LB_F + a qudt:Unit ; + dcterms:description "Unit of heat energy according to the Imperial system of units divided by the unit avoirdupois pound of force according to the avoirdupois system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 237.18597062376833 ; + qudt:conversionMultiplierSN 2.3718597062376833E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB150" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB150"^^xsd:anyURI ; + qudt:plainTextDescription "Unit of heat energy according to the Imperial system of units divided by the unit avoirdupois pound of force according to the avoirdupois system of units" ; + qudt:symbol "Btu{IT}/lbf" ; + qudt:ucumCode "[Btu_IT].[lbf_av]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[lbf_av]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Pound of Force"@en . + +unit:BTU_IT-PER-LB_F-DEG_F + a qudt:Unit ; + dcterms:description "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 426.9347648940976900014802607769946 ; + qudt:conversionMultiplierSN 4.269347648940976900014802607769946E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA119" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA119"^^xsd:anyURI ; + qudt:plainTextDescription "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Fahrenheit" ; + qudt:symbol "Btu{IT}/(lbf·°F)" ; + qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([lbf_av].[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J43" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Pound of force Degree Fahrenheit"@en . + +unit:BTU_IT-PER-LB_F-DEG_R + a qudt:Unit ; + dcterms:description "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Rankine"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 426.9 ; + qudt:conversionMultiplierSN 4.269E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAB141" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB141"^^xsd:anyURI ; + qudt:plainTextDescription "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Rankine" ; + qudt:symbol "Btu{IT}/(lbf·°R)" ; + qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([lbf_av].[degR])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A21" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Pound of force Degree Rankine"@en . + +unit:BTU_IT-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 17.58 ; + qudt:conversionMultiplierSN 1.758E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA120" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA120"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit minute" ; + qudt:symbol "Btu{IT}/min" ; + qudt:ucumCode "[Btu_IT].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J44" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Minute"@en . + +unit:BTU_IT-PER-MOL_LB + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU \\, per \\, Pound \\,Mole}$ is an Imperial unit for 'Energy And Work Per Mass Amount Of Substance' expressed as $Btu/(lb-mol)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2.326 ; + qudt:conversionMultiplierSN 2.326E0 ; + qudt:expression "$Btu/(lb-mol)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerMassAmountOfSubstance ; + qudt:symbol "Btu{IT}/lb-mol" ; + qudt:ucumCode "[Btu_IT].[mol_lb]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/[mol_lb]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Pound Mole"@en . + +unit:BTU_IT-PER-MOL_LB-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU \\, per \\, Pound \\, Mole \\, Degree \\, Fahrenheit}$ is an Imperial unit for 'Molar Heat Capacity' expressed as $Btu/(lb-mol-degF)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.186799999999999665056000000000028 ; + qudt:conversionMultiplierSN 4.186799999999999665056000000000028E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$Btu/(lb-mol-degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:symbol "Btu{IT}/(lb-mol·°F)" ; + qudt:ucumCode "[Btu_IT].[mol_lb]-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/([mol_lb].[degF])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Pound Mole Degree Fahrenheit"@en . + +unit:BTU_IT-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU \\, per \\, Second}$ is an Imperial unit for 'Heat Flow Rate' expressed as $Btu/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1055.05585262 ; + qudt:conversionMultiplierSN 1.05505585262E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA121" ; + qudt:informativeReference "http://www.simetric.co.uk/sibtu.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA121"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/s" ; + qudt:ucumCode "[Btu_IT].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J45" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Second"@en . + +unit:BTU_IT-PER-SEC-FT-DEG_R + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6230.644798937007375564164116535475 ; + qudt:conversionMultiplierSN 6.230644798937007375564164116535475E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB107" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB107"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{IT}/(s·ft·°R)" ; + qudt:ucumCode "[Btu_IT].s-1.[ft_i]-1.[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/(s.[ft_i].[degR])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A22" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Second Foot Degree Rankine"@en . + +unit:BTU_IT-PER-SEC-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{BTU per Second Square Foot}$ is an Imperial unit for 'Power Per Area' expressed as $Btu/(s\\cdot ft^2)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 11356.52668222697556506224123559358 ; + qudt:conversionMultiplierSN 1.135652668222697556506224123559358E4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:BTU_IT-PER-FT2-SEC ; + qudt:expression "$Btu/(s-ft^{2})$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:symbol "Btu{IT}/(s·ft²)" ; + qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/(s.[ft_i]2)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N53" ; + rdfs:isDefinedBy ; + rdfs:label "BTU per Second Square Foot"@en . + +unit:BTU_IT-PER-SEC-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the heat transition coefficient according to the imperial system of units" ; + qudt:conversionMultiplier 20441.74802800855438177219198338411 ; + qudt:conversionMultiplierSN 2.044174802800855438177219198338411E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB278" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB278"^^xsd:anyURI ; + qudt:symbol "Btu{IT}/(s·ft²·°F)" ; + qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N76" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (international table) per second square foot degree Fahrenheit" . + +unit:BTU_IT-PER-SEC-FT2-DEG_R + a qudt:Unit ; + dcterms:description "unit of the heat transfer coefficient according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 20441.74802800855438177219198338411 ; + qudt:conversionMultiplierSN 2.044174802800855438177219198338411E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB098" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB098"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ; + qudt:symbol "Btu{IT}/(s·ft²·°R)" ; + qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2.[degR]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_IT]/(s.[ft_i]2.[degR])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A20" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (international Table) per Second Square Foot degree Rankine"@en . + +unit:BTU_MEAN + a qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1055.05585262 ; + qudt:conversionMultiplierSN 1.05505585262E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA113" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA113"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units" ; + qudt:scalingOf unit:J ; + qudt:symbol "BTU{mean}" ; + qudt:ucumCode "[Btu_m]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J39" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (mean)"@en . + +unit:BTU_TH + a qudt:Unit ; + dcterms:description """ + The $\\textit{British Thermal Unit (thermochemical definition)}$ ($BTU_{th}$), is a traditional unit of energy equal to about $1.0543502645 kilojoule$. + It is approximately the amount of energy needed to heat 1 pound (0.454 kg) of water from $39^{\\circ}\\text{F}$ ($3.9^{\\circ}\\text{C}$) to $40^{\\circ}\\text{F}$ ($4.4^{\\circ}\\text{C}$). + The unit is most often used in the power, steam generation, heating and air conditioning industries. + In scientific contexts the BTU has largely been replaced by the SI unit of energy, the $joule$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1054.3502645 ; + qudt:conversionMultiplierSN 1.0543502645E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA122" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/British_thermal_unit"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_ics/catalogue_detail_ics.htm?csnumber=31890"^^xsd:anyURI ; + qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/british-thermal-unit_group.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA122"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "Btu{th}" ; + qudt:ucumCode "[Btu_th]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (Thermochemical Definition)"@en . + +unit:BTU_TH-FT-PER-FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{BTU (TH) Foot per Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity' defined as: + $$Btu_{th} \\cdot ft/(h \\cdot ft^2 \\cdot degF)$$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.729577206 ; + qudt:conversionMultiplierSN 1.729577206E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu(IT) ft/(h ft^2 degF)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ; + qudt:symbol "Btu{th}·ft/(ft²·h·°F)" ; + qudt:ucumCode "[Btu_th].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU (TH) Foot per Square Foot Hour Degree Fahrenheit"@en . + +unit:BTU_TH-FT-PER-HR-FT2-DEG_F + a qudt:Unit ; + dcterms:description """ + The $\\textit{British Thermal Unit (thermochemical) Foot Per Hour Square Foot degree Fahrenheit}$ is a unit of thermal conductivity in the Imperial system of units. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.73 ; + qudt:conversionMultiplierSN 1.73E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA123" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA123"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{th}·ft/(h·ft²·°F)" ; + qudt:ucumCode "[Btu_th].[ft_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th].[ft_i]/(h.[ft_i]2.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J46" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (thermochemical) Foot per Hour Square Foot degree Fahrenheit"@en . + +unit:BTU_TH-IN-PER-FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "${\\bf BTU_{th}}$, Inch per Square Foot Hour Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as $Btu-in/(h-ft^{2}-degF)$. A thermochemical British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. $1 Btu_{th} \\cdot in/(h \\cdot ft^{2} \\cdot degF)$ shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.144131434 ; + qudt:conversionMultiplierSN 1.44131434E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu(th)-in-per-h-ft2-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA125" ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA125"^^xsd:anyURI ; + qudt:latexSymbol "$Btu_{th} \\cdot in/(h \\cdot ft^{2} \\cdot degF)$"^^qudt:LatexString ; + qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{th}·in/(ft²·h·°F)" ; + qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th].[in_i]/([ft_i]2.h.[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J48" ; + rdfs:isDefinedBy ; + rdfs:label "BTU (TH) Inch per Square Foot Hour Degree Fahrenheit"@en . + +unit:BTU_TH-IN-PER-FT2-SEC-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{BTU (TH) Inch per Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity' expressed as: + $$Btu_{th} \\cdot in/(ft^{2} \\cdot s \\cdot degF)$$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 518.8732 ; + qudt:conversionMultiplierSN 5.188732E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$Btu(it)-in-per-s-ft2-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA126" ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA126"^^xsd:anyURI ; + qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units" ; + qudt:symbol "Btu{th}·in/(ft²·s·°F)" ; + qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th].[in_i]/([ft_i]2.s.[degF])"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "BTU (TH) Inch per Square Foot Second Degree Fahrenheit"@en . + +unit:BTU_TH-PER-DEG_F + a qudt:Unit ; + dcterms:description "unit of the heat capacity according to the Imperial system of units" ; + qudt:conversionMultiplier 1897.830476099999848173561912000013 ; + qudt:conversionMultiplierSN 1.897830476099999848173561912000013E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalCapacitance ; + qudt:iec61360Code "0112/2///62720#UAB272" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB272"^^xsd:anyURI ; + qudt:symbol "Btu{th}/°F" ; + qudt:ucumCode "[Btu_th].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N61" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per degree Fahrenheit" . + +unit:BTU_TH-PER-DEG_R + a qudt:Unit ; + dcterms:description "unit of the heat capacity according to the Imperial system of units" ; + qudt:conversionMultiplier 1897.830476099999848173561912000013 ; + qudt:conversionMultiplierSN 1.897830476099999848173561912000013E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalCapacitance ; + qudt:iec61360Code "0112/2///62720#UAB274" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB274"^^xsd:anyURI ; + qudt:symbol "Btu{th}/°R" ; + qudt:ucumCode "[Btu_th].[degR]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N63" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per degree Rankine" . + +unit:BTU_TH-PER-FT2 + a qudt:Unit ; + dcterms:description "unit of the areal-related energy transmisson according to the Imperial system of units" ; + qudt:conversionMultiplier 11348.93179491220093551298213707538 ; + qudt:conversionMultiplierSN 1.134893179491220093551298213707538E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:iec61360Code "0112/2///62720#UAB284" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB284"^^xsd:anyURI ; + qudt:symbol "Btu{th}/ft²" ; + qudt:ucumCode "[Btu_th].[ft_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P38" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per square foot" . + +unit:BTU_TH-PER-FT2-HR + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 3.152481054142278037642495038076495 ; + qudt:conversionMultiplierSN 3.152481054142278037642495038076495E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB264" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB264"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(ft²·h)" ; + qudt:ucumCode "[Btu_th].[ft_i]-2.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N51" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per square foot hour" . + +unit:BTU_TH-PER-FT2-MIN + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 189.1488632485366822585497022845897 ; + qudt:conversionMultiplierSN 1.891488632485366822585497022845897E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB265" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB265"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(ft²·min)" ; + qudt:ucumCode "[Btu_th].[ft_i]-2.min-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per square foot minute" . + +unit:BTU_TH-PER-FT2-SEC + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 11348.93179491220093551298213707538 ; + qudt:conversionMultiplierSN 1.134893179491220093551298213707538E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB267" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB267"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(ft²·s)" ; + qudt:ucumCode "[Btu_th].[ft_i]-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N54" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per square foot second" . + +unit:BTU_TH-PER-FT3 + a qudt:Unit ; + dcterms:description "British Thermal Unit (TH) Per Cubic Foot ($Btu (TH)/ft^3$) is a unit in the category of Energy density. It is also known as Btu per cubic foot, Btu/cubic foot. This unit is commonly used in the UK, US unit systems. It has a dimension of $ML^{-1}T^{-2}$ where $M$ is mass, $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit $J/m^3$ by multiplying its value by a factor of 37234.03."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 37234.03 ; + qudt:conversionMultiplierSN 3.723403E4 ; + qudt:expression "$Btu(th)-per-ft3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAB281" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI ; + qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB281"^^xsd:anyURI ; + qudt:symbol "Btu{th}/ft³" ; + qudt:ucumCode "[Btu_th].[ft_i]-3"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/[ft_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N59" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (TH) per Cubic Foot"@en . + +unit:BTU_TH-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.2929 ; + qudt:conversionMultiplierSN 2.929E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA124" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA124"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit hour" ; + qudt:symbol "Btu{th}/h" ; + qudt:ucumCode "[Btu_th].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J47" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (thermochemical) per Hour"@en . + +unit:BTU_TH-PER-HR-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the heat transition coefficient according to the imperial system of units" ; + qudt:conversionMultiplier 5.674465897456100013799219272049695 ; + qudt:conversionMultiplierSN 5.674465897456100013799219272049695E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB277" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB277"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(h·ft²·°F)" ; + qudt:ucumCode "[Btu_th].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N75" ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per hour square foot degree Fahrenheit" . + +unit:BTU_TH-PER-LB + a qudt:Unit ; + dcterms:description "${\\bf Btu_{th} / lbm}$, British Thermal Unit (therm.) Per Pound Mass, is a unit in the category of Thermal heat capacity. It is also known as Btu per pound, Btu/pound, Btu/lb. This unit is commonly used in the UK unit system. British Thermal Unit (therm.) Per Pound Mass (Btu (therm.)/lbm) has a dimension of $L^2T^{-2}$ where $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit J/kg by multiplying its value by a factor of 2324.443861."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2324.443861 ; + qudt:conversionMultiplierSN 2.324443861E3 ; + qudt:expression "$btu_th-per-lb$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ; + qudt:symbol "Btu{th}/lbm" ; + qudt:ucumCode "[Btu_th].[lb_av]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/[lb_av]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (TH) per Pound"@en . + +unit:BTU_TH-PER-LB-DEG_F + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units divided by the units pound and degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.000000044092117716975512617227 ; + qudt:conversionMultiplierSN 4.184000000044092117716975512617227E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA127" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA127"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units divided by the units pound and degree Fahrenheit" ; + qudt:symbol "Btu{th}/(lbm·°F)" ; + qudt:ucumCode "[Btu_th].[lb_av]-1.[degF]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/([lb_av].[degF])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J50" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (thermochemical) per Pound Degree Fahrenheit"@en . + +unit:BTU_TH-PER-LB-DEG_R + a qudt:Unit ; + dcterms:description "unit of the heat capacity (British Thermal Unit - thermochemical - according to the international table according to the Rankine degree) according to the Imperial system of units divided by the unit avoirdupois pound according to the avoirdupois system of units" ; + qudt:conversionMultiplier 4184.000000044092117716975512617227 ; + qudt:conversionMultiplierSN 4.184000000044092117716975512617227E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassicHeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAB275" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB275"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(lbm·°R)" ; + qudt:ucumCode "[Btu_th].[lb_av]-1.[degR]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per pound degree Rankine" . + +unit:BTU_TH-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 17.573 ; + qudt:conversionMultiplierSN 1.7573E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA128" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA128"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit minute" ; + qudt:symbol "Btu{th}/min" ; + qudt:ucumCode "[Btu_th].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J51" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (thermochemical) per Minute"@en . + +unit:BTU_TH-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1054.35 ; + qudt:conversionMultiplierSN 1.05435E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA129" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA129"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "Btu{th}/s" ; + qudt:ucumCode "[Btu_th].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[Btu_th]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J52" ; + rdfs:isDefinedBy ; + rdfs:label "British Thermal Unit (thermochemical) per Second"@en . + +unit:BTU_TH-PER-SEC-FT2-DEG_F + a qudt:Unit ; + dcterms:description "unit of the heat transition coefficient according to the imperial system of units" ; + qudt:conversionMultiplier 20428.0772308419600496771893793789 ; + qudt:conversionMultiplierSN 2.04280772308419600496771893793789E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB279" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB279"^^xsd:anyURI ; + qudt:symbol "Btu{th}/(s·ft²·°F)" ; + qudt:ucumCode "[Btu_th].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "British thermal unit (thermochemical) per second square foot degree Fahrenheit" . + +unit:BU_UK + a qudt:Unit ; + dcterms:description "A bushel is an imperial unit of dry volume, equivalent in each of these systems to 4 pecks or 8 gallons. It is used for volumes of dry commodities (not liquids), most often in agriculture. It is abbreviated as bsh. or bu. In modern usage, the dry volume is usually only nominal, with bushels referring to standard weights instead."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.03636872 ; + qudt:conversionMultiplierSN 3.636872E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bushel"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAA344" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bushel?oldid=476704875"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA344"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "bsh{UK}" ; + qudt:ucumCode "[bu_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "BUI" ; + rdfs:isDefinedBy ; + rdfs:label "bushel (UK)"@en . + +unit:BU_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000004209343 ; + qudt:conversionMultiplierSN 4.209343E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA345" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA345"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "bsh{UK}/d" ; + qudt:ucumCode "[bu_br].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_br]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J64" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (UK) per Day"@en . + +unit:BU_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00001010242 ; + qudt:conversionMultiplierSN 1.010242E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA346" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA346"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "bsh{UK}/h" ; + qudt:ucumCode "[bu_br].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J65" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (UK) per Hour"@en . + +unit:BU_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0006061453 ; + qudt:conversionMultiplierSN 6.061453E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA347" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA347"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "bsh{UK}/min" ; + qudt:ucumCode "[bu_br].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_br]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J66" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (UK) per Minute"@en . + +unit:BU_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.03636872 ; + qudt:conversionMultiplierSN 3.636872E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA348" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA348"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "bsh{UK}/s" ; + qudt:ucumCode "[bu_br].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_br]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J67" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (UK) per Second"@en . + +unit:BU_US + a qudt:Unit ; + dcterms:description "A bushel is an imperial and U.S. customary unit of dry volume, equivalent in each of these systems to 4 pecks or 8 gallons. It is used for volumes of dry commodities (not liquids), most often in agriculture. It is abbreviated as bsh. or bu. In modern usage, the dry volume is usually only nominal, with bushels referring to standard weights instead."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.03523907 ; + qudt:conversionMultiplierSN 3.523907E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bushel"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 2150.42 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAA353" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bushel?oldid=476704875"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA353"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "in³" ; + qudt:ucumCode "[bu_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "bu" ; + qudt:uneceCommonCode "BUA" ; + rdfs:isDefinedBy ; + rdfs:label "bushel (US)"@en . + +unit:BU_US_DRY + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.03523907 ; + qudt:conversionMultiplierSN 3.523907E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units" ; + qudt:symbol "bsh{US}" ; + qudt:ucumCode "[bu_us]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (US Dry)"@en ; + skos:broader unit:BU_US . + +unit:BU_US_DRY-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000040786 ; + qudt:conversionMultiplierSN 4.0786E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_US_DRY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA349" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA349"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time day" ; + qudt:symbol "bsh{US}/day" ; + qudt:ucumCode "[bu_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J68" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (US Dry) per Day"@en . + +unit:BU_US_DRY-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000009789 ; + qudt:conversionMultiplierSN 9.789E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_US_DRY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA350" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA350"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "bsh{US}/h" ; + qudt:ucumCode "[bu_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J69" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (US Dry) per Hour"@en . + +unit:BU_US_DRY-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00058732 ; + qudt:conversionMultiplierSN 5.8732E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_US_DRY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA351" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA351"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "bsh{US}/min" ; + qudt:ucumCode "[bu_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J70" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (US Dry) per Minute"@en . + +unit:BU_US_DRY-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.03523907 ; + qudt:conversionMultiplierSN 3.523907E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_US_DRY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA352" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA352"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "bsh{US}/s" ; + qudt:ucumCode "[bu_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[bu_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J71" ; + rdfs:isDefinedBy ; + rdfs:label "Bushel (US Dry) per Second"@en . + +unit:BYTE + a qudt:CountingUnit, qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The byte is a unit of digital information in computing and telecommunications that most commonly consists of eight bits."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5.5451774444795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Byte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA354" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Byte?oldid=493588918"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA354"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "B" ; + qudt:ucumCode "By"^^qudt:UCUMcs ; + qudt:uneceCommonCode "AD" ; + rdfs:isDefinedBy ; + rdfs:label "Byte"@en . + +unit:BYTE-PER-SEC + a qudt:Unit ; + dcterms:description "unit byte divided by the SI base unit second" ; + qudt:conversionMultiplier 5.5451774444795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BYTE ; + ] ; + qudt:hasQuantityKind quantitykind:ByteRate ; + qudt:iec61360Code "0112/2///62720#UAB305" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB305"^^xsd:anyURI ; + qudt:symbol "B/s" ; + qudt:ucumCode "By.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "By/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P93" ; + rdfs:isDefinedBy ; + rdfs:label "byte per second" . + +unit:C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of electric charge. One coulomb is the amount of charge accumulated in one second by a current of one ampere. Electricity is actually a flow of charged particles, such as electrons, protons, or ions. The charge on one of these particles is a whole-number multiple of the charge e on a single electron, and one coulomb represents a charge of approximately 6.241 506 x 1018 e. The coulomb is named for a French physicist, Charles-Augustin de Coulomb (1736-1806), who was the first to measure accurately the forces exerted between electric charges."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Coulomb"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA130" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Coulomb?oldid=491815163"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA130"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:coulomb ; + qudt:symbol "C" ; + qudt:ucumCode "C"^^qudt:UCUMcs ; + qudt:udunitsCode "C" ; + qudt:uneceCommonCode "COU" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb"@de ; + rdfs:label "coulomb"@cs ; + rdfs:label "coulomb"@en ; + rdfs:label "coulomb"@fr ; + rdfs:label "coulomb"@hu ; + rdfs:label "coulomb"@it ; + rdfs:label "coulomb"@ms ; + rdfs:label "coulomb"@pt ; + rdfs:label "coulomb"@ro ; + rdfs:label "coulomb"@sl ; + rdfs:label "coulomb"@tr ; + rdfs:label "coulombium"@la ; + rdfs:label "culombio"@es ; + rdfs:label "kulomb"@pl ; + rdfs:label "κουλόμπ"@el ; + rdfs:label "кулон"@bg ; + rdfs:label "кулон"@ru ; + rdfs:label "קולון"@he ; + rdfs:label "كولوم"@ar ; + rdfs:label "کولمب/کولن"@fa ; + rdfs:label "कूलम्ब"@hi ; + rdfs:label "クーロン"@ja ; + rdfs:label "库伦"@zh . + +unit:C-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\text{Coulomb Meter (C-m)}$ is a unit in the category of Electric dipole moment. + It is also known as atomic unit, u.a., au, ua. + This unit is commonly used in the SI unit system. + Coulomb Meter (C-m) has a dimension of LTI where $L$ is length, $T$ is time, and $I$ is electric current. + This unit is the standard SI unit in this category. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:iec61360Code "0112/2///62720#UAA133" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA133"^^xsd:anyURI ; + qudt:symbol "C·m" ; + qudt:ucumCode "C.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A26" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb Meter"@en-US ; + rdfs:label "Coulombmeter"@de ; + rdfs:label "coulomb meter"@ms ; + rdfs:label "coulomb metr"@cs ; + rdfs:label "coulomb metre"@en ; + rdfs:label "coulomb metre"@tr ; + rdfs:label "coulomb per metro"@it ; + rdfs:label "coulomb-metro"@pt ; + rdfs:label "coulomb-metru"@ro ; + rdfs:label "coulomb-mètre"@fr ; + rdfs:label "culombio metro"@es ; + rdfs:label "кулон-метр"@ru ; + rdfs:label "كولوم متر"@ar ; + rdfs:label "نیوتون متر"@fa ; + rdfs:label "कूलम्ब मीटर"@hi ; + rdfs:label "クーロンメートル"@ja ; + rdfs:label "库伦米"@zh . + +unit:C-M2 + a qudt:Unit ; + dcterms:description "Coulomb Square Meter (C-m2) is a unit in the category of Electric quadrupole moment. This unit is commonly used in the SI unit system. Coulomb Square Meter (C-m2) has a dimension of L2TI where $L$ is length, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C m^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricQuadrupoleMoment ; + qudt:symbol "C·m²" ; + qudt:ucumCode "C.m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb Square Meter"@en-US ; + rdfs:label "Coulomb mal Quadratmeter"@de ; + rdfs:label "coulomb meter persegi"@ms ; + rdfs:label "coulomb per metro quadrato"@it ; + rdfs:label "coulomb square metre"@en ; + rdfs:label "کولن متر مربع"@fa ; + rdfs:label "库仑平方米"@zh . + +unit:C-M2-PER-KiloGM + a qudt:Unit ; + dcterms:description "product of the SI derived unit coulomb and the power of the SI base unit metre with the exponent 2 divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD912" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD912"^^xsd:anyURI ; + qudt:symbol "C·m²/kg" ; + qudt:ucumCode "C.m2.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "C.m2/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J53" ; + rdfs:isDefinedBy ; + rdfs:label "coulomb square metre per kilogram" . + +unit:C-M2-PER-V + a qudt:Unit ; + dcterms:description "Coulomb Square Meter (C-m2-per-volt) is a unit in the category of Electric polarizability."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$C m^{2} v^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Polarizability ; + qudt:iec61360Code "0112/2///62720#UAB486" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB486"^^xsd:anyURI ; + qudt:symbol "C·m²/V" ; + qudt:ucumCode "C.m2.V-1"^^qudt:UCUMcs ; + qudt:ucumCode "C.m2/V"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A27" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb Square Meter per Volt"@en-US ; + rdfs:label "Coulomb mal Quadratmeter je Volt"@de ; + rdfs:label "coulomb per metro quadrato al volt"@it ; + rdfs:label "coulomb square metre per volt"@en ; + rdfs:label "کولن متر مربع بر ولت"@fa ; + rdfs:label "库伦平方米每伏特"@zh . + +unit:C-PER-CentiM2 + a qudt:Unit ; + dcterms:description "derived SI unit coulomb divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:iec61360Code "0112/2///62720#UAB101" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB101"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit coulomb divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "C/cm²" ; + qudt:ucumCode "C.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "C/cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A33" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Square Centimeter"@en-US ; + rdfs:label "Coulomb per Square Centimetre"@en . + +unit:C-PER-CentiM3 + a qudt:Unit ; + dcterms:description "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAB120" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB120"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 3" ; + qudt:symbol "C/cm³" ; + qudt:ucumCode "C.cm-3"^^qudt:UCUMcs ; + qudt:ucumCode "C/cm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A28" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Cubic Centimeter"@en-US ; + rdfs:label "Coulomb per Cubic Centimetre"@en . + +unit:C-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Coulomb Per Kilogram (C/kg)}$ is the unit in the category of Exposure. It is also known as coulombs per kilogram, coulomb/kilogram. This unit is commonly used in the SI unit system. Coulomb Per Kilogram (C/kg) has a dimension of $M^{-1}TI$ where $M$ is mass, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAA131" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA131"^^xsd:anyURI ; + qudt:symbol "C/kg" ; + qudt:ucumCode "C.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "C/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CKG" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Kilogram"@en . + +unit:C-PER-KiloGM-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of exposure rate"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$C/kg-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:ExposureRate ; + qudt:iec61360Code "0112/2///62720#UAA132" ; + qudt:informativeReference "http://en.wikibooks.org/wiki/Basic_Physics_of_Nuclear_Medicine/Units_of_Radiation_Measurement"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA132"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "C/(kg·s)" ; + qudt:ucumCode "C.kg-1.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "C/(kg.s)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A31" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Kilogram Second"@en . + +unit:C-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Coulomb per Meter\" is a unit for 'Electric Charge Line Density' expressed as $C/m$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeLineDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeLinearDensity ; + qudt:iec61360Code "0112/2///62720#UAB337" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB337"^^xsd:anyURI ; + qudt:symbol "C/m" ; + qudt:ucumCode "C.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "C/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P10" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Meter"@en-US ; + rdfs:label "Coulomb per Metre"@en . + +unit:C-PER-M2 + a qudt:Unit ; + dcterms:description "Coulomb Per Square Meter ($C/m^2$) is a unit in the category of Electric charge surface density. It is also known as coulombs per square meter, coulomb per square metre, coulombs per square metre, coulomb/square meter, coulomb/square metre. This unit is commonly used in the SI unit system. Coulomb Per Square Meter (C/m2) has a dimension of $L^{-2}TI$ where $L$ is length, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category. "^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C/m^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:hasQuantityKind quantitykind:ElectricChargeSurfaceDensity ; + qudt:hasQuantityKind quantitykind:ElectricPolarization ; + qudt:iec61360Code "0112/2///62720#UAA134" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA134"^^xsd:anyURI ; + qudt:symbol "C/m²" ; + qudt:ucumCode "C.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "C/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A34" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb je Quadratmeter"@de ; + rdfs:label "Coulomb per Square Meter"@en-US ; + rdfs:label "coulomb al metro quadrato"@it ; + rdfs:label "coulomb bölü metre kare"@tr ; + rdfs:label "coulomb na metr čtvereční"@cs ; + rdfs:label "coulomb par mètre carré"@fr ; + rdfs:label "coulomb pe metru pătrat"@ro ; + rdfs:label "coulomb per meter persegi"@ms ; + rdfs:label "coulomb per square metre"@en ; + rdfs:label "coulomb por metro quadrado"@pt ; + rdfs:label "culombio por metro cuadrado"@es ; + rdfs:label "kulomb na metr kwadratowy"@pl ; + rdfs:label "кулон на квадратный метр"@ru ; + rdfs:label "كولوم في المتر المربع"@ar ; + rdfs:label "کولمب/کولن بر مترمربع"@fa ; + rdfs:label "कूलम्ब प्रति वर्ग मीटर"@hi ; + rdfs:label "クーロン毎平方メートル"@ja ; + rdfs:label "库伦每平方米"@zh . + +unit:C-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Coulomb Per Cubic Meter ($C/m^{3}$) is a unit in the category of Electric charge density. It is also known as coulomb per cubic metre, coulombs per cubic meter, coulombs per cubic metre, coulomb/cubic meter, coulomb/cubic metre. This unit is commonly used in the SI unit system. Coulomb Per Cubic Meter has a dimension of $L^{-3}TI$ where $L$ is length, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C/m^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAA135" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA135"^^xsd:anyURI ; + qudt:symbol "C/m³" ; + qudt:ucumCode "C.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "C/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A29" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Cubic Meter"@en-US ; + rdfs:label "Coulomb per Cubic Metre"@en . + +unit:C-PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description " ($C/mol$) is a unit in the category of Molar electric charge. It is also known as $coulombs/mol$. Coulomb Per Mol has a dimension of $TN{-1}I$ where $T$ is time, $N$ is amount of substance, and $I$ is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$c-per-mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAB142" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB142"^^xsd:anyURI ; + qudt:symbol "C/mol" ; + qudt:ucumCode "C.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "C/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A32" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Mole"@en . + +unit:C-PER-MilliM2 + a qudt:Unit ; + dcterms:description "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:iec61360Code "0112/2///62720#UAB100" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB100"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "C/mm²" ; + qudt:ucumCode "C.mm-2"^^qudt:UCUMcs ; + qudt:ucumCode "C/mm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A35" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Square Millimeter"@en-US ; + rdfs:label "Coulomb per Square Millimetre"@en . + +unit:C-PER-MilliM3 + a qudt:Unit ; + dcterms:description "derived SI unit coulomb divided by the 0.000 000 001-fold of the power of the SI base unit metre by exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAB119" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB119"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 000 001-fold of the power of the SI base unit metre by exponent 3" ; + qudt:symbol "C/mm³" ; + qudt:ucumCode "C.mm-3"^^qudt:UCUMcs ; + qudt:ucumCode "C/mm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A30" ; + rdfs:isDefinedBy ; + rdfs:label "Coulomb per Cubic Millimeter"@en-US ; + rdfs:label "Coulomb per Cubic Millimetre"@en . + +unit:C2-M2-PER-J + a qudt:Unit ; + dcterms:description "\"Square Coulomb Square Meter per Joule\" is a unit for 'Polarizability' expressed as $C^{2} m^{2} J^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C^{2} m^{2} J^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L0I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:Polarizability ; + qudt:symbol "C²·m²/J" ; + qudt:ucumCode "C2.m2.J-1"^^qudt:UCUMcs ; + qudt:ucumCode "C2.m2/J"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Coulomb Square Meter per Joule"@en-US ; + rdfs:label "Square Coulomb Square Metre per Joule"@en . + +unit:C3-M-PER-J2 + a qudt:Unit ; + dcterms:description "\"Cubic Coulomb Meter per Square Joule\" is a unit for 'Cubic Electric Dipole Moment Per Square Energy' expressed as $C^{3} m^{3} J^{-2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C^{3} m J^{-2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E3L-3I0M-2H0T7D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared ; + qudt:symbol "C³·m/J²" ; + qudt:ucumCode "C3.m.J-2"^^qudt:UCUMcs ; + qudt:ucumCode "C3.m/J2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Coulomb Meter per Square Joule"@en-US ; + rdfs:label "Cubic Coulomb Metre per Square Joule"@en . + +unit:C4-M4-PER-J3 + a qudt:Unit ; + dcterms:description "\"Quartic Coulomb Meter per Cubic Energy\" is a unit for 'Quartic Electric Dipole Moment Per Cubic Energy' expressed as $C^{4} m^{4} J^{-3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$C^4m^4/J^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E4L-2I0M-3H0T10D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic ; + qudt:symbol "C⁴·m⁴/J³" ; + qudt:ucumCode "C4.m4.J-3"^^qudt:UCUMcs ; + qudt:ucumCode "C4.m4/J3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Quartic Coulomb Meter per Cubic Energy"@en-US ; + rdfs:label "Quartic Coulomb Metre per Cubic Energy"@en . + +unit:CAL_15_DEG_C + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit for the quantity of heat which is required to warm up 1 g of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.1855 ; + qudt:conversionMultiplierSN 4.1855E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB139" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB139"^^xsd:anyURI ; + qudt:plainTextDescription "unit for the quantity of heat which is required to warm up 1 g of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius" ; + qudt:scalingOf unit:J ; + qudt:symbol "cal{15 °C}" ; + qudt:ucumCode "cal_[15]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A1" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (15 Degrees C)"@en . + +unit:CAL_20DEG_C + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "unit for quantity of heat, which is to be required for 1 g air free water at a constant pressure from 101,325 kPa, to warm up the pressure of standard atmosphere at sea level, from 19.5 °C on 20.5 °C" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB219" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB219"^^xsd:anyURI ; + qudt:symbol "cal₂₀" ; + qudt:uneceCommonCode "N69" ; + rdfs:isDefinedBy ; + rdfs:label "calorie (20 °C)" . + +unit:CAL_IT + a qudt:Unit ; + dcterms:description "International Table calorie."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.1868 ; + qudt:conversionMultiplierSN 4.1868E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA361" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA361"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "cal{IT}" ; + qudt:ucumCode "cal_IT"^^qudt:UCUMcs ; + qudt:udunitsCode "cal" ; + qudt:uneceCommonCode "D70" ; + rdfs:isDefinedBy ; + rdfs:label "International Table calorie"@en . + +unit:CAL_IT-PER-GM + a qudt:Unit ; + dcterms:description "Calories produced per gram of substance."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.8 ; + qudt:conversionMultiplierSN 4.1868E3 ; + qudt:expression "$cal_{it}-per-gm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_IT ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB176" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB176"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorie according to the international steam table divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "cal{IT}/g" ; + qudt:ucumCode "cal_IT.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_IT/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D75" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (international Table) per Gram"@en . + +unit:CAL_IT-PER-GM-DEG_C + a qudt:Unit ; + dcterms:description "unit calorieIT divided by the products of the units gram and degree Celsius"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.8 ; + qudt:conversionMultiplierSN 4.1868E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_IT ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA362" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA362"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorieIT divided by the products of the units gram and degree Celsius" ; + qudt:symbol "cal{IT}/(g·°C)" ; + qudt:ucumCode "cal_IT.g-1.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_IT/(g.Cel)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J76" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (international Table) per Gram Degree Celsius"@en . + +unit:CAL_IT-PER-GM-K + a qudt:Unit ; + dcterms:description "unit calorieIT divided by the product of the SI base unit gram and Kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.8 ; + qudt:conversionMultiplierSN 4.1868E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA363" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA363"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorieIT divided by the product of the SI base unit gram and Kelvin" ; + qudt:symbol "cal{IT}/(g·K)" ; + qudt:ucumCode "cal_IT.g-1.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_IT/(g.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D76" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (international Table) per Gram Kelvin"@en . + +unit:CAL_IT-PER-SEC-CentiM-K + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 418.68 ; + qudt:conversionMultiplierSN 4.1868E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB108" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB108"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "cal{IT}/(s·cm·K)" ; + qudt:ucumCode "cal_IT.s-1.cm-1.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_IT/(s.cm.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D71" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (international Table) per Second Centimeter Kelvin"@en-US ; + rdfs:label "Calorie (international Table) per Second Centimetre Kelvin"@en . + +unit:CAL_IT-PER-SEC-CentiM2-K + a qudt:Unit ; + dcterms:description "unit of the heat transfer coefficient according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41868.0 ; + qudt:conversionMultiplierSN 4.1868E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB096" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB096"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ; + qudt:symbol "cal{IT}/(s·cm²·K)" ; + qudt:ucumCode "cal_IT.s-1.cm-2.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_IT/(s.cm2.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D72" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (international Table) per Second Square Centimeter kelvin"@en-US ; + rdfs:label "Calorie (international Table) per Second Square Centimetre kelvin"@en . + +unit:CAL_MEAN + a qudt:Unit ; + dcterms:description "unit used particularly for calorific values of foods"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.19 ; + qudt:conversionMultiplierSN 4.19E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA360" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA360"^^xsd:anyURI ; + qudt:plainTextDescription "unit used particularly for calorific values of foods" ; + qudt:scalingOf unit:J ; + qudt:symbol "cal{mean}" ; + qudt:ucumCode "cal_m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J75" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (mean)"@en . + +unit:CAL_TH + a qudt:Unit ; + dcterms:description "The energy needed to increase the temperature of a given mass of water by $1 ^\\circ C$ at atmospheric pressure depends on the starting temperature and is difficult to measure precisely. Accordingly, there have been several definitions of the calorie. The two perhaps most popular definitions used in older literature are the $15 ^\\circ C$ calorie and the thermochemical calorie."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.184 ; + qudt:conversionMultiplierSN 4.184E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA364" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Calorie"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA364"^^xsd:anyURI ; + qudt:latexDefinition """$1 \\; cal_{th} = 4.184 J$ + +$\\approx 0.003964 BTU$ + +$\\approx 1.163 \\times 10^{-6} kWh$ + +$\\approx 2.611 \\times 10^{19} eV$"""^^qudt:LatexString ; + qudt:scalingOf unit:J ; + qudt:symbol "cal" ; + qudt:ucumCode "cal_th"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D35" ; + rdfs:isDefinedBy ; + rdfs:label "Thermochemical Calorie"@en . + +unit:CAL_TH-PER-CentiM-SEC-DEG_C + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 418.4 ; + qudt:conversionMultiplierSN 4.184E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA365" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA365"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "cal/(cm·s·°C)" ; + qudt:ucumCode "cal_th.cm-1.s-1.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(cm.s.Cel)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J78" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Centimeter Second Degree Celsius"@en-US ; + rdfs:label "Calorie (thermochemical) per Centimetre Second Degree Celsius"@en . + +unit:CAL_TH-PER-CentiM2 + a qudt:Unit ; + dcterms:description "unit of the areal-related energy transmisson according to the Imperial system of units" ; + qudt:conversionMultiplier 41840.0 ; + qudt:conversionMultiplierSN 4.184E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:iec61360Code "0112/2///62720#UAB285" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB285"^^xsd:anyURI ; + qudt:symbol "cal/cm²" ; + qudt:ucumCode "cal_th.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P39" ; + rdfs:isDefinedBy ; + rdfs:label "calorie (thermochemical) per square centimetre" . + +unit:CAL_TH-PER-CentiM2-MIN + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 697.3333333333333333333333333333335 ; + qudt:conversionMultiplierSN 6.973333333333333333333333333333335E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB269" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB269"^^xsd:anyURI ; + qudt:symbol "cal/(cm²·min)" ; + qudt:ucumCode "cal_th.cm-2.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N56" ; + rdfs:isDefinedBy ; + rdfs:label "calorie (thermochemical) per square centimetre minute" . + +unit:CAL_TH-PER-CentiM2-SEC + a qudt:Unit ; + dcterms:description "unit of the surface heat flux according to the Imperial system of units" ; + qudt:conversionMultiplier 41840.0 ; + qudt:conversionMultiplierSN 4.184E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB270" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB270"^^xsd:anyURI ; + qudt:symbol "cal/(cm²·s)" ; + qudt:ucumCode "cal_th.cm-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N57" ; + rdfs:isDefinedBy ; + rdfs:label "calorie (thermochemical) per square centimetre second" . + +unit:CAL_TH-PER-CentiM3-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Thermochemical Calorie per Cubic Centimeter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $cal_th/(cm^{3} K)$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 4184000.0 ; + qudt:conversionMultiplierSN 4.184E6 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$cal_th/(cm^{3} K)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:plainTextDescription "Thermochemical Calorie per Cubic Centimeter Kelvin is a unit for Volumetric Heat Capacity expressed as cal{th}/(cm³·K)." ; + qudt:symbol "cal/(cm³·K)" ; + qudt:ucumCode "cal_th.cm-3.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(cm3.K)"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Thermochemical Calorie per Cubic Centimeter Kelvin"@en-US ; + rdfs:label "Thermochemical Calorie per Cubic Centimetre Kelvin"@en . + +unit:CAL_TH-PER-GM + a qudt:Unit ; + dcterms:description "Thermochemical Calorie. Calories produced per gram of substance."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:expression "$cal$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB153" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--thermal_heat_capacity--british_thermal_unit_therm_per_pound_mass.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB153"^^xsd:anyURI ; + qudt:plainTextDescription "unit thermochemical calorie divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "cal/g" ; + qudt:ucumCode "cal_th.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B36" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Gram"@en . + +unit:CAL_TH-PER-GM-DEG_C + a qudt:Unit ; + dcterms:description "unit calorie (thermochemical) divided by the product of the unit gram and degree Celsius"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA366" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA366"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorie (thermochemical) divided by the product of the unit gram and degree Celsius" ; + qudt:symbol "cal/(g·°C)" ; + qudt:ucumCode "cal_th.g-1.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(g.Cel)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J79" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Gram Degree Celsius"@en . + +unit:CAL_TH-PER-GM-K + a qudt:Unit ; + dcterms:description "unit calorie (thermochemical) divided by the product of the SI derived unit gram and the SI base unit Kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA367" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA367"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorie (thermochemical) divided by the product of the SI derived unit gram and the SI base unit Kelvin" ; + qudt:symbol "cal/(g·K)" ; + qudt:ucumCode "cal_th.g-1.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(g.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D37" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Gram Kelvin"@en . + +unit:CAL_TH-PER-MIN + a qudt:Unit ; + dcterms:description "unit calorie divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.06973 ; + qudt:conversionMultiplierSN 6.973E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA368" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA368"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorie divided by the unit minute" ; + qudt:symbol "cal/min" ; + qudt:ucumCode "cal_th.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J81" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Minute"@en . + +unit:CAL_TH-PER-SEC + a qudt:Unit ; + dcterms:description "unit calorie divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.184 ; + qudt:conversionMultiplierSN 4.184E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA369" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA369"^^xsd:anyURI ; + qudt:plainTextDescription "unit calorie divided by the SI base unit second" ; + qudt:symbol "cal/s" ; + qudt:ucumCode "cal_th.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J82" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Second"@en . + +unit:CAL_TH-PER-SEC-CentiM-K + a qudt:Unit ; + dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 418.4 ; + qudt:conversionMultiplierSN 4.184E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB109" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB109"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units" ; + qudt:symbol "cal/(s·cm·K)" ; + qudt:ucumCode "cal_th.s-1.cm-1.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(s.cm.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D38" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Second Centimeter Kelvin"@en-US ; + rdfs:label "Calorie (thermochemical) per Second Centimetre Kelvin"@en . + +unit:CAL_TH-PER-SEC-CentiM2-K + a qudt:Unit ; + dcterms:description "unit of the heat transfer coefficient according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41840.0 ; + qudt:conversionMultiplierSN 4.184E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB097" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB097"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units" ; + qudt:symbol "cal/(s·cm²·K)" ; + qudt:ucumCode "cal_th.s-1.cm-2.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cal_th/(s.cm2.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D39" ; + rdfs:isDefinedBy ; + rdfs:label "Calorie (thermochemical) per Second Square Centimeter kelvin"@en-US ; + rdfs:label "Calorie (thermochemical) per Second Square Centimetre kelvin"@en . + +unit:CARAT + a qudt:Unit ; + dcterms:description "The carat is a unit of mass equal to 200 mg and is used for measuring gemstones and pearls. The current definition, sometimes known as the metric carat, was adopted in 1907 at the Fourth General Conference on Weights and Measures, and soon afterward in many countries around the world. The carat is divisible into one hundred points of two milligrams each. Other subdivisions, and slightly different mass values, have been used in the past in different locations. In terms of diamonds, a paragon is a flawless stone of at least 100 carats (20 g). The ANSI X.12 EDI standard abbreviation for the carat is $CD$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.0002 ; + qudt:conversionMultiplierSN 2.0E-4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Carat"^^xsd:anyURI ; + qudt:expression "$Nm/ct$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB166" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Carat?oldid=477129057"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB166"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "ct" ; + qudt:ucumCode "[car_m]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CTM" ; + rdfs:isDefinedBy ; + rdfs:label "Carat"@en ; + skos:altLabel "metric carat" . + +unit:CASES-PER-KiloINDIV-YR + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year."^^rdf:HTML ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CASES ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloINDIV ; + ] ; + qudt:hasQuantityKind quantitykind:MorbidityRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ; + qudt:plainTextDescription "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year." ; + qudt:symbol "Cases/1000 individuals/year" ; + rdfs:isDefinedBy ; + rdfs:label "Cases per 1000 individuals year"@en . + +unit:CCY_AED + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AED" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "784" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/United_Arab_Emirates_dirham"^^xsd:anyURI ; + qudt:expression "$AED$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/United_Arab_Emirates_dirham?oldid=491806142"^^xsd:anyURI ; + qudt:symbol "د.إ" ; + rdfs:isDefinedBy ; + rdfs:label "United Arab Emirates dirham"@en . + +unit:CCY_AFN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AFN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "971" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Afghani"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Afghani?oldid=485904590"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Afghani"@en . + +unit:CCY_ALL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ALL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "008" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lek"^^xsd:anyURI ; + qudt:expression "$ALL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lek?oldid=495195665"^^xsd:anyURI ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Lek"@en . + +unit:CCY_AMD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AMD" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "051" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Armenian_dram"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Armenian_dram?oldid=492709723"^^xsd:anyURI ; + qudt:symbol "֏" ; + rdfs:isDefinedBy ; + rdfs:label "Armenian Dram"@en . + +unit:CCY_ANG + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ANG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "532" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Netherlands_Antillean_guilder"^^xsd:anyURI ; + qudt:expression "$ANG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Netherlands_Antillean_guilder?oldid=490030382"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Netherlands Antillian Guilder"@en . + +unit:CCY_AOA + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AOA" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "973" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angolan_kwanza"^^xsd:anyURI ; + qudt:expression "$AOA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Angolan_kwanza?oldid=491748749"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kwanza"@en . + +unit:CCY_ARS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ARS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "032" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Argentine_peso"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Argentine_peso?oldid=491431588"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Argentine Peso"@en . + +unit:CCY_AUD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AUD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "036" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Australian_dollar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Australian_dollar?oldid=495046408"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Australian Dollar"@en . + +unit:CCY_AWG + a qudt:CurrencyUnit, qudt:Unit ; + dcterms:description """ + The unit for $\\textit{American Wire Gage}$, symbol $AWG$, is for the standard nominal diameters and cross-sectional areas of American Wire Gage sizes of solid round wires used as electrical conductors. + """^^qudt:LatexString ; + qudt:currencyCode "AWG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "533" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Aruban_florin"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD909" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Aruban_florin?oldid=492925638"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD909"^^xsd:anyURI ; + qudt:symbol "AWG" ; + qudt:uneceCommonCode "AWG" ; + rdfs:isDefinedBy ; + rdfs:label "Aruban Guilder"@en ; + rdfs:label "american wire gage" . + +unit:CCY_AZN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "AZN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "944" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Azerbaijani_manat"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Azerbaijani_manat?oldid=495479090"^^xsd:anyURI ; + qudt:symbol "₼" ; + rdfs:isDefinedBy ; + rdfs:label "Azerbaijanian Manat"@en . + +unit:CCY_BAM + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BAM" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "977" ; + qudt:expression "$BAM$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "KM" ; + rdfs:isDefinedBy ; + rdfs:label "Convertible Marks"@en . + +unit:CCY_BBD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BBD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "052" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Barbadian_dollar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barbadian_dollar?oldid=494388633"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Barbados Dollar"@en . + +unit:CCY_BDT + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BDT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "050" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bangladeshi_taka"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bangladeshi_taka?oldid=492673895"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bangladeshi Taka"@en . + +unit:CCY_BGN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BGN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "975" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bulgarian_lev"^^xsd:anyURI ; + qudt:expression "$BGN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bulgarian_lev?oldid=494947467"^^xsd:anyURI ; + qudt:symbol "лв." ; + rdfs:isDefinedBy ; + rdfs:label "Bulgarian Lev"@en . + +unit:CCY_BHD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BHD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "048" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bahraini_dinar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bahraini_dinar?oldid=493086643"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bahraini Dinar"@en . + +unit:CCY_BIF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BIF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "108" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Burundian_franc"^^xsd:anyURI ; + qudt:expression "$BIF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Burundian_franc?oldid=489383699"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Burundian Franc"@en . + +unit:CCY_BMD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "060" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bermudian_dollar"^^xsd:anyURI ; + qudt:expression "$BMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bermudian_dollar?oldid=492670344"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bermuda Dollar"@en . + +unit:CCY_BND + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BND" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "096" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Brunei_dollar"^^xsd:anyURI ; + qudt:expression "$BND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Brunei_dollar?oldid=495134546"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Brunei Dollar"@en . + +unit:CCY_BOB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BOB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "068" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bolivian_boliviano"^^xsd:anyURI ; + qudt:expression "$BOB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bolivian_boliviano?oldid=494873944"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Boliviano"@en . + +unit:CCY_BOV + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BOV" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "984" ; + qudt:expression "$BOV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Bolivian Mvdol (Funds code)"@en . + +unit:CCY_BRL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BRL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "986" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Brazilian_real"^^xsd:anyURI ; + qudt:expression "$BRL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Brazilian_real?oldid=495278259"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Brazilian Real"@en . + +unit:CCY_BSD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BSD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "044" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bahamian_dollar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bahamian_dollar?oldid=492776024"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bahamian Dollar"@en . + +unit:CCY_BTN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BTN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "064" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bhutanese_ngultrum"^^xsd:anyURI ; + qudt:expression "$BTN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bhutanese_ngultrum?oldid=491579260"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ngultrum"@en . + +unit:CCY_BWP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BWP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "072" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pula"^^xsd:anyURI ; + qudt:expression "$BWP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pula?oldid=495207177"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pula"@en . + +unit:CCY_BYN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BYN" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "933" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Belarusian_ruble"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Belarusian_ruble?oldid=494143246"^^xsd:anyURI ; + qudt:symbol "Rbl" ; + rdfs:isDefinedBy ; + rdfs:label "Belarussian Ruble"@en . + +unit:CCY_BZD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "BZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "084" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Belize_dollar"^^xsd:anyURI ; + qudt:expression "$BZD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Belize_dollar?oldid=462662376"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Belize Dollar"@en . + +unit:CCY_CAD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "124" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Canadian_dollar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Canadian_dollar?oldid=494738466"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Canadian Dollar"@en . + +unit:CCY_CDF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CDF" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "976" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Congolese_franc"^^xsd:anyURI ; + qudt:expression "$CDF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Congolese_franc?oldid=490314640"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Franc Congolais"@en . + +unit:CCY_CHE + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CHE" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "947" ; + qudt:expression "$CHE$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "WIR Euro (complementary currency)"@en . + +unit:CCY_CHF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CHF" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "756" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swiss_franc"^^xsd:anyURI ; + qudt:expression "$CHF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swiss_franc?oldid=492548706"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "CHF" ; + rdfs:isDefinedBy ; + rdfs:label "Swiss Franc"@en . + +unit:CCY_CHW + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CHW" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "948" ; + qudt:expression "$CHW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "WIR Franc (complementary currency)"@en . + +unit:CCY_CLF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CLF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "990" ; + qudt:expression "$CLF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Unidades de formento (Funds code)"@en . + +unit:CCY_CLP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CLP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "152" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Chilean_peso"^^xsd:anyURI ; + qudt:expression "$CLP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chilean_peso?oldid=495455481"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Chilean Peso"@en . + +unit:CCY_CNY + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CNY" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "156" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Renminbi"^^xsd:anyURI ; + qudt:expression "$CNY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Renminbi?oldid=494799454"^^xsd:anyURI ; + qudt:symbol "¥" ; + rdfs:isDefinedBy ; + rdfs:label "Yuan Renminbi"@en . + +unit:CCY_COP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "COP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "170" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Colombian_peso"^^xsd:anyURI ; + qudt:expression "$COP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Colombian_peso?oldid=490834575"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Colombian Peso"@en . + +unit:CCY_COU + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "COU" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "970" ; + qudt:expression "$COU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Unidad de Valor Real"@en . + +unit:CCY_CRC + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CRC" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "188" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Costa_Rican_col%C3%B3n"^^xsd:anyURI ; + qudt:expression "$CRC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Costa_Rican_colón?oldid=491007608"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Costa Rican Colon"@en . + +unit:CCY_CUP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CUP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "192" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cuban_peso"^^xsd:anyURI ; + qudt:expression "$CUP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cuban_peso?oldid=486492974"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cuban Peso"@en . + +unit:CCY_CVE + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CVE" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "132" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cape_Verdean_escudo"^^xsd:anyURI ; + qudt:expression "$CVE$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cape_Verdean_escudo?oldid=491416749"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cape Verde Escudo"@en . + +unit:CCY_CYP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CYP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "196" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cypriot_pound"^^xsd:anyURI ; + qudt:expression "$CYP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cypriot_pound?oldid=492644935"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cyprus Pound"@en . + +unit:CCY_CZK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "CZK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "203" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Czech_koruna"^^xsd:anyURI ; + qudt:expression "$CZK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Czech_koruna?oldid=493991393"^^xsd:anyURI ; + qudt:symbol "Kč" ; + rdfs:isDefinedBy ; + rdfs:label "Czech Koruna"@en . + +unit:CCY_DJF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "DJF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "262" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Djiboutian_franc"^^xsd:anyURI ; + qudt:expression "$DJF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Djiboutian_franc?oldid=486807423"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Djibouti Franc"@en . + +unit:CCY_DKK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "DKK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "208" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Danish_krone"^^xsd:anyURI ; + qudt:expression "$DKK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Danish_krone?oldid=491168880"^^xsd:anyURI ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Danish Krone"@en . + +unit:CCY_DOP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "DOP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "214" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dominican_peso"^^xsd:anyURI ; + qudt:expression "$DOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dominican_peso?oldid=493950199"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dominican Peso"@en . + +unit:CCY_DZD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "DZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "012" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Algerian_dinar"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Algerian_dinar?oldid=492845503"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Algerian Dinar"@en . + +unit:CCY_EEK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "EEK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "233" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Estonian_kroon"^^xsd:anyURI ; + qudt:expression "$EEK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Estonian_kroon?oldid=492626188"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kroon"@en . + +unit:CCY_EGP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "EGP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "818" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Egyptian_pound"^^xsd:anyURI ; + qudt:expression "$EGP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Egyptian_pound?oldid=494670285"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Egyptian Pound"@en . + +unit:CCY_ERN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ERN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "232" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nakfa"^^xsd:anyURI ; + qudt:expression "$ERN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nakfa?oldid=415286274"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nakfa"@en . + +unit:CCY_ETB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ETB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "230" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ethiopian_birr"^^xsd:anyURI ; + qudt:expression "$ETB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ethiopian_birr?oldid=493373507"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ethiopian Birr"@en . + +unit:CCY_EUR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "EUR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "978" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Euro"^^xsd:anyURI ; + qudt:expression "$EUR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Euro?oldid=495293446"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "€" ; + rdfs:isDefinedBy ; + rdfs:label "Euro"@en . + +unit:CCY_EUR-PER-KiloW + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerPower ; + qudt:plainTextDescription "Unit for measuring the hardware cost of a power generation unit relative to the generated power" ; + qudt:symbol "€/kW" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per kilowatt"@en . + +unit:CCY_EUR-PER-KiloW-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerEnergy ; + qudt:plainTextDescription "Unit for measuring the cost of electricity." ; + qudt:symbol "€/(kW·h)" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per kilowatt hour"@en . + +unit:CCY_EUR-PER-M2 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerArea ; + qudt:plainTextDescription "Unit for expressing cost per square metre" ; + qudt:symbol "€/m²" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per square metre"@en . + +unit:CCY_EUR-PER-W + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerPower ; + qudt:plainTextDescription "Unit for measuring the hardware cost of a power generation unit relative to the generated power" ; + qudt:symbol "€/W" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per watt"@en . + +unit:CCY_EUR-PER-W-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerEnergy ; + qudt:plainTextDescription "Unit for measuring the cost of electricity." ; + qudt:symbol "€/(W·h)" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per watt hour"@en . + +unit:CCY_EUR-PER-W-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CCY_EUR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerEnergy ; + qudt:plainTextDescription "Unit for measuring the cost of electricity." ; + qudt:symbol "€/(W·s)" ; + rdfs:isDefinedBy ; + rdfs:label "Euro per watt second"@en . + +unit:CCY_FJD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "FJD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "242" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Fijian_dollar"^^xsd:anyURI ; + qudt:expression "$FJD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fijian_dollar?oldid=494373740"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Fiji Dollar"@en . + +unit:CCY_FKP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "FKP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "238" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Falkland_Islands_pound"^^xsd:anyURI ; + qudt:expression "$FKP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Falkland_Islands_pound?oldid=489513616"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Falkland Islands Pound"@en . + +unit:CCY_GBP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GBP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "826" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_sterling"^^xsd:anyURI ; + qudt:expression "$GBP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_sterling?oldid=495524329"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "£" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Sterling"@en . + +unit:CCY_GEL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GEL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "981" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lari"^^xsd:anyURI ; + qudt:expression "$GEL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lari?oldid=486808394"^^xsd:anyURI ; + qudt:symbol "₾" ; + rdfs:isDefinedBy ; + rdfs:label "Lari"@en . + +unit:CCY_GHS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GHS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "936" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ghanaian_cedi"^^xsd:anyURI ; + qudt:expression "$GHS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ghanaian_cedi?oldid=415914569"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cedi"@en . + +unit:CCY_GIP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GIP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "292" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gibraltar_pound"^^xsd:anyURI ; + qudt:expression "$GIP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gibraltar_pound?oldid=494842600"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Gibraltar pound"@en . + +unit:CCY_GMD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "270" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gambian_dalasi"^^xsd:anyURI ; + qudt:expression "$GMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gambian_dalasi?oldid=489522429"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dalasi"@en . + +unit:CCY_GNF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GNF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "324" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guinean_franc"^^xsd:anyURI ; + qudt:expression "$GNF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guinean_franc?oldid=489527042"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guinea Franc"@en . + +unit:CCY_GTQ + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GTQ" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "320" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quetzal"^^xsd:anyURI ; + qudt:expression "$GTQ$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quetzal?oldid=489813522"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Quetzal"@en . + +unit:CCY_GYD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "GYD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "328" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guyanese_dollar"^^xsd:anyURI ; + qudt:expression "$GYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guyanese_dollar?oldid=495070062"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guyana Dollar"@en . + +unit:CCY_HKD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "HKD" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "344" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hong_Kong_dollar"^^xsd:anyURI ; + qudt:expression "$HKD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hong_Kong_dollar?oldid=495133277"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Hong Kong Dollar"@en . + +unit:CCY_HNL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "HNL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "340" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lempira"^^xsd:anyURI ; + qudt:expression "$HNL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lempira?oldid=389955747"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lempira"@en . + +unit:CCY_HRK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "HRK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "191" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Croatian_kuna"^^xsd:anyURI ; + qudt:expression "$HRK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Croatian_kuna?oldid=490959527"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Croatian Kuna"@en . + +unit:CCY_HTG + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "HTG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "332" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Haitian_gourde"^^xsd:anyURI ; + qudt:expression "$HTG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Haitian_gourde?oldid=486090975"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Haiti Gourde"@en . + +unit:CCY_HUF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "HUF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "348" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hungarian_forint"^^xsd:anyURI ; + qudt:expression "$HUF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hungarian_forint?oldid=492818607"^^xsd:anyURI ; + qudt:symbol "Ft" ; + rdfs:isDefinedBy ; + rdfs:label "Forint"@en . + +unit:CCY_IDR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "IDR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "360" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Indonesian_rupiah"^^xsd:anyURI ; + qudt:expression "$IDR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Indonesian_rupiah?oldid=489729458"^^xsd:anyURI ; + qudt:symbol "Rp" ; + rdfs:isDefinedBy ; + rdfs:label "Rupiah"@en . + +unit:CCY_ILS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ILS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "376" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Israeli_new_sheqel"^^xsd:anyURI ; + qudt:expression "$ILS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Israeli_new_sheqel?oldid=316213924"^^xsd:anyURI ; + qudt:symbol "₪" ; + rdfs:isDefinedBy ; + rdfs:label "New Israeli Shekel"@en . + +unit:CCY_INR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "INR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "356" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Indian_rupee"^^xsd:anyURI ; + qudt:expression "$INR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Indian_rupee?oldid=495120167"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "₹" ; + rdfs:isDefinedBy ; + rdfs:label "Indian Rupee"@en . + +unit:CCY_IQD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "IQD" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "368" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Iraqi_dinar"^^xsd:anyURI ; + qudt:expression "$IQD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Iraqi_dinar?oldid=494793908"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Iraqi Dinar"@en . + +unit:CCY_IRR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "IRR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "364" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Iranian_rial"^^xsd:anyURI ; + qudt:expression "$IRR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Iranian_rial?oldid=495299431"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Iranian Rial"@en . + +unit:CCY_ISK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ISK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "352" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Icelandic_kr%C3%B3na"^^xsd:anyURI ; + qudt:expression "$ISK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Icelandic_króna?oldid=495457496"^^xsd:anyURI ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Iceland Krona"@en . + +unit:CCY_JMD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "JMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "388" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Jamaican_dollar"^^xsd:anyURI ; + qudt:expression "$JMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Jamaican_dollar?oldid=494039981"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Jamaican Dollar"@en . + +unit:CCY_JOD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "JOD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "400" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Jordanian_dinar"^^xsd:anyURI ; + qudt:expression "$JOD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Jordanian_dinar?oldid=495270728"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Jordanian Dinar"@en . + +unit:CCY_JPY + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "JPY" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "392" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Japanese_yen"^^xsd:anyURI ; + qudt:expression "$JPY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Japanese_yen?oldid=493771966"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "¥" ; + rdfs:isDefinedBy ; + rdfs:label "Japanese yen"@en . + +unit:CCY_KES + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KES" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "404" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kenyan_shilling"^^xsd:anyURI ; + qudt:expression "$KES$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kenyan_shilling?oldid=489547027"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kenyan Shilling"@en . + +unit:CCY_KGS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KGS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "417" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Som"^^xsd:anyURI ; + qudt:expression "$KGS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Som?oldid=495411674"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Som"@en . + +unit:CCY_KHR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KHR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "116" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Riel"^^xsd:anyURI ; + qudt:expression "$KHR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Riel?oldid=473309240"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Riel"@en . + +unit:CCY_KMF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KMF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "174" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Comorian_franc"^^xsd:anyURI ; + qudt:expression "$KMF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Comorian_franc?oldid=489502162"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Comoro Franc"@en . + +unit:CCY_KPW + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KPW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "408" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/North_Korean_won"^^xsd:anyURI ; + qudt:expression "$KPW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/North_Korean_won?oldid=495081686"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "North Korean Won"@en . + +unit:CCY_KRW + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KRW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "410" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/South_Korean_won"^^xsd:anyURI ; + qudt:expression "$KRW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/South_Korean_won?oldid=494404062"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "₩" ; + rdfs:isDefinedBy ; + rdfs:label "South Korean Won"@en . + +unit:CCY_KWD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KWD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "414" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kuwaiti_dinar"^^xsd:anyURI ; + qudt:expression "$KWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kuwaiti_dinar?oldid=489547428"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kuwaiti Dinar"@en . + +unit:CCY_KYD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KYD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "136" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cayman_Islands_dollar"^^xsd:anyURI ; + qudt:expression "$KYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cayman_Islands_dollar?oldid=494206112"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cayman Islands Dollar"@en . + +unit:CCY_KZT + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "KZT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "398" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kazakhstani_tenge"^^xsd:anyURI ; + qudt:expression "$KZT$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kazakhstani_tenge?oldid=490523058"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tenge"@en . + +unit:CCY_LAK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LAK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "418" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol " ₭" ; + rdfs:isDefinedBy ; + rdfs:label "Lao kip"@en . + +unit:CCY_LBP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LBP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "422" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lebanese_pound"^^xsd:anyURI ; + qudt:expression "$LBP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lebanese_pound?oldid=495528740"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lebanese Pound"@en . + +unit:CCY_LKR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LKR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "144" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sri_Lankan_rupee"^^xsd:anyURI ; + qudt:expression "$LKR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sri_Lankan_rupee?oldid=495359963"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Sri Lanka Rupee"@en . + +unit:CCY_LRD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LRD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "430" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Liberian_dollar"^^xsd:anyURI ; + qudt:expression "$LRD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Liberian_dollar?oldid=489549110"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Liberian Dollar"@en . + +unit:CCY_LSL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LSL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "426" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Loti"^^xsd:anyURI ; + qudt:expression "$LSL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Loti?oldid=384534708"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Loti"@en . + +unit:CCY_LTL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LTL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "440" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lithuanian_litas"^^xsd:anyURI ; + qudt:expression "$LTL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lithuanian_litas?oldid=493046592"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lithuanian Litas"@en . + +unit:CCY_LVL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LVL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "428" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Latvian_lats"^^xsd:anyURI ; + qudt:expression "$LVL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Latvian_lats?oldid=492800402"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Latvian Lats"@en . + +unit:CCY_LYD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "LYD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "434" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Libyan_dinar"^^xsd:anyURI ; + qudt:expression "$LYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Libyan_dinar?oldid=491421981"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Libyan Dinar"@en . + +unit:CCY_MAD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "504" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Moroccan_dirham"^^xsd:anyURI ; + qudt:expression "$MAD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moroccan_dirham?oldid=490560557"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Moroccan Dirham"@en . + +unit:CCY_MDL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MDL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "498" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Moldovan_leu"^^xsd:anyURI ; + qudt:expression "$MDL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moldovan_leu?oldid=490027766"^^xsd:anyURI ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Moldovan Leu"@en . + +unit:CCY_MGA + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MGA" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "969" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Malagasy_ariary"^^xsd:anyURI ; + qudt:expression "$MGA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Malagasy_ariary?oldid=489551279"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Malagasy Ariary"@en . + +unit:CCY_MKD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MKD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "807" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Macedonian_denar"^^xsd:anyURI ; + qudt:expression "$MKD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Macedonian_denar?oldid=489550202"^^xsd:anyURI ; + qudt:symbol "ден" ; + rdfs:isDefinedBy ; + rdfs:label "Denar"@en . + +unit:CCY_MMK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MMK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "104" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Myanma_kyat"^^xsd:anyURI ; + qudt:expression "$MMK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Myanma_kyat?oldid=441109905"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kyat"@en . + +unit:CCY_MNT + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyExponent 2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mongolian_t%C3%B6gr%C3%B6g"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mongolian_tögrög?oldid=495408271"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Mongolian Tugrik"@en . + +unit:CCY_MOP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MOP" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "446" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pataca"^^xsd:anyURI ; + qudt:expression "$MOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pataca?oldid=482490442"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pataca"@en . + +unit:CCY_MRU + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MRU" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "929" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritanian_ouguiya"^^xsd:anyURI ; + qudt:expression "$MRO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritanian_ouguiya?oldid=490027072"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ouguiya"@en . + +unit:CCY_MTL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MTL" ; + qudt:currencyNumber "470" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Maltese_lira"^^xsd:anyURI ; + qudt:expression "$MTL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maltese_lira?oldid=493810797"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Maltese Lira"@en . + +unit:CCY_MUR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MUR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "480" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritian_rupee"^^xsd:anyURI ; + qudt:expression "$MUR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritian_rupee?oldid=487629200"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Mauritius Rupee"@en . + +unit:CCY_MVR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MVR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "462" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Maldivian_rufiyaa"^^xsd:anyURI ; + qudt:expression "$MVR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maldivian_rufiyaa?oldid=491578728"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rufiyaa"@en . + +unit:CCY_MWK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MWK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "454" ; + qudt:expression "$MWK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Malawi Kwacha"@en . + +unit:CCY_MXN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MXN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "484" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mexican_peso"^^xsd:anyURI ; + qudt:expression "$MXN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mexican_peso?oldid=494829813"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Mexican Peso"@en . + +unit:CCY_MXV + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MXV" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "979" ; + qudt:expression "$MXV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Mexican Unidad de Inversion (UDI) (Funds code)"@en . + +unit:CCY_MYR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MYR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "458" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Malaysian_ringgit"^^xsd:anyURI ; + qudt:expression "$MYR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Malaysian_ringgit?oldid=494417091"^^xsd:anyURI ; + qudt:symbol "RM" ; + rdfs:isDefinedBy ; + rdfs:label "Malaysian Ringgit"@en . + +unit:CCY_MZN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "MZN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "943" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mozambican_metical"^^xsd:anyURI ; + qudt:expression "$MZN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mozambican_metical?oldid=488225670"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Metical"@en . + +unit:CCY_NAD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "516" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Namibian_dollar"^^xsd:anyURI ; + qudt:expression "$NAD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Namibian_dollar?oldid=495250023"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Namibian Dollar"@en . + +unit:CCY_NGN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NGN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "566" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nigerian_naira"^^xsd:anyURI ; + qudt:expression "$NGN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nigerian_naira?oldid=493462003"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Naira"@en . + +unit:CCY_NIO + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NIO" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "558" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nicaraguan_c%C3%B3rdoba"^^xsd:anyURI ; + qudt:expression "$NIO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nicaraguan_córdoba?oldid=486140595"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cordoba Oro"@en . + +unit:CCY_NOK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NOK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "578" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Norwegian_krone"^^xsd:anyURI ; + qudt:expression "$NOK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Norwegian_krone?oldid=495283934"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Norwegian Krone"@en . + +unit:CCY_NPR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NPR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "524" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nepalese_rupee"^^xsd:anyURI ; + qudt:expression "$NPR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nepalese_rupee?oldid=476894226"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nepalese Rupee"@en . + +unit:CCY_NZD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "NZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "554" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/New_Zealand_dollar"^^xsd:anyURI ; + qudt:expression "$NZD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/New_Zealand_dollar?oldid=495487722"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "New Zealand Dollar"@en . + +unit:CCY_OMR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "OMR" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "512" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Omani_rial"^^xsd:anyURI ; + qudt:expression "$OMR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Omani_rial?oldid=491748879"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rial Omani"@en . + +unit:CCY_PAB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PAB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "590" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Balboa"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Balboa?oldid=482550791"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Balboa"@en . + +unit:CCY_PEN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PEN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "604" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Peruvian_nuevo_sol"^^xsd:anyURI ; + qudt:expression "$PEN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Peruvian_nuevo_sol?oldid=494237249"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nuevo Sol"@en . + +unit:CCY_PGK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PGK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "598" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kina"^^xsd:anyURI ; + qudt:expression "$PGK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kina?oldid=477155361"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kina"@en . + +unit:CCY_PHP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PHP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "608" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Philippine_peso"^^xsd:anyURI ; + qudt:expression "$PHP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Philippine_peso?oldid=495411811"^^xsd:anyURI ; + qudt:symbol "₱" ; + rdfs:isDefinedBy ; + rdfs:label "Philippine Peso"@en . + +unit:CCY_PKR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PKR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "586" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pakistani_rupee"^^xsd:anyURI ; + qudt:expression "$PKR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pakistani_rupee?oldid=494937873"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pakistan Rupee"@en . + +unit:CCY_PLN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PLN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "985" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Polish_z%C5%82oty"^^xsd:anyURI ; + qudt:expression "$PLN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Polish_złoty?oldid=492697733"^^xsd:anyURI ; + qudt:symbol "zł" ; + rdfs:isDefinedBy ; + rdfs:label "Zloty"@en . + +unit:CCY_PYG + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "PYG" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "600" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guaran%C3%AD"^^xsd:anyURI ; + qudt:expression "$PYG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guaraní?oldid=412592698"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guarani"@en . + +unit:CCY_QAR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "QAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "634" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Qatari_riyal"^^xsd:anyURI ; + qudt:expression "$QAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Qatari_riyal?oldid=491747452"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Qatari Rial"@en . + +unit:CCY_RON + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "RON" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "946" ; + qudt:expression "$RON$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Romanian New Leu"@en . + +unit:CCY_RSD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "RSD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "941" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Serbian_dinar"^^xsd:anyURI ; + qudt:expression "$RSD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Serbian_dinar?oldid=495146650"^^xsd:anyURI ; + qudt:symbol "дин" ; + rdfs:isDefinedBy ; + rdfs:label "Serbian Dinar"@en . + +unit:CCY_RUB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "RUB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "643" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Russian_ruble"^^xsd:anyURI ; + qudt:expression "$RUB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Russian_ruble?oldid=494336467"^^xsd:anyURI ; + qudt:symbol "₽" ; + rdfs:isDefinedBy ; + rdfs:label "Russian Ruble"@en . + +unit:CCY_RWF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "RWF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "646" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Rwandan_franc"^^xsd:anyURI ; + qudt:expression "$RWF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rwandan_franc?oldid=489727903"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rwanda Franc"@en . + +unit:CCY_SAR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "682" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Saudi_riyal"^^xsd:anyURI ; + qudt:expression "$SAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Saudi_riyal?oldid=491092981"^^xsd:anyURI ; + qudt:symbol "﷼" ; + rdfs:isDefinedBy ; + rdfs:label "Saudi Riyal"@en . + +unit:CCY_SBD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SBD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "090" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Solomon_Islands_dollar"^^xsd:anyURI ; + qudt:expression "$SBD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Solomon_Islands_dollar?oldid=490313285"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Solomon Islands Dollar"@en . + +unit:CCY_SCR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SCR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "690" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Seychellois_rupee"^^xsd:anyURI ; + qudt:expression "$SCR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Seychellois_rupee?oldid=492242185"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Seychelles Rupee"@en . + +unit:CCY_SDG + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SDG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "938" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sudanese_pound"^^xsd:anyURI ; + qudt:expression "$SDG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sudanese_pound?oldid=495263707"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Sudanese Pound"@en . + +unit:CCY_SEK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SEK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "752" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swedish_krona"^^xsd:anyURI ; + qudt:expression "$SEK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swedish_krona?oldid=492703602"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Swedish Krona"@en . + +unit:CCY_SGD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SGD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "702" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Singapore_dollar"^^xsd:anyURI ; + qudt:expression "$SGD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Singapore_dollar?oldid=492228311"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Singapore Dollar"@en . + +unit:CCY_SHP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SHP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "654" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Saint_Helena_pound"^^xsd:anyURI ; + qudt:expression "$SHP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Saint_Helena_pound?oldid=490152057"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Saint Helena Pound"@en . + +unit:CCY_SKK + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SKK" ; + qudt:currencyNumber "703" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Slovak_koruna"^^xsd:anyURI ; + qudt:expression "$SKK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Slovak_koruna?oldid=492625951"^^xsd:anyURI ; + qudt:symbol "Sk" ; + rdfs:isDefinedBy ; + rdfs:label "Slovak Koruna"@en . + +unit:CCY_SLE + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SLE" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "925" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sierra_Leonean_leone"^^xsd:anyURI ; + qudt:expression "$SLL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sierra_Leonean_leone?oldid=493517965"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Leone"@en . + +unit:CCY_SOS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SOS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "706" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Somali_shilling"^^xsd:anyURI ; + qudt:expression "$SOS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Somali_shilling?oldid=494434126"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Somali Shilling"@en . + +unit:CCY_SRD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SRD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "968" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Surinamese_dollar"^^xsd:anyURI ; + qudt:expression "$SRD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Surinamese_dollar?oldid=490316270"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Surinam Dollar"@en . + +unit:CCY_STN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "STN" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "930" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dobra"^^xsd:anyURI ; + qudt:expression "$STD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dobra?oldid=475725328"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dobra"@en . + +unit:CCY_SYP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SYP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "760" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Syrian_pound"^^xsd:anyURI ; + qudt:expression "$SYP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Syrian_pound?oldid=484294722"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Syrian Pound"@en . + +unit:CCY_SZL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "SZL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "748" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swazi_lilangeni"^^xsd:anyURI ; + qudt:expression "$SZL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swazi_lilangeni?oldid=490323340"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lilangeni"@en . + +unit:CCY_THB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "THB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "764" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thai_baht"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thai_baht?oldid=493286022"^^xsd:anyURI ; + qudt:symbol "฿" ; + rdfs:isDefinedBy ; + rdfs:label "Baht"@en . + +unit:CCY_TJS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TJS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "972" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tajikistani_somoni"^^xsd:anyURI ; + qudt:expression "$TJS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tajikistani_somoni?oldid=492500781"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Somoni"@en . + +unit:CCY_TMT + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TMT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "934" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Manat"^^xsd:anyURI ; + qudt:expression "$TMM$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Manat?oldid=486967490"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Manat"@en . + +unit:CCY_TND + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TND" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "788" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tunisian_dinar"^^xsd:anyURI ; + qudt:expression "$TND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tunisian_dinar?oldid=491218035"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tunisian Dinar"@en . + +unit:CCY_TOP + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TOP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "776" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tongan_pa%CA%BBanga"^^xsd:anyURI ; + qudt:expression "$TOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tongan_paʻanga?oldid=482738012"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pa'anga"@en . + +unit:CCY_TRY + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TRY" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "949" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Turkish_lira"^^xsd:anyURI ; + qudt:expression "$TRY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Turkish_lira?oldid=494097764"^^xsd:anyURI ; + qudt:symbol "₺" ; + rdfs:isDefinedBy ; + rdfs:label "New Turkish Lira"@en . + +unit:CCY_TTD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TTD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "780" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Trinidad_and_Tobago_dollar"^^xsd:anyURI ; + qudt:expression "$TTD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Trinidad_and_Tobago_dollar?oldid=490325306"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Trinidad and Tobago Dollar"@en . + +unit:CCY_TWD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TWD" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "901" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/New_Taiwan_dollar"^^xsd:anyURI ; + qudt:expression "$TWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/New_Taiwan_dollar?oldid=493996933"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "New Taiwan Dollar"@en . + +unit:CCY_TZS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "TZS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "834" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tanzanian_shilling"^^xsd:anyURI ; + qudt:expression "$TZS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tanzanian_shilling?oldid=492257527"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tanzanian Shilling"@en . + +unit:CCY_UAH + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "UAH" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "980" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ukrainian_hryvnia"^^xsd:anyURI ; + qudt:expression "$UAH$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ukrainian_hryvnia?oldid=493064633"^^xsd:anyURI ; + qudt:symbol "₴" ; + rdfs:isDefinedBy ; + rdfs:label "Hryvnia"@en . + +unit:CCY_UGX + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "UGX" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "800" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ugandan_shilling"^^xsd:anyURI ; + qudt:expression "$UGX$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ugandan_shilling?oldid=495383966"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Uganda Shilling"@en . + +unit:CCY_USD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:altSymbol "US$" ; + qudt:currencyCode "USD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "840" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "US Dollar"@en . + +unit:CCY_USN + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "USN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "997" ; + qudt:expression "$USN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "United States Dollar (next day) (funds code)"@en . + +unit:CCY_USS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "USS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "998" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "United States Dollar (same day) (funds code)"@en . + +unit:CCY_UYU + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "UYU" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "858" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Uruguayan_peso"^^xsd:anyURI ; + qudt:expression "$UYU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Uruguayan_peso?oldid=487528781"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Peso Uruguayo"@en . + +unit:CCY_UZS + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "UZS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "860" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Uzbekistani_som"^^xsd:anyURI ; + qudt:expression "$UZS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Uzbekistani_som?oldid=490522228"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Uzbekistan Som"@en . + +unit:CCY_VES + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "VES" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "928" ; + qudt:expression "$VEB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Venezuelan bolvar"@en . + +unit:CCY_VND + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "VND" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "704" ; + qudt:expression "$VND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Vietnamese ??ng"@en . + +unit:CCY_VUV + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "VUV" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "548" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Vanuatu_vatu"^^xsd:anyURI ; + qudt:expression "$VUV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Vanuatu_vatu?oldid=494667103"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Vatu"@en . + +unit:CCY_WST + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "WST" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "882" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Samoan_tala"^^xsd:anyURI ; + qudt:expression "$WST$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Samoan_tala?oldid=423898531"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Samoan Tala"@en . + +unit:CCY_XAF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XAF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "950" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFA Franc BEAC"@en . + +unit:CCY_XAG + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XAG" ; + qudt:currencyNumber "961" ; + qudt:expression "$XAG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Ag}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Silver (one Troy ounce)"@en . + +unit:CCY_XAU + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XAU" ; + qudt:currencyNumber "959" ; + qudt:expression "$XAU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Au}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gold (one Troy ounce)"@en . + +unit:CCY_XBA + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XBA" ; + qudt:currencyNumber "955" ; + qudt:expression "$XBA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Composite Unit (EURCO) (Bonds market unit)"@en . + +unit:CCY_XBB + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XBB" ; + qudt:currencyNumber "956" ; + qudt:expression "$XBB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Monetary Unit (E.M.U.-6) (Bonds market unit)"@en . + +unit:CCY_XBC + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XBC" ; + qudt:currencyNumber "957" ; + qudt:expression "$XBC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Unit of Account 9 (E.U.A.-9) (Bonds market unit)"@en . + +unit:CCY_XBD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XBD" ; + qudt:currencyNumber "958" ; + qudt:expression "$XBD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Unit of Account 17 (E.U.A.-17) (Bonds market unit)"@en . + +unit:CCY_XCD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XCD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "951" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/East_Caribbean_dollar"^^xsd:anyURI ; + qudt:expression "$XCD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/East_Caribbean_dollar?oldid=493020176"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "East Caribbean Dollar"@en . + +unit:CCY_XDR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XDR" ; + qudt:currencyNumber "960" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Special_Drawing_Rights"^^xsd:anyURI ; + qudt:expression "$XDR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Special_Drawing_Rights?oldid=467224374"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Special Drawing Rights"@en . + +unit:CCY_XFO + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XFO" ; + qudt:expression "$XFO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Gold franc (special settlement currency)"@en . + +unit:CCY_XFU + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XFU" ; + qudt:expression "$XFU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "UIC franc (special settlement currency)"@en . + +unit:CCY_XOF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XOF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "952" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFA Franc BCEAO"@en . + +unit:CCY_XPD + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XPD" ; + qudt:currencyNumber "964" ; + qudt:expression "$XPD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Pd}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Palladium (one Troy ounce)"@en . + +unit:CCY_XPF + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XPF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "953" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFP franc"@en . + +unit:CCY_XPT + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "XPT" ; + qudt:currencyNumber "962" ; + qudt:expression "$XPT$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Pt}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Platinum (one Troy ounce)"@en . + +unit:CCY_YER + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "YER" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "886" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Yemeni_rial"^^xsd:anyURI ; + qudt:expression "$YER$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Yemeni_rial?oldid=494507603"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Yemeni Rial"@en . + +unit:CCY_ZAR + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ZAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "710" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/South_African_rand"^^xsd:anyURI ; + qudt:expression "$ZAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/South_African_rand?oldid=493780395"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "R" ; + rdfs:isDefinedBy ; + rdfs:label "South African Rand"@en . + +unit:CCY_ZMW + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ZMW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "967" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zambian_kwacha"^^xsd:anyURI ; + qudt:expression "$ZMK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zambian_kwacha?oldid=490328608"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Zambian Kwacha"@en . + +unit:CCY_ZWL + a qudt:CurrencyUnit, qudt:Unit ; + qudt:currencyCode "ZWL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "932" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zimbabwean_dollar"^^xsd:anyURI ; + qudt:expression "$ZWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zimbabwean_dollar?oldid=491532675"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Zimbabwe Dollar"@en . + +unit:CD + a qudt:Unit ; + dcterms:description "$\\textit{Candela}$ is a unit for 'Luminous Intensity' expressed as $cd$. The candela is the SI base unit of luminous intensity; that is, power emitted by a light source in a particular direction, weighted by the luminosity function (a standardized model of the sensitivity of the human eye to different wavelengths, also known as the luminous efficiency function). A common candle emits light with a luminous intensity of roughly one candela."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Candela"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:iec61360Code "0112/2///62720#UAA370" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Candela?oldid=484253082"^^xsd:anyURI ; + qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA370"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:candela ; + qudt:symbol "cd" ; + qudt:ucumCode "cd"^^qudt:UCUMcs ; + qudt:udunitsCode "cd" ; + qudt:uneceCommonCode "CDL" ; + rdfs:isDefinedBy ; + rdfs:label "Candela"@de ; + rdfs:label "candela"@en ; + rdfs:label "candela"@es ; + rdfs:label "candela"@fr ; + rdfs:label "candela"@it ; + rdfs:label "candela"@la ; + rdfs:label "candela"@pt ; + rdfs:label "candela"@tr ; + rdfs:label "candelă"@ro ; + rdfs:label "kandela"@cs ; + rdfs:label "kandela"@hu ; + rdfs:label "kandela"@ms ; + rdfs:label "kandela"@pl ; + rdfs:label "kandela"@sl ; + rdfs:label "καντέλα"@el ; + rdfs:label "кандела"@bg ; + rdfs:label "кандела"@ru ; + rdfs:label "קנדלה"@he ; + rdfs:label "قنديلة"@ar ; + rdfs:label "کاندلا"@fa ; + rdfs:label "कॅन्डेला"@hi ; + rdfs:label "カンデラ"@ja ; + rdfs:label "坎德拉"@zh . + +unit:CD-PER-FT2 + a qudt:Unit ; + dcterms:description "base unit SI candela divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:conversionMultiplier 10.7639104167097223083335055559 ; + qudt:conversionMultiplierSN 1.07639104167097223083335055559E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAB441" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB441"^^xsd:anyURI ; + qudt:symbol "cd/ft²" ; + qudt:ucumCode "cd.[ft_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P32" ; + rdfs:isDefinedBy ; + rdfs:label "candela per square foot" . + +unit:CD-PER-IN2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Candela per Square Inch\" is a unit for 'Luminance' expressed as $cd/in^{2}$."^^qudt:LatexString ; + qudt:conversionMultiplier 1550.0031000062002 ; + qudt:conversionMultiplierSN 1.5500031000062002E3 ; + qudt:expression "$cd/in^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAB257" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB257"^^xsd:anyURI ; + qudt:symbol "cd/in²" ; + qudt:ucumCode "cd.[in_i]-2"^^qudt:UCUMcs ; + qudt:ucumCode "cd/[in_i]2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P28" ; + rdfs:isDefinedBy ; + rdfs:label "Candela per Square Inch"@en . + +unit:CD-PER-KiloLM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloLM ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousIntensityDistribution ; + qudt:symbol "cd/klm" ; + qudt:ucumCode "cd.klm-1"^^qudt:UCUMcs ; + qudt:ucumCode "cd/klm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Candela per Kilolumen"@en . + +unit:CD-PER-LM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousIntensityDistribution ; + qudt:symbol "cd/lm" ; + qudt:ucumCode "cd.lm-1"^^qudt:UCUMcs ; + qudt:ucumCode "cd/lm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Candela per Lumen"@en . + +unit:CD-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The candela per square metre ($cd/m^2$) is the derived SI unit of luminance. The unit is based on the candela, the SI unit of luminous intensity, and the square metre, the SI unit of area. Nit (nt) is a deprecated non-SI name also used for this unit ($1 nit = 1 cd/m^2$). As a measure of light emitted per unit area, this unit is frequently used to specify the brightness of a display device. Most consumer desktop liquid crystal displays have luminances of 200 to 300 $cd/m^2$; the sRGB spec for monitors targets 80 cd/m2. HDTVs range from 450 to about 1000 cd/m2. Typically, calibrated monitors should have a brightness of $120 cd/m^2$. $Nit$ is believed to come from the Latin word nitere, to shine."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$cd/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAA371" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA371"^^xsd:anyURI ; + qudt:symbol "cd/m²" ; + qudt:ucumCode "cd.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "cd/m2"^^qudt:UCUMcs ; + qudt:udunitsCode "nt" ; + qudt:uneceCommonCode "A24" ; + rdfs:isDefinedBy ; + rdfs:label "candela per square meter"@en-US ; + rdfs:label "candela per square metre"@en . + +unit:CD_IN + a qudt:Unit ; + dcterms:description "obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979" ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:iec61360Code "0112/2///62720#UAB440" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB440"^^xsd:anyURI ; + qudt:symbol "international candle" ; + qudt:uneceCommonCode "P36" ; + rdfs:isDefinedBy ; + rdfs:label "international candle" . + +unit:CH + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A chain is a unit of length. It measures 66 feet, or 22 yards, or 100 links, or 4 rods. There are 10 chains in a furlong, and 80 chains in one statute mile. An acre is the area of 10 square chains (that is, an area of one chain by one furlong). The chain has been used for several centuries in Britain and in some other countries influenced by British practice."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 20.1168 ; + qudt:conversionMultiplierSN 2.01168E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Chain"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB203" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chain?oldid=494116185"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB203"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M ; + qudt:symbol "ch" ; + qudt:ucumCode "[ch_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "X1" ; + rdfs:isDefinedBy ; + rdfs:label "chain"@en ; + skos:altLabel "Gunter's chain" . + +unit:CHAIN_US + a qudt:Unit ; + dcterms:description "unit of the length according the Anglo-American system of units" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA372" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA372"^^xsd:anyURI ; + qudt:symbol "ch (US survey)" ; + qudt:uneceCommonCode "M49" ; + rdfs:isDefinedBy ; + rdfs:label "chain (based on U.S. survey foot)" . + +unit:CHF-PER-KiloGM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CHF ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:CostPerMass ; + qudt:plainTextDescription "Unit for measuring the hardware cost of substance or material" ; + qudt:symbol "CHF/kg" ; + rdfs:isDefinedBy ; + rdfs:label "Swiss Francs per kilogram"@en . + +unit:CI + a qudt:Unit ; + dcterms:description "The curie (symbol Ci) is a non-SI unit of radioactivity, named after Marie and Pierre Curie. It is defined as $1Ci = 3.7 \\times 10^{10} decays\\ per\\ second$. Its continued use is discouraged. One Curie is roughly the activity of 1 gram of the radium isotope Ra, a substance studied by the Curies. The SI derived unit of radioactivity is the becquerel (Bq), which equates to one decay per second. Therefore: $1Ci = 3.7 \\times 10^{10} Bq= 37 GBq$ and $1Bq \\equiv 2.703 \\times 10^{-11}Ci $."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 37000000000.0 ; + qudt:conversionMultiplierSN 3.7E10 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA138" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA138"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "Ci" ; + qudt:ucumCode "Ci"^^qudt:UCUMcs ; + qudt:udunitsCode "Ci" ; + qudt:uneceCommonCode "CUR" ; + rdfs:isDefinedBy ; + rdfs:label "Curie"@en . + +unit:CI-PER-KiloGM + a qudt:Unit ; + dcterms:description "1,000-fold of the unit curie divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 37000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CI ; + ] ; + qudt:hasQuantityKind quantitykind:MassicActivity ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:iec61360Code "0112/2///62720#UAB091" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB091"^^xsd:anyURI ; + qudt:symbol "Ci/kg" ; + qudt:uneceCommonCode "A42" ; + rdfs:isDefinedBy ; + rdfs:label "curie per kilogram" . + +unit:CLO + a qudt:Unit ; + dcterms:description "A C.G.S System unit for $\\textit{Thermal Insulance}$ expressed as \"clo\"."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.155 ; + qudt:conversionMultiplierSN 1.55E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:iec61360Code "0112/2///62720#UAA374" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA374"^^xsd:anyURI ; + qudt:scalingOf unit:M2-K-PER-W ; + qudt:symbol "clo" ; + qudt:uneceCommonCode "J83" ; + rdfs:isDefinedBy ; + rdfs:label "Clo"@en . + +unit:CM_H2O + qudt:scalingOf unit:PA . + +unit:CORD + a qudt:Unit ; + dcterms:description "The cord is a unit of measure of dry volume used in Canada and the United States to measure firewood and pulpwood. A cord is the amount of wood that, when 'ranked and well stowed' (arranged so pieces are aligned, parallel, touching and compact), occupies a volume of 128 cubic feet (3.62 cubic metres). This corresponds to a well stacked woodpile 4 feet (122 cm) wide, 4 feet (122 cm) high, and 8 feet (244 cm) long; or any other arrangement of linear measurements that yields the same volume. The name cord probably comes from the use of a cord or string to measure it. "^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3.62 ; + qudt:conversionMultiplierSN 3.62E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cord"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAB289" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cord?oldid=490232340"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB289"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M3 ; + qudt:symbol "cord" ; + qudt:ucumCode "[crd_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M68" ; + qudt:uneceCommonCode "WCD" ; + rdfs:isDefinedBy ; + rdfs:label "Cord"@en . + +unit:CP + a qudt:Unit ; + dcterms:description "\"Candlepower\" (abbreviated as cp) is a now-obsolete unit which was used to express levels of light intensity in terms of the light emitted by a candle of specific size and constituents. In modern usage Candlepower equates directly to the unit known as the candela."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Candlepower"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Candlepower?oldid=491140098"^^xsd:anyURI ; + qudt:scalingOf unit:CD ; + qudt:symbol "cp" ; + rdfs:isDefinedBy ; + rdfs:label "Candlepower"@en . + +unit:CUP + a qudt:Unit ; + dcterms:description "\"US Liquid Cup\" is a unit for 'Liquid Volume' expressed as $cup$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00023658825 ; + qudt:conversionMultiplierSN 2.3658825E-4 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:CUP_US ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:scalingOf unit:M3 ; + qudt:symbol "cup" ; + qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G21" ; + rdfs:isDefinedBy ; + rdfs:label "US Liquid Cup"@en . + +unit:CUP_US + a qudt:Unit ; + dcterms:description "unit of the volume according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00023658825 ; + qudt:conversionMultiplierSN 2.3658825E-4 ; + qudt:exactMatch unit:CUP ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA404" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA404"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume according to the Anglo-American system of units" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "cup{US}" ; + qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G21" ; + rdfs:isDefinedBy ; + rdfs:label "Cup (US)"@en . + +unit:CWT_LONG + a qudt:Unit ; + dcterms:description "\"Hundred Weight - Long\" is a unit for 'Mass' expressed as $cwt$."^^qudt:LatexString ; + qudt:conversionMultiplier 50.80235 ; + qudt:conversionMultiplierSN 5.080235E1 ; + qudt:exactMatch unit:Hundredweight_UK ; + qudt:expression "$cwt long$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "cwt{long}" ; + qudt:ucumCode "[lcwt_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CWI" ; + rdfs:isDefinedBy ; + rdfs:label "Long Hundred Weight"@en ; + skos:altLabel "British hundredweight" . + +unit:CWT_SHORT + a qudt:Unit ; + dcterms:description "\"Hundred Weight - Short\" is a unit for 'Mass' expressed as $cwt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 45.359237 ; + qudt:conversionMultiplierSN 4.5359237E1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:Hundredweight_US ; + qudt:expression "$cwt$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "cwt{short}" ; + qudt:ucumCode "[scwt_av]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hundred Weight - Short"@en ; + skos:altLabel "U.S. hundredweight" . + +unit:CYC-PER-SEC + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "The \"cycle per second\" is a once-common English name for the unit of frequency now known as the hertz (Hz)." ; + qudt:altSymbol "c.p.s" ; + qudt:altSymbol "cycles/s" ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:HZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CYC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Cycle_per_second"^^xsd:anyURI ; + qudt:symbol "c/s" ; + rdfs:isDefinedBy ; + rdfs:label "Cycles per Second"@en . + +unit:C_Ab + a qudt:Unit ; + dcterms:description "\"abcoulomb\" (abC or aC) or electromagnetic unit of charge (emu of charge) is the basic physical unit of electric charge in the cgs-emu system of units. One abcoulomb is equal to ten coulombs ($1\\,abC\\,=\\,10\\,C$)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abcoulomb"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abcoulomb?oldid=477198635"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-9?rskey=KHjyOu"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A-SEC ; + qudt:symbol "abC" ; + qudt:ucumCode "10.C"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abcoulomb"@en . + +unit:C_Ab-PER-CentiM2 + a qudt:Unit ; + dcterms:description """Abcoulomb Per Square Centimeter is a unit in the category of Electric charge surface density. It is also known as abcoulombs per square centimeter, abcoulomb per square centimetre, abcoulombs per square centimetre, abcoulomb/square centimeter,abcoulomb/square centimetre. This unit is commonly used in the cgs unit system. +Abcoulomb Per Square Centimeter (abcoulomb/cm2) has a dimension of $L_2TI$. where $L$ is length, $T$ is time, and $I$ is electric current. It can be converted to the corresponding standard SI unit $C/m^2$ by multiplying its value by a factor of 100,000."""^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:expression "$abc-per-cm2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C_Ab ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_charge_surface_density--abcoulomb_per_square_centimeter.cfm"^^xsd:anyURI ; + qudt:latexDefinition "$abcoulomb/cm^2$"^^qudt:LatexString ; + qudt:symbol "abC/cm²" ; + qudt:ucumCode "10.C.cm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abcoulomb per Square Centimeter"@en-US ; + rdfs:label "Abcoulomb per Square Centimetre"@en . + +unit:C_Stat + a qudt:Unit ; + dcterms:description "The statcoulomb ($statC$) or franklin ($Fr$) or electrostatic unit of charge ($esu$) is the physical unit for electrical charge used in the centimetre-gram-second system of units (cgs) and Gaussian units. It is a derived unit given by $1\\ statC = 1\\ g\\ cm\\ s = 1\\ erg\\ cm$. The SI system of units uses the coulomb (C) instead. The conversion between C and statC is different in different contexts. The number 2997924580 is 10 times the value of the speed of light expressed in meters/second, and the conversions are exact except where indicated. The coulomb is an extremely large charge rarely encountered in electrostatics, while the statcoulomb is closer to everyday charges."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.00000000033356409519815204957557671447492 ; + qudt:conversionMultiplierSN 3.3356409519815204957557671447492E-10 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Statcoulomb"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:exactMatch unit:FR ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Statcoulomb?oldid=492664360"^^xsd:anyURI ; + qudt:latexDefinition "$1 C \\leftrightarrow 2997924580 statC \\approx 3.00 \\times 10^9 statC,\\ 1 \\hspace{0.3pc} statC \\leftrightarrow \\hspace{0.3pc} \\approx 3.34 \\times 10^{-10} C$ for electric charge."^^qudt:LatexString ; + qudt:latexDefinition "$1 C \\leftrightarrow 4 \\pi \\times 2997924580 statC \\approx 3.77 \\times 10^{10} statC,\\ 1 \\hspace{0.3pc} statC \\leftrightarrow \\hspace{0.2pc} \\approx 2.6 \\times 10^{-11} C$ for electric flux $\\Phi_D$"^^qudt:LatexString ; + qudt:latexDefinition "$1 C/m \\leftrightarrow 4 \\pi \\times 2997924580 \\times 10^{-4} statC/cm \\approx 3.77 \\times 10^6 statC/cm,\\ 1 \\hspace{0.3pc} statC/cm \\leftrightarrow \\hspace{0.3pc} \\approx 2.65 \\times 10^{-7} C/m$ for electric displacement field $D$."^^qudt:LatexString ; + qudt:omUnit ; + qudt:scalingOf unit:C ; + qudt:symbol "statC" ; + rdfs:isDefinedBy ; + rdfs:label "Statcoulomb"@en . + +unit:C_Stat-PER-CentiM2 + a qudt:Unit ; + dcterms:description """$\\textit{Statcoulomb per Square Centimeter}$ is a unit of measure for electric flux density and electric polarization. + One Statcoulomb per Square Centimeter is $2.15\\times 10^9 \\, coulomb\\,per\\,square\\,inch$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.00000333564 ; + qudt:conversionMultiplierSN 3.33564E-6 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:expression "$statc-per-cm2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:symbol "statC/cm²" ; + rdfs:isDefinedBy ; + rdfs:label "Statcoulomb per Square Centimeter"@en-US ; + rdfs:label "Statcoulomb per Square Centimetre"@en . + +unit:C_Stat-PER-MOL + a qudt:Unit ; + dcterms:description "\"Statcoulomb per Mole\" is a unit of measure for the electical charge associated with one mole of a substance. The mole is a unit of measurement used in chemistry to express amounts of a chemical substance, defined as an amount of a substance that contains as many elementary entities (e.g., atoms, molecules, ions, electrons) as there are atoms in 12 grams of pure carbon-12 (12C), the isotope of carbon with atomic weight 12."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000000000333564 ; + qudt:conversionMultiplierSN 3.33564E-10 ; + qudt:expression "$statC/mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerAmountOfSubstance ; + qudt:symbol "statC/mol" ; + rdfs:isDefinedBy ; + rdfs:label "Statcoulomb per Mole"@en . + +unit:CentiBAR + a qudt:Unit ; + dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to $100,000\\,Pa = 1 bar \\approx 750.0616827 Torr$. Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:BAR ; + qudt:symbol "cbar" ; + qudt:ucumCode "cbar"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centibar"@en . + +unit:CentiC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A CentiCoulomb is $10^{-2} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:C ; + qudt:symbol "cC" ; + qudt:ucumCode "cC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "CentiCoulomb"@en . + +unit:CentiGM + a qudt:Unit ; + dcterms:description "0,000 01-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB077" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB077"^^xsd:anyURI ; + qudt:plainTextDescription "0,000 01-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:GM ; + qudt:symbol "cg" ; + qudt:ucumCode "cg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CGM" ; + rdfs:isDefinedBy ; + rdfs:label "Centigram"@en . + +unit:CentiGRAY + a qudt:Unit ; + dcterms:description "0.01-fold of the unit gray" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:hasQuantityKind quantitykind:Kerma ; + qudt:iec61360Code "0112/2///62720#UAB503" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB503"^^xsd:anyURI ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:GRAY ; + qudt:symbol "cGy" ; + rdfs:isDefinedBy ; + rdfs:label "centigray" . + +unit:CentiL + a qudt:Unit ; + dcterms:description "0.01-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA373" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA373"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the unit litre" ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:L ; + qudt:symbol "cL" ; + qudt:ucumCode "cL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CLT" ; + rdfs:isDefinedBy ; + rdfs:label "Centilitre"@en ; + rdfs:label "Centilitre"@en-US . + +unit:CentiM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A centimetre is a unit of length in the metric system, equal to one hundredth of a metre, which is the SI base unit of length. Centi is the SI prefix for a factor of $10^{-2}$. The centimetre is the base unit of length in the now deprecated centimetre-gram-second (CGS) system of units."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Centimetre"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA375" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Centimetre?oldid=494931891"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA375"^^xsd:anyURI ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:M ; + qudt:symbol "cm" ; + qudt:ucumCode "cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CMT" ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter"@en-US ; + rdfs:label "Centimetre"@en . + +unit:CentiM-PER-BAR + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit metre divided by the unit bar" ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA377" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA377"^^xsd:anyURI ; + qudt:symbol "cm/bar" ; + qudt:ucumCode "cm.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G04" ; + rdfs:isDefinedBy ; + rdfs:label "centimetre per bar" . + +unit:CentiM-PER-HR + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit metre divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000002777778 ; + qudt:conversionMultiplierSN 2.777778E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA378" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA378"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the SI base unit metre divided by the unit hour" ; + qudt:symbol "cm/h" ; + qudt:ucumCode "cm.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H49" ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter per Hour"@en-US ; + rdfs:label "Centimetre per Hour"@en . + +unit:CentiM-PER-K + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA376" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA376"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the SI base unit metre divided by the SI base unit kelvin" ; + qudt:symbol "cm/K" ; + qudt:ucumCode "cm.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F51" ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter per Kelvin"@en-US ; + rdfs:label "Centimetre per Kelvin"@en . + +unit:CentiM-PER-KiloYR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000316880878140289 ; + qudt:conversionMultiplierSN 3.16880878140289E-13 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloYR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "cm/1000 a" ; + qudt:ucumCode "cm.ka-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/ka"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centimetres per thousand years"@en . + +unit:CentiM-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Centimeter per Second\" is a C.G.S System unit for 'Linear Velocity' expressed as $cm/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$cm/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA379" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA379"^^xsd:anyURI ; + qudt:latexDefinition "$cm/s$"^^qudt:LatexString ; + qudt:symbol "cm/s" ; + qudt:ucumCode "cm.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2M" ; + rdfs:isDefinedBy ; + rdfs:label "centimeter per second"@en-US ; + rdfs:label "centimetre per second"@en . + +unit:CentiM-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit metre divided by the product of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA381" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA381"^^xsd:anyURI ; + qudt:symbol "cm/(s·bar)" ; + qudt:ucumCode "cm.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J85" ; + rdfs:isDefinedBy ; + rdfs:label "centimetre per second bar" . + +unit:CentiM-PER-SEC-K + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit metre divided by the product of the SI base unit second and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA380" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA380"^^xsd:anyURI ; + qudt:symbol "cm/(s·K)" ; + qudt:ucumCode "cm.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J84" ; + rdfs:isDefinedBy ; + rdfs:label "centimetre per second kelvin" . + +unit:CentiM-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Centimeter per Square Second}$ is a C.G.S System unit for $\\textit{Linear Acceleration}$ expressed as $cm/s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$cm/s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB398" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB398"^^xsd:anyURI ; + qudt:symbol "cm/s²" ; + qudt:ucumCode "cm.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "cm/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M39" ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter per Square Second"@en-US ; + rdfs:label "Centimetre per Square Second"@en . + +unit:CentiM-PER-YR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000316880878140289 ; + qudt:conversionMultiplierSN 3.16880878140289E-10 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "cm/a" ; + qudt:ucumCode "cm.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centimetres per year"@en . + +unit:CentiM-SEC-DEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Centimeter Second Degree Celsius}$ is a C.G.S System unit for 'Length Temperature Time' expressed as $cm-s-degC$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:expression "$cm-s-degC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LengthTemperatureTime ; + qudt:symbol "cm·s·°C" ; + qudt:ucumCode "cm.s.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm.s/Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter Second Degree Celsius"@en-US ; + rdfs:label "Centimetre Second Degree Celsius"@en . + +unit:CentiM2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of area equal to that of a square, of sides 1cm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$sqcm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA384" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA384"^^xsd:anyURI ; + qudt:symbol "cm²" ; + qudt:ucumCode "cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CMK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Centimeter"@en-US ; + rdfs:label "Square Centimetre"@en . + +unit:CentiM2-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Square centimeter minute\" is a unit for 'Area Time' expressed as $cm^{2} . m$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.006 ; + qudt:conversionMultiplierSN 6.0E-3 ; + qudt:expression "$cm^{2}m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:symbol "cm²·min" ; + qudt:ucumCode "cm2.min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Centimeter Minute"@en-US ; + rdfs:label "Square Centimetre Minute"@en . + +unit:CentiM2-PER-CentiM3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "cm²/cm³" ; + qudt:ucumCode "cm2.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square centimetres per cubic centimetre"@en . + +unit:CentiM2-PER-ERG + a qudt:Unit ; + dcterms:description "[CGS] unit of the spectral profile" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralCrossSection ; + qudt:iec61360Code "0112/2///62720#UAB168" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB168"^^xsd:anyURI ; + qudt:symbol "cm²/erg" ; + qudt:ucumCode "cm2.erg-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm2/erg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D16" ; + rdfs:isDefinedBy ; + rdfs:label "square centimetre per erg" . + +unit:CentiM2-PER-GM + a qudt:Unit ; + dcterms:description "0.0001-fold of the power of the SI base unit metre by exponent 2 divided by the 0.001-fold SI base unit kilogram" ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificSurfaceArea ; + qudt:iec61360Code "0112/2///62720#UAB193" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB193"^^xsd:anyURI ; + qudt:symbol "cm²/g" ; + qudt:ucumCode "cm2.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm2/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H15" ; + rdfs:isDefinedBy ; + rdfs:label "Square centimeters per gram"@en-US ; + rdfs:label "Square centimetres per gram"@en . + +unit:CentiM2-PER-SEC + a qudt:Unit ; + dcterms:description "0.0001-fold of the power of the SI base unit metre by exponent 2 divided by the SI base unit second" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:iec61360Code "0112/2///62720#UAB408" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB408"^^xsd:anyURI ; + qudt:symbol "cm²/s" ; + qudt:ucumCode "cm2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm2/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M81" ; + rdfs:isDefinedBy ; + rdfs:label "Square centimetres per second"@en . + +unit:CentiM2-PER-SR-ERG + a qudt:Unit ; + dcterms:description "[CGS] unit of the spectral angle profile" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralAngularCrossSection ; + qudt:iec61360Code "0112/2///62720#UAB169" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB169"^^xsd:anyURI ; + qudt:symbol "cm²/(sr·erg)" ; + qudt:ucumCode "cm2.sr-1.erg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D17" ; + rdfs:isDefinedBy ; + rdfs:label "square centimetre per steradian erg" . + +unit:CentiM2-PER-V-SEC + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:expression "$cm^2/V-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Mobility ; + qudt:symbol "cm²/(V·s)" ; + qudt:ucumCode "cm2.V-1.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm2/(V.s)"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Centimeter per Volt Second"@en-US ; + rdfs:label "square centimetre per volt second"@en . + +unit:CentiM2-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Square Centimeter Second\" is a C.G.S System unit for 'Area Time' expressed as $cm^2 . s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$cm^2 . s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:symbol "cm²·s" ; + qudt:ucumCode "cm2.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Centimeter Second"@en-US ; + rdfs:label "Square Centimetre Second"@en . + +unit:CentiM3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The CGS unit of volume, equal to 10-6 cubic meter, 1 milliliter, or about 0.061 023 7 cubic inch"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:expression "$cubic-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA385" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA385"^^xsd:anyURI ; + qudt:symbol "cm³" ; + qudt:ucumCode "cm3"^^qudt:UCUMcs ; + qudt:udunitsCode "cc" ; + qudt:uneceCommonCode "CMQ" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimeter"@en-US ; + rdfs:label "cubic centimetre"@en . + +unit:CentiM3-PER-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA387" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA387"^^xsd:anyURI ; + qudt:symbol "cm³/bar" ; + qudt:ucumCode "cm3.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G94" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per bar" . + +unit:CentiM3-PER-CentiM3 + a qudt:Unit ; + dcterms:description "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:plainTextDescription "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "cm³/cm³" ; + qudt:ucumCode "cm3.cm-3"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/cm3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Cubic Centimeter"@en-US ; + rdfs:label "Cubic Centimetre per Cubic Centimetre"@en . + +unit:CentiM3-PER-DAY + a qudt:Unit ; + dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407 ; + qudt:conversionMultiplierSN 1.157407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA388" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA388"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit day" ; + qudt:symbol "cm³/d" ; + qudt:ucumCode "cm3.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G47" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Day"@en-US ; + rdfs:label "Cubic Centimetre per Day"@en . + +unit:CentiM3-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-16 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA390" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA390"^^xsd:anyURI ; + qudt:symbol "cm³/(d·bar)" ; + qudt:ucumCode "cm3.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G78" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per day bar" . + +unit:CentiM3-PER-DAY-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA389" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA389"^^xsd:anyURI ; + qudt:symbol "cm³/(d·K)" ; + qudt:ucumCode "cm3.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G61" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per day kelvin" . + +unit:CentiM3-PER-GM + a qudt:Unit ; + dcterms:description "Cubic Centimeter per Gram is a unit in the category of Specific Volume."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:exactMatch unit:MilliL-PER-GM ; + qudt:expression "$cm3/g$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAD918" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD918"^^xsd:anyURI ; + qudt:symbol "cm³/g" ; + qudt:ucumCode "cm3.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeters per Gram"@en-US ; + rdfs:label "Cubic Centimetres per Gram"@en . + +unit:CentiM3-PER-HR + a qudt:Unit ; + dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000002777778 ; + qudt:conversionMultiplierSN 2.777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA391" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA391"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour" ; + qudt:symbol "cm³/h" ; + qudt:ucumCode "cm3.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G48" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Hour"@en-US ; + rdfs:label "Cubic Centimetre per Hour"@en . + +unit:CentiM3-PER-HR-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-15 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA393" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA393"^^xsd:anyURI ; + qudt:symbol "cm³/(h·bar)" ; + qudt:ucumCode "cm3.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G79" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per hour bar" . + +unit:CentiM3-PER-HR-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA392" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA392"^^xsd:anyURI ; + qudt:symbol "cm³/(h·K)" ; + qudt:ucumCode "cm3.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G62" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per hour kelvin" . + +unit:CentiM3-PER-K + a qudt:Unit ; + dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA386" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA386"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit kelvin" ; + qudt:symbol "cm³/K" ; + qudt:ucumCode "cm3.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G27" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Kelvin"@en-US ; + rdfs:label "Cubic Centimetre per Kelvin"@en . + +unit:CentiM3-PER-M3 + a qudt:Unit ; + dcterms:description "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA394" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA394"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio consisting of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "cm³/m³" ; + qudt:ucumCode "cm3.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J87" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Cubic Meter"@en-US ; + rdfs:label "Cubic Centimetre per Cubic Metre"@en . + +unit:CentiM3-PER-MIN + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001666667 ; + qudt:conversionMultiplierSN 1.666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA395" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA395"^^xsd:anyURI ; + qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit minute" ; + qudt:symbol "cm³/min" ; + qudt:ucumCode "cm3.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G49" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Minute"@en-US ; + rdfs:label "Cubic Centimetre per Minute"@en . + +unit:CentiM3-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-13 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA397" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA397"^^xsd:anyURI ; + qudt:symbol "cm³/(min·bar)" ; + qudt:ucumCode "cm3.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G80" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per minute bar" . + +unit:CentiM3-PER-MIN-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA396" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA396"^^xsd:anyURI ; + qudt:symbol "cm³/(min·K)" ; + qudt:ucumCode "cm3.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G63" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per minute kelvin" . + +unit:CentiM3-PER-MOL + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarRefractivity ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:iec61360Code "0112/2///62720#UAA398" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA398"^^xsd:anyURI ; + qudt:plainTextDescription "0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol" ; + qudt:symbol "cm³/mol" ; + qudt:ucumCode "cm3.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A36" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Mole"@en-US ; + rdfs:label "Cubic Centimetre per Mole"@en . + +unit:CentiM3-PER-MOL-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit that is the 0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol multiplied by the SI base unit second."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate ; + qudt:hasQuantityKind quantitykind:SecondOrderReactionRateConstant ; + qudt:symbol "cm³/(mol·s)" ; + qudt:ucumCode "cm3.mol-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Mole Second"@en ; + rdfs:label "Cubic Centimeter per Mole Second"@en-US . + +unit:CentiM3-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA399" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA399"^^xsd:anyURI ; + qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "cm³/s" ; + qudt:ucumCode "cm3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "cm3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2J" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Centimeter per Second"@en-US ; + rdfs:label "Cubic Centimetre per Second"@en . + +unit:CentiM3-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA401" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA401"^^xsd:anyURI ; + qudt:symbol "cm³/(s·bar)" ; + qudt:ucumCode "cm3.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G81" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per second bar" . + +unit:CentiM3-PER-SEC-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA400" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA400"^^xsd:anyURI ; + qudt:symbol "cm³/(s·K)" ; + qudt:ucumCode "cm3.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G64" ; + rdfs:isDefinedBy ; + rdfs:label "cubic centimetre per second kelvin" . + +unit:CentiM4 + a qudt:Unit ; + dcterms:description "0.01-fold of SI base unit metre to the power four" ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:iec61360Code "0112/2///62720#UAC000" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC000"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the SI base unit metre with the exponent 4" ; + qudt:symbol "cm⁴" ; + qudt:ucumCode "cm4"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Zentimeter hoch 4"@de ; + rdfs:label "centimetre to the fourth power" ; + rdfs:label "quartic Centimetre"@en . + +unit:CentiM6 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L6I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 6 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:WarpingConstant ; + qudt:plainTextDescription "Scaling of hexic meter by 10^-12" ; + qudt:symbol "cm⁶" ; + qudt:ucumCode "cm6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Sextic Centimeter"@en-US ; + rdfs:label "Sextic Centimetre"@en . + +unit:CentiMOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasQuantityKind quantitykind:ExtentOfReaction ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:MOL ; + qudt:symbol "cmol" ; + rdfs:isDefinedBy ; + rdfs:label "CentiMole"@en . + +unit:CentiMOL-PER-KiloGM + a qudt:Unit ; + dcterms:description "1/100 of SI unit of amount of substance per kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:plainTextDescription "1/100 of SI unit of amount of substance per kilogram" ; + qudt:symbol "cmol/kg" ; + qudt:ucumCode "cmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "cmol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centimole per kilogram"@en . + +unit:CentiMOL-PER-L + a qudt:Unit ; + dcterms:description "1/100 of SI unit of amount of substance per litre"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:symbol "cmol/L" ; + qudt:ucumCode "cmol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "cmol/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Centimole per litre"@en . + +unit:CentiM_H2O + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description """$\\textit{Centimeter of Water}$ is a C.G.S System unit for 'Force Per Area' expressed as $cm_{H2O}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 98.0665 ; + qudt:conversionMultiplierSN 9.80665E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Centimetre_of_water"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA402" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Centimetre_of_water?oldid=487656894"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA402"^^xsd:anyURI ; + qudt:plainTextDescription "non SI conforming unit of pressure that corresponds to the static pressure generated by a water column with a height of 1 centimetre" ; + qudt:scalingOf unit:PA ; + qudt:symbol "cmH₂0" ; + qudt:ucumCode "cm[H2O]"^^qudt:UCUMcs ; + qudt:udunitsCode "cmH2O" ; + qudt:udunitsCode "cm_H2O" ; + qudt:uneceCommonCode "H78" ; + rdfs:isDefinedBy ; + rdfs:label "Conventional Centimeter Of Water"@en-US ; + rdfs:label "Conventional Centimetre Of Water"@en . + +unit:CentiM_H2O_4DEG_C + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "non SI-conform unit of pressure, at which a value of 1 cmH₂O meets the static pressure, which is generated by a head of water at a temperature of 4 °C with a height of 1 centimetre" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB236" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB236"^^xsd:anyURI ; + qudt:symbol "cmH₂O (4 °C)" ; + qudt:uneceCommonCode "N14" ; + rdfs:isDefinedBy ; + rdfs:label "centimetre of water (4 °C)" . + +unit:CentiM_HG + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "A non-SI-conforming unit of pressure, that corresponds with the static pressure generated by a mercury column with the height of 1 centimetre"^^rdf:HTML ; + qudt:conversionMultiplier 1333.224 ; + qudt:conversionMultiplierSN 1.333224E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA403" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA403"^^xsd:anyURI ; + qudt:plainTextDescription "A non-SI-conforming unit of pressure, that corresponds with the static pressure generated by a mercury column with the height of 1 centimetre" ; + qudt:scalingOf unit:PA ; + qudt:symbol "cmHg" ; + qudt:ucumCode "cm[Hg]"^^qudt:UCUMcs ; + qudt:udunitsCode "cmHg" ; + qudt:udunitsCode "cm_Hg" ; + qudt:uneceCommonCode "J89" ; + rdfs:isDefinedBy ; + rdfs:label "Centimeter Of Mercury"@en-US ; + rdfs:label "Centimetre Of Mercury"@en . + +unit:CentiM_HG_0DEG_C + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "non SI-conform unit of pressure, at which a value of 1 cmHg meets the static pressure, which is generated by a mercury at a temperature of 0 °C with a height of 1 centimetre" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB235" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB235"^^xsd:anyURI ; + qudt:symbol "cmHg (0 °C)" ; + qudt:uneceCommonCode "N13" ; + rdfs:isDefinedBy ; + rdfs:label "centimetre of mercury (0 °C)" . + +unit:CentiN + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:N ; + qudt:symbol "cN" ; + rdfs:isDefinedBy ; + rdfs:label "CentiNewton"@en . + +unit:CentiN-M + a qudt:Unit ; + dcterms:description "0.01-fold of the product of the SI derived unit newton and SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA355" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA355"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the product of the SI derived unit newton and SI base unit metre" ; + qudt:symbol "cN·m" ; + qudt:ucumCode "cN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J72" ; + rdfs:isDefinedBy ; + rdfs:label "Centinewton Meter"@en-US ; + rdfs:label "Centinewton Metre"@en . + +unit:CentiN-M-PER-M2 + a qudt:Unit ; + dcterms:description "0.01-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiN ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB551" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB551"^^xsd:anyURI ; + qudt:symbol "cN·m/m²" ; + qudt:ucumCode "cN.m.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "centinewton metre per square metre" . + +unit:CentiPOISE + a qudt:Unit ; + dcterms:description """$\\textit{Centipoise}$ is a C.G.S System unit for 'Dynamic Viscosity' expressed as $cP$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA356" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA356"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:POISE ; + qudt:symbol "cP" ; + qudt:ucumCode "cP"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C7" ; + rdfs:isDefinedBy ; + rdfs:label "Centipoise"@en . + +unit:CentiPOISE-PER-BAR + a qudt:Unit ; + dcterms:description "0.01-fold of the CGS unit of the dynamic viscosity poise divided by the unit of the pressure bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA358" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA358"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the CGS unit of the dynamic viscosity poise divided by the unit of the pressure bar" ; + qudt:symbol "cP/bar" ; + qudt:ucumCode "cP.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "cP/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J74" ; + rdfs:isDefinedBy ; + rdfs:label "Centipoise per Bar"@en . + +unit:CentiPOISE-PER-K + a qudt:Unit ; + dcterms:description "[CGS] 0.01-fold of the CGS unit poise for dynamic viscosity divided by the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA357" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA357"^^xsd:anyURI ; + qudt:symbol "cP/K" ; + qudt:ucumCode "cP.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "cP/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J73" ; + rdfs:isDefinedBy ; + rdfs:label "centipoise per kelvin" . + +unit:CentiST + a qudt:Unit ; + dcterms:description """$\\textit{Centistokes}$ is a C.G.S System unit for 'Kinematic Viscosity' expressed as $cSt$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:KinematicViscosity ; + qudt:iec61360Code "0112/2///62720#UAA359" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA359"^^xsd:anyURI ; + qudt:prefix prefix:Centi ; + qudt:scalingOf unit:ST ; + qudt:symbol "cSt" ; + qudt:ucumCode "cSt"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4C" ; + rdfs:isDefinedBy ; + rdfs:label "Centistokes"@en . + +unit:Ci + qudt:scalingOf unit:BQ . + +unit:DA + a qudt:Unit ; + dcterms:description "The unified atomic mass unit (symbol: $\\mu$) or dalton (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of $1.660538782(83) \\times 10^{-27} kg$. One $Da$ is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a \"non-SI unit whose values in SI units must be obtained experimentally\"."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ; + qudt:conversionMultiplierSN 1.66053878283E-27 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dalton"^^xsd:anyURI ; + qudt:exactMatch unit:AMU ; + qudt:exactMatch unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:MolecularMass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dalton?oldid=495038954"^^xsd:anyURI ; + qudt:siExactMatch si-unit:dalton ; + qudt:symbol "Da" ; + qudt:ucumCode "u"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D43" ; + rdfs:isDefinedBy ; + rdfs:label "Dalton"@en ; + skos:altLabel "atomic-mass-unit" . + +unit:DARCY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "

The $darcy$ (d) is a unit of permeability named after Henry Darcy. It is not an SI unit, but it is widely used in petroleum engineering and geology. The unit has also been used in biophysics and biomechanics, where the flow of fluids such as blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. A darcy has dimensional units of length2.

"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000009869233 ; + qudt:conversionMultiplierSN 9.869233E-13 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Darcy_(unit)"^^xsd:anyURI ; + qudt:expression "$d$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Darcy_(unit)"^^xsd:anyURI ; + qudt:plainTextDescription "The darcy (d) is a unit of permeability named after Henry Darcy. It is not an SI unit, but it is widely used in petroleum engineering and geology. The unit has also been used in biophysics and biomechanics, where the flow of fluids such as blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. A darcy has dimensional units of length²." ; + qudt:scalingOf unit:M2 ; + qudt:symbol "d" ; + rdfs:isDefinedBy ; + rdfs:label "Darcy"@en . + +unit:DAY + a qudt:Unit ; + dcterms:description "Mean solar day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 86400.0 ; + qudt:conversionMultiplierSN 8.64E4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Day"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:BiodegredationHalfLife ; + qudt:hasQuantityKind quantitykind:FishBiotransformationHalfLife ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA407" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Day?oldid=494970012"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA407"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:siExactMatch si-unit:day ; + qudt:symbol "d" ; + qudt:ucumCode "d"^^qudt:UCUMcs ; + qudt:udunitsCode "d" ; + qudt:uneceCommonCode "DAY" ; + rdfs:isDefinedBy ; + rdfs:label "Day"@en . + +unit:DAY_Sidereal + a qudt:Unit ; + dcterms:description "The length of time which passes between a given fixed star in the sky crossing a given projected meridian (line of longitude). The sidereal day is $23 h 56 m 4.1 s$, slightly shorter than the solar day because the Earth 's orbital motion about the Sun means the Earth has to rotate slightly more than one turn with respect to the \"fixed\" stars in order to reach the same Earth-Sun orientation. Another way of thinking about the difference is that it amounts to $1/365.2425^{th}$ of a day per day, since even if the Earth did not spin on its axis at all, the Sun would appear to make one rotation around the Earth as the Earth completed a single orbit (which takes one year)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 86164.099 ; + qudt:conversionMultiplierSN 8.6164099E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ; + qudt:informativeReference "http://scienceworld.wolfram.com/astronomy/SiderealDay.html"^^xsd:anyURI ; + qudt:scalingOf unit:SEC ; + qudt:symbol "day{sidereal}" ; + rdfs:isDefinedBy ; + rdfs:label "Sidereal Day"@en . + +unit:DEATHS-PER-KiloINDIV-YR + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year."^^rdf:HTML ; + qudt:conversionMultiplier 0.000000000031688 ; + qudt:conversionMultiplierSN 3.1688E-11 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloINDIV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEATHS ; + ] ; + qudt:hasQuantityKind quantitykind:MortalityRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ; + qudt:plainTextDescription "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year." ; + qudt:symbol "deaths/1000 individuals/a" ; + rdfs:isDefinedBy ; + rdfs:label "Deaths per 1000 individuals year"@en . + +unit:DEATHS-PER-MegaINDIV-YR + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "The expression of mortality rate, expressed as deaths per 1,000,000 individuals, per year."^^rdf:HTML ; + qudt:conversionMultiplier 0.000000000000031688 ; + qudt:conversionMultiplierSN 3.1688E-14 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEATHS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaINDIV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:MortalityRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ; + qudt:plainTextDescription "The expression of mortality rate, expressed as deaths per Million individuals, per year." ; + qudt:symbol "deaths/million individuals/a" ; + rdfs:isDefinedBy ; + rdfs:label "Deaths per Million individuals year"@en . + +unit:DEBYE + a qudt:Unit ; + dcterms:description "\"Debye\" is a C.G.S System unit for 'Electric Dipole Moment' expressed as $D$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000000000000000000000000000333564 ; + qudt:conversionMultiplierSN 3.33564E-30 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Debye"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Debye?oldid=492149112"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "D" ; + rdfs:isDefinedBy ; + rdfs:label "Debye"@en . + +unit:DECADE + a qudt:DimensionlessUnit, qudt:LogarithmicUnit, qudt:Unit ; + dcterms:description "One decade is a factor of 10 difference between two numbers (an order of magnitude difference) measured on a logarithmic scale. It is especially useful when referring to frequencies and when describing frequency response of electronic systems, such as audio amplifiers and filters. The factor-of-ten in a decade can be in either direction: so one decade up from 100 Hz is 1000 Hz, and one decade down is 10 Hz. The factor-of-ten is what is important, not the unit used, so $3.14 rad/s$ is one decade down from $31.4 rad/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:iec61360Code "0112/2///62720#UAB338" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Decade_(log_scale)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB338"^^xsd:anyURI ; + qudt:symbol "dec" ; + qudt:uneceCommonCode "DEC" ; + rdfs:isDefinedBy ; + rdfs:label "Dec"@en . + +unit:DEG + a qudt:Unit ; + dcterms:description "A degree (in full, a degree of arc, arc degree, or arcdegree), usually denoted by $^\\circ$ (the degree symbol), is a measurement of plane angle, representing 1/360 of a full rotation; one degree is equivalent to $2\\pi /360 rad$, $0.017453 rad$. It is not an SI unit, as the SI unit for angles is radian, but is an accepted SI unit."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0174532925 ; + qudt:conversionMultiplierSN 1.74532925E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA024" ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-331"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA024"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:RAD ; + qudt:siExactMatch si-unit:degree ; + qudt:symbol "°" ; + qudt:ucumCode "deg"^^qudt:UCUMcs ; + qudt:udunitsCode "°" ; + qudt:uneceCommonCode "DD" ; + rdfs:isDefinedBy ; + rdfs:label "Degree"@en . + +unit:DEG-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Degree per Hour\" is an Imperial unit for 'Angular Velocity' expressed as $deg/h$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00000484813681 ; + qudt:conversionMultiplierSN 4.84813681E-6 ; + qudt:expression "$deg/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:symbol "°/h" ; + qudt:ucumCode "deg.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "deg/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree per Hour"@en . + +unit:DEG-PER-M + a qudt:Unit ; + dcterms:description "A change of angle in one SI unit of length."@en ; + qudt:conversionMultiplier 0.0174532925199433 ; + qudt:conversionMultiplierSN 1.74532925199433E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasQuantityKind quantitykind:AngularWavenumber ; + qudt:hasQuantityKind quantitykind:DebyeAngularWavenumber ; + qudt:hasQuantityKind quantitykind:FermiAngularWavenumber ; + qudt:iec61360Code "0112/2///62720#UAA025" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA025"^^xsd:anyURI ; + qudt:symbol "°/m" ; + qudt:ucumCode "deg.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "deg/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H27" ; + rdfs:isDefinedBy ; + rdfs:label "Degrees per metre"@en . + +unit:DEG-PER-MIN + a qudt:Unit ; + dcterms:description "A unit of measure for the rate of change of plane angle, $d\\omega / dt$, in durations of one minute.The vector $\\omega$ is directed along the axis of rotation in the direction for which the rotation is clockwise."^^qudt:LatexString ; + qudt:conversionMultiplier 0.000290888209 ; + qudt:conversionMultiplierSN 2.90888209E-4 ; + qudt:expression "$deg-per-min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:symbol "°/min" ; + qudt:ucumCode "deg.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "deg/min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree per Minute"@en . + +unit:DEG-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Degree per Second\" is an Imperial unit for 'Angular Velocity' expressed as $deg/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0174532925 ; + qudt:conversionMultiplierSN 1.74532925E-2 ; + qudt:expression "$deg/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:iec61360Code "0112/2///62720#UAA026" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA026"^^xsd:anyURI ; + qudt:symbol "°/s" ; + qudt:ucumCode "deg.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "deg/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E96" ; + rdfs:isDefinedBy ; + rdfs:label "Degree per Second"@en . + +unit:DEG-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Degree per Square Second}$ is an Imperial unit for $\\textit{Angular Acceleration}$ expressed as $deg/s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0174532925 ; + qudt:conversionMultiplierSN 1.74532925E-2 ; + qudt:expression "$deg/s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB407" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB407"^^xsd:anyURI ; + qudt:symbol "°/s²" ; + qudt:ucumCode "deg.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "deg/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M45" ; + rdfs:isDefinedBy ; + rdfs:label "Degree per Square Second"@en . + +unit:DEG2 + a qudt:Unit ; + dcterms:description "A square degree is a non-SI unit measure of solid angle. It is denoted in various ways, including deg, sq. deg. and $\\circ^2$. Just as degrees are used to measure parts of a circle, square degrees are used to measure parts of a sphere. Analogous to one degree being equal to $\\pi /180 radians$, a square degree is equal to ($\\pi /180)$ or about 1/3283 steradian. The number of square degrees in a whole sphere is or approximately 41 253 deg. This is the total area of the 88 constellations in the list of constellations by area. For example, observed from the surface of the Earth, the Moon has a diameter of approximately $0.5^\\circ$, so it covers a solid angle of approximately 0.196 deg, which is $4.8 \\times 10$ of the total sky sphere."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00030461742 ; + qudt:conversionMultiplierSN 3.0461742E-4 ; + qudt:expression "$deg^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasQuantityKind quantitykind:SolidAngle ; + qudt:symbol "°²" ; + qudt:ucumCode "deg2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square degree"@en . + +unit:DEGREE_API + a qudt:Unit ; + dcterms:description "unit for the determination of the density of petroleum at 60 degrees F (15.56 degrees C)"^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Gravity_API ; + qudt:iec61360Code "0112/2///62720#UAA027" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA027"^^xsd:anyURI ; + qudt:plainTextDescription "unit for the determination of the density of petroleum at 60 degrees F (15.56 degrees C)" ; + qudt:symbol "°API" ; + qudt:uneceCommonCode "J13" ; + rdfs:isDefinedBy ; + rdfs:label "Degree API"@en . + +unit:DEGREE_BALLING + a qudt:Unit ; + dcterms:description "unit for the mixing ratio of a soluble dry substance in water at 17.5 degrees C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/ water solution corresponds to 1 degree Balling and respectively a one percent solution"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA031" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA031"^^xsd:anyURI ; + qudt:plainTextDescription "unit for the mixing ratio of a soluble dry substance in water at 17.5 degrees C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/ water solution corresponds to 1 degree Balling and respectively a one percent solution" ; + qudt:symbol "°Balling" ; + qudt:uneceCommonCode "J17" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Balling"@en . + +unit:DEGREE_BAUME + a qudt:Unit ; + dcterms:description """graduation of the areometer scale for determination of densitiy of fluids. + +The Baumé scale is a pair of hydrometer scales developed by French pharmacist Antoine Baumé in 1768 to measure density of various liquids. The unit of the Baumé scale has been notated variously as degrees Baumé, B°, Bé° and simply Baumé (the accent is not always present). One scale measures the density of liquids heavier than water and the other, liquids lighter than water. The Baumé of distilled water is 0. The API gravity scale is based on errors in early implementations of the Baumé scale.""" ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA028" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA028"^^xsd:anyURI ; + qudt:plainTextDescription """graduation of the areometer scale for determination of densitiy of fluids. + +The Baumé scale is a pair of hydrometer scales developed by French pharmacist Antoine Baumé in 1768 to measure density of various liquids. The unit of the Baumé scale has been notated variously as degrees Baumé, B°, Bé° and simply Baumé (the accent is not always present). One scale measures the density of liquids heavier than water and the other, liquids lighter than water. The Baumé of distilled water is 0. The API gravity scale is based on errors in early implementations of the Baumé scale.""" ; + qudt:symbol "°Bé{origin}" ; + qudt:uneceCommonCode "J14" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Baume (origin Scale)"@en . + +unit:DEGREE_BAUME_US_HEAVY + a qudt:Unit ; + dcterms:description "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are heavier than water"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA029" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA029"^^xsd:anyURI ; + qudt:plainTextDescription "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are heavier than water" ; + qudt:symbol "°Bé{US Heavy}" ; + qudt:uneceCommonCode "J15" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Baume (US Heavy)"@en . + +unit:DEGREE_BAUME_US_LIGHT + a qudt:Unit ; + dcterms:description "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are lighter than water"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA030" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA030"^^xsd:anyURI ; + qudt:plainTextDescription "graduation of the areometer scale for determination of density of fluids according to the Anglo-American system of units, which are lighter than water" ; + qudt:symbol "°Bé{US Light}" ; + qudt:uneceCommonCode "J16" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Baume (US Light)"@en . + +unit:DEGREE_BRIX + a qudt:Unit ; + dcterms:description "unit named according to Adolf Brix for the mixing ratio of a soluble dry substance in water with 15.5 °C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/water solution corresponds to 1 °Brix and respectively an one percent solution"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA032" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA032"^^xsd:anyURI ; + qudt:plainTextDescription "unit named according to Adolf Brix for the mixing ratio of a soluble dry substance in water with 15.5 °C similar to the percent designation for solutions, in which a solution of 1 g saccharose in 100 g saccharose/water solution corresponds to 1 °Brix and respectively an one percent solution" ; + qudt:symbol "°Bx" ; + qudt:uneceCommonCode "J18" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Brix"@en . + +unit:DEGREE_OECHSLE + a qudt:Unit ; + dcterms:description "unit of the density of the must, as measure for the proportion of the soluble material in the grape must"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA048" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA048"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density of the must, as measure for the proportion of the soluble material in the grape must" ; + qudt:symbol "°Oe" ; + qudt:uneceCommonCode "J27" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Oechsle"@en . + +unit:DEGREE_PLATO + a qudt:Unit ; + dcterms:description "unit for the mixing ratio of the original gravity in the beer brew at 17.5 °C before the fermentation"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA049" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA049"^^xsd:anyURI ; + qudt:plainTextDescription "unit for the mixing ratio of the original gravity in the beer brew at 17.5 °C before the fermentation" ; + qudt:symbol "°P" ; + qudt:uneceCommonCode "PLA" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Plato"@en . + +unit:DEGREE_TWADDELL + a qudt:Unit ; + dcterms:description "unit of the density of fluids, which are heavier than water"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA054" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA054"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density of fluids, which are heavier than water" ; + qudt:symbol "°Tw" ; + qudt:uneceCommonCode "J31" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Twaddell"@en . + +unit:DEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Celsius}$, also known as centigrade, is a scale and unit of measurement for temperature. + It can refer to a specific temperature on the Celsius scale as well as a unit to indicate a temperature interval, + a difference between two temperatures or an uncertainty. + This definition fixes the magnitude of both the degree Celsius and the kelvin as precisely 1 part + in 273.16 (approximately 0.00366) of the difference between absolute zero and the triple point of water. + Thus, it sets the magnitude of one degree Celsius and that of one kelvin as exactly the same. + Additionally, it establishes the difference between the two scales' null points as being precisely $273.15^{\\circ}\\text{C}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 273.15 ; + qudt:conversionOffsetSN 2.7315E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Celsius"^^xsd:anyURI ; + qudt:expression "$degC$"^^qudt:LatexString ; + qudt:guidance "

See NIST section SP811 section 4.2.1.1

"^^rdf:HTML ; + qudt:guidance "

See NIST section SP811 section 6.2.8

"^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:iec61360Code "0112/2///62720#UAA033" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Celsius?oldid=494152178"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA033"^^xsd:anyURI ; + qudt:latexDefinition "$\\,^{\\circ}{C}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:scalingOf unit:K ; + qudt:siExactMatch si-unit:degreeCelsius ; + qudt:symbol "°C" ; + qudt:ucumCode "Cel"^^qudt:UCUMcs ; + qudt:udunitsCode "°C" ; + qudt:udunitsCode "℃" ; + qudt:uneceCommonCode "CEL" ; + rdfs:isDefinedBy ; + rdfs:label "Celsius-fok"@hu ; + rdfs:label "Grad Celsius"@de ; + rdfs:label "celsius"@tr ; + rdfs:label "darjah celsius"@ms ; + rdfs:label "degree Celsius"@en ; + rdfs:label "degré celsius"@fr ; + rdfs:label "grad celsius"@ro ; + rdfs:label "grado celsius"@es ; + rdfs:label "grado celsius"@it ; + rdfs:label "gradus celsii"@la ; + rdfs:label "grau celsius"@pt ; + rdfs:label "stopień celsjusza"@pl ; + rdfs:label "stopinja Celzija"@sl ; + rdfs:label "stupně celsia"@cs ; + rdfs:label "βαθμός Κελσίου"@el ; + rdfs:label "градус Целзий"@bg ; + rdfs:label "градус Цельсия"@ru ; + rdfs:label "צלזיוס"@he ; + rdfs:label "درجة مئوية"@ar ; + rdfs:label "درجه سانتی گراد/سلسیوس"@fa ; + rdfs:label "सेल्सियस"@hi ; + rdfs:label "セルシウス度"@ja ; + rdfs:label "摄氏度"@zh ; + skos:altLabel "degree-centigrade" . + +unit:DEG_C-CentiM + a qudt:Unit ; + dcterms:description "$\\textit{Degree Celsius Centimeter}$ is a C.G.S System unit for 'Length Temperature' expressed as $cm-degC$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:expression "$cm-degC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:LengthTemperature ; + qudt:symbol "°C·cm" ; + qudt:ucumCode "Cel.cm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius Centimeter"@en-US ; + rdfs:label "Degree Celsius Centimetre"@en . + +unit:DEG_C-KiloGM-PER-M2 + a qudt:Unit ; + dcterms:description "Derived unit for the product of the temperature in degrees Celsius and the mass density of a medium, integrated over vertical depth or height in metres."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "°C·kg/m²" ; + qudt:ucumCode "Cel.kg.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degrees Celsius kilogram per square metre"@en . + +unit:DEG_C-PER-BAR + a qudt:Unit ; + dcterms:description "unit with the name °Celsius divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA035" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA035"^^xsd:anyURI ; + qudt:symbol "°C/bar" ; + qudt:ucumCode "Cel.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F60" ; + rdfs:isDefinedBy ; + rdfs:label "degree Celsius per bar" . + +unit:DEG_C-PER-HR + a qudt:Unit ; + dcterms:description "$\\textit{Degree Celsius per Hour}$ is a unit for 'Temperature Per Time' expressed as $degC / h$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:expression "$degC / h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA036" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA036"^^xsd:anyURI ; + qudt:symbol "°C/h" ; + qudt:ucumCode "Cel.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H12" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius per Hour"@en . + +unit:DEG_C-PER-K + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Celsius Per Kelvin}$ is Degree Celsius divided by the SI base unit kelvin. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureRatio ; + qudt:iec61360Code "0112/2///62720#UAA034" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA034"^^xsd:anyURI ; + qudt:plainTextDescription "unit with the name Degree Celsius divided by the SI base unit kelvin" ; + qudt:symbol "°C/K" ; + qudt:ucumCode "Cel.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E98" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius per Kelvin"@en . + +unit:DEG_C-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureGradient ; + qudt:symbol "°C/m" ; + qudt:ucumCode "Cel.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degrees Celsius per metre"@en . + +unit:DEG_C-PER-MIN + a qudt:Unit ; + dcterms:description "$\\textit{Degree Celsius per Minute}$ is a unit for 'Temperature Per Time' expressed as $degC / m$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:expression "$degC / m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA037" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA037"^^xsd:anyURI ; + qudt:symbol "°C/min" ; + qudt:ucumCode "Cel.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H13" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius per Minute"@en . + +unit:DEG_C-PER-SEC + a qudt:Unit ; + dcterms:description "$\\textit{Degree Celsius per Second}$ is a unit for 'Temperature Per Time' expressed as $degC / s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$degC / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA038" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA038"^^xsd:anyURI ; + qudt:symbol "°C/s" ; + qudt:ucumCode "Cel.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H14" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius per Second"@en . + +unit:DEG_C-PER-YR + a qudt:Unit ; + dcterms:description "A rate of change of temperature expressed on the Celsius scale over a period of an average calendar year (365.25 days)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000316880878140289 ; + qudt:conversionMultiplierSN 3.16880878140289E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:symbol "°C/a" ; + qudt:ucumCode "Cel.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "Cel/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degrees Celsius per year"@en . + +unit:DEG_C-WK + a qudt:Unit ; + dcterms:description "temperature multiplied by unit of time."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 604800.0 ; + qudt:conversionMultiplierSN 6.048E5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TimeTemperature ; + qudt:symbol "°C·wk" ; + qudt:ucumCode "Cel.wk"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree Celsius week"@en . + +unit:DEG_C2 + a qudt:Unit ; + dcterms:description "Degrees Celsius squared."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureVariance_NEON ; + qudt:symbol "°C²" ; + qudt:ucumCode "K2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degrees Celsius Squared"@en . + +unit:DEG_C2-PER-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "°C²/s" ; + qudt:ucumCode "K2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "K2/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Degrees Celsius per second"@en . + +unit:DEG_C_GROWING_CEREAL-DAY + a qudt:Unit ; + dcterms:description "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^rdf:HTML ; + qudt:conversionMultiplier 86400.0 ; + qudt:conversionMultiplierSN 8.64E4 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C_GROWING_CEREAL ; + ] ; + qudt:hasQuantityKind quantitykind:GrowingDegreeDay_Cereal ; + qudt:plainTextDescription "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops." ; + qudt:symbol "GDD" ; + rdfs:isDefinedBy ; + rdfs:label "Growing Degree Days (Cereals)"@en . + +unit:DEG_F + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Fahrenheit}$ is an Imperial unit for 'Thermodynamic Temperature' expressed as + $\\circ\\text{F}$ + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-1 ; + qudt:conversionOffset 459.67 ; + qudt:conversionOffsetSN 4.5967E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:iec61360Code "0112/2///62720#UAA039" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA039"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:K ; + qudt:symbol "°F" ; + qudt:ucumCode "[degF]"^^qudt:UCUMcs ; + qudt:udunitsCode "°F" ; + qudt:udunitsCode "℉" ; + qudt:uneceCommonCode "FAH" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit"@en . + +unit:DEG_F-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description ""^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2000.00000000000016 ; + qudt:conversionMultiplierSN 2.00000000000000016E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF-h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:TimeTemperature ; + qudt:symbol "°F·h" ; + qudt:ucumCode "[degF].h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit Hour"@en . + +unit:DEG_F-HR-FT2-PER-BTU_IT + a qudt:Unit ; + dcterms:description "unit of the thermal resistor according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1761101836823058548197662335811061 ; + qudt:conversionMultiplierSN 1.761101836823058548197662335811061E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:iec61360Code "0112/2///62720#UAA043" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA043"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal resistor according to the Imperial system of units" ; + qudt:symbol "°F·h·ft²/Btu{IT}" ; + qudt:ucumCode "[degF].h-1.[ft_i]-2.[Btu_IT]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/(h.[ft_i]2.[Btu_IT])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J22" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Table)"@en . + +unit:DEG_F-HR-FT2-PER-BTU_IT-IN + a qudt:Unit ; + dcterms:description "unit of specific thermal resistance according to the Imperial system of units" ; + qudt:conversionMultiplier 6.933471798515978536211269038626224 ; + qudt:conversionMultiplierSN 6.933471798515978536211269038626224E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:iec61360Code "0112/2///62720#UAB252" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB252"^^xsd:anyURI ; + qudt:symbol "°F·h·ft²/(Btu{IT}·in)" ; + qudt:ucumCode "[degF].h.[ft_i]2.[Btu_IT]-1.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N88" ; + rdfs:isDefinedBy ; + rdfs:label "degree Fahrenheit hour square foot per British thermal unit (international table) inch" . + +unit:DEG_F-HR-FT2-PER-BTU_TH + a qudt:Unit ; + dcterms:description "unit of the thermal resistor according to the according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1762280394439072243097885617308536 ; + qudt:conversionMultiplierSN 1.762280394439072243097885617308536E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:iec61360Code "0112/2///62720#UAA040" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA040"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the thermal resistor according to the according to the Imperial system of units" ; + qudt:symbol "°F·h·ft²/Btu{th}" ; + qudt:ucumCode "[degF].h-1.[ft_i]-2.[Btu_th]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/(h.[ft_i]2.[Btu_th])"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J19" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical)"@en . + +unit:DEG_F-HR-FT2-PER-BTU_TH-IN + a qudt:Unit ; + dcterms:description "unit of specific thermal resistance according to the Imperial system of units" ; + qudt:conversionMultiplier 6.938111789130205681487738650821007 ; + qudt:conversionMultiplierSN 6.938111789130205681487738650821007E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:iec61360Code "0112/2///62720#UAB253" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB253"^^xsd:anyURI ; + qudt:symbol "°F·h·ft²/(Btu{th}·in)" ; + qudt:ucumCode "[degF].h.[ft_i]2.[Btu_th]-1.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N89" ; + rdfs:isDefinedBy ; + rdfs:label "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch" . + +unit:DEG_F-HR-PER-BTU_IT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Degree Fahrenheit Hour per BTU}$ is an Imperial unit for 'Thermal Resistance' expressed as $degF-h/Btu$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.895634240626634551676309339081973 ; + qudt:conversionMultiplierSN 1.895634240626634551676309339081973E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF-h/Btu$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:symbol "°F·h/Btu{IT}" ; + qudt:ucumCode "[degF].h.[Btu_IT]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF].h/[Btu_IT]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N84" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit Hour per BTU"@en . + +unit:DEG_F-HR-PER-BTU_TH + a qudt:Unit ; + dcterms:description """The unit $\\textit{Degree Fahrenheit hour per British thermal unit (thermochemical)}$ is a non SI-conform unit of the thermal resistance according to the Imperial system of units. + """^^qudt:LatexString ; + qudt:conversionMultiplier 1.896902829486604790432999412407318 ; + qudt:conversionMultiplierSN 1.896902829486604790432999412407318E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:iec61360Code "0112/2///62720#UAB249" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB249"^^xsd:anyURI ; + qudt:symbol "°F·h/Btu{th}" ; + qudt:ucumCode "[degF].h.[Btu_th]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N85" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit hour per British thermal unit (thermochemical)" . + +unit:DEG_F-PER-BAR + a qudt:Unit ; + dcterms:description """$\\textit{Degree Fahrenheit per bar}$ is the traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the unit bar. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.000005555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA042" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA042"^^xsd:anyURI ; + qudt:symbol "°F/bar" ; + qudt:ucumCode "[degF].bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J21" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per bar" . + +unit:DEG_F-PER-HR + a qudt:Unit ; + dcterms:description "$\\textit{Degree Fahrenheit per Hour}$ is a unit for 'Temperature Per Time' expressed as $degF / h$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000154320987654321 ; + qudt:conversionMultiplierSN 1.54320987654321E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF / h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA044" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA044"^^xsd:anyURI ; + qudt:symbol "°F/h" ; + qudt:ucumCode "[degF].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J23" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per Hour"@en . + +unit:DEG_F-PER-K + a qudt:Unit ; + dcterms:description "traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the SI base unit Kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.5555556 ; + qudt:conversionMultiplierSN 5.555556E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureRatio ; + qudt:iec61360Code "0112/2///62720#UAA041" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA041"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the SI base unit Kelvin" ; + qudt:symbol "°F/K" ; + qudt:ucumCode "[degF].K-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J20" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per Kelvin"@en . + +unit:DEG_F-PER-MIN + a qudt:Unit ; + dcterms:description "$\\textit{Degree Fahrenheit per Minute}$ is a unit for 'Temperature Per Time' expressed as $degF / m$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.009259259259259260000000000000000002 ; + qudt:conversionMultiplierSN 9.259259259259260000000000000000002E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF / m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA045" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA045"^^xsd:anyURI ; + qudt:symbol "°F/min" ; + qudt:ucumCode "[degF].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J24" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per Minute"@en . + +unit:DEG_F-PER-SEC + a qudt:Unit ; + dcterms:description "$\\textit{Degree Fahrenheit per Second}$ is a unit for 'Temperature Per Time' expressed as $degF / s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA046" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA046"^^xsd:anyURI ; + qudt:symbol "°F/s" ; + qudt:ucumCode "[degF].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J25" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per Second"@en . + +unit:DEG_F-PER-SEC2 + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Fahrenheit per Square Second}$ is a C.G.S System unit for expressing the acceleration + of a temperature expressed as $degF / s^2$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$degF / s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime_Squared ; + qudt:plainTextDescription "'Degree Fahrenheit per Square Second' is a unit for expressing the acceleration of a temperature expressed as 'degF /s2'." ; + qudt:symbol "°F/s²" ; + qudt:ucumCode "[degF].s-2"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Degree Fahrenheit per Square Second"@en . + +unit:DEG_F-SEC-PER-BTU_IT + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Fahrenheit Second per British thermal unit (international table)}$ is a non SI-conform unit + of the thermal resistance according to the Imperial system of units. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.0005265650668407318199100859275227703 ; + qudt:conversionMultiplierSN 5.265650668407318199100859275227703E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:iec61360Code "0112/2///62720#UAB250" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB250"^^xsd:anyURI ; + qudt:symbol "°F·s/Btu{IT}" ; + qudt:ucumCode "[degF].s.[Btu_IT]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N86" ; + rdfs:isDefinedBy ; + rdfs:label "degree Fahrenheit second per British thermal unit (international table)" . + +unit:DEG_F-SEC-PER-BTU_TH + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Fahrenheit Second per British thermal unit (thermochemical)}$ is a non SI-conform unit + of the thermal resistance according to the Imperial system of units. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.0005269174526351679973424998367798105 ; + qudt:conversionMultiplierSN 5.269174526351679973424998367798105E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:iec61360Code "0112/2///62720#UAB251" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB251"^^xsd:anyURI ; + qudt:symbol "°F·s/Btu{th}" ; + qudt:ucumCode "[degF].s.[Btu_th]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N87" ; + rdfs:isDefinedBy ; + rdfs:label "degree Fahrenheit second per British thermal unit (thermochemical)" . + +unit:DEG_R + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Rankine}$ is a thermodynamic (absolute) temperature scale. + The symbol for degrees Rankine is $^\\circ R$ or $^\\circ Ra$ if necessary to distinguish it from the Rømer and Réaumur scales). + Zero on both the Kelvin and Rankine scales is absolute zero, but the Rankine degree is defined as equal + to one degree Fahrenheit, rather than the one degree Celsius used by the Kelvin scale. + A temperature of $-459.67 ^\\circ F$ is exactly equal to $0 ^\\circ R$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.5555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:iec61360Code "0112/2///62720#UAA050" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rankine_scale"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA050"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:K ; + qudt:symbol "°R" ; + qudt:ucumCode "[degR]"^^qudt:UCUMcs ; + qudt:udunitsCode "°R" ; + qudt:uneceCommonCode "A48" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Rankine"@en . + +unit:DEG_R-PER-HR + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Rankine per Hour}$ is a rate of change of temperature measured in degree Rankine in periods of one hour. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000154320987654321 ; + qudt:conversionMultiplierSN 1.54320987654321E-4 ; + qudt:expression "$degR / h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA051" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA051"^^xsd:anyURI ; + qudt:symbol "°R/h" ; + qudt:ucumCode "[degR].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degR]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J28" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Rankine per Hour"@en . + +unit:DEG_R-PER-MIN + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Rankine per Minute}$ is a rate of change of temperature measured in degree Rankine in periods of one minute. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.009259259259259260000000000000000002 ; + qudt:conversionMultiplierSN 9.259259259259260000000000000000002E-3 ; + qudt:expression "$degR / m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA052" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA052"^^xsd:anyURI ; + qudt:symbol "°R/min" ; + qudt:ucumCode "[degR].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degR]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J29" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Rankine per Minute"@en . + +unit:DEG_R-PER-SEC + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Degree Rankine per Second}$ is a rate of change of temperature measured in degree Rankine in periods of one second. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.5555555555555556 ; + qudt:conversionMultiplierSN 5.555555555555556E-1 ; + qudt:expression "$degR / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA053" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA053"^^xsd:anyURI ; + qudt:symbol "°R/s" ; + qudt:ucumCode "[degR].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[degR]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J30" ; + rdfs:isDefinedBy ; + rdfs:label "Degree Rankine per Second"@en . + +unit:DENIER + a qudt:Unit ; + dcterms:description "Denier or den is a unit of measure for the linear mass density of fibers. It is defined as the mass in grams per 9,000 meters. In the International System of Units the tex is used instead (see below). The denier is based on a natural standard: a single strand of silk is approximately one denier. A 9,000-meter strand of silk weighs about one gram. The term denier is from the French denier, a coin of small value (worth 1/12 of a sou). Applied to yarn, a denier was held to be equal in weight to 1/24 of an ounce. The term microdenier is used to describe filaments that weigh less than one gram per 9,000 meter length."^^rdf:HTML ; + qudt:conversionMultiplier 0.00000011 ; + qudt:conversionMultiplierSN 1.1E-7 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Denier"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB244" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Denier?oldid=463382291"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Units_of_textile_measurement#Denier"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB244"^^xsd:anyURI ; + qudt:symbol "D" ; + qudt:ucumCode "[den]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A49" ; + rdfs:isDefinedBy ; + rdfs:label "Denier"@en . + +unit:DIOPTER + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Dioptre}$, or $\\textit{Diopter}$, is a unit of measurement for the optical power of a lens or curved mirror, + which is equal to the reciprocal of the focal length measured in metres (that is, $1/metre$). + For example, a $3 \\; dioptre$ lens brings parallel rays of light to focus at $1/3\\,metre$. + The same unit is also sometimes used for other reciprocals of distance, particularly radii of curvature + and the vergence of optical beams. + Though the diopter is based on the SI-metric system it has not been included in the standard so that there is + no international name or abbreviation for this unit of measurement within the international system of units + this unit for optical power would need to be specified explicitly as the inverse metre. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dioptre"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Curvature ; + qudt:iec61360Code "0112/2///62720#UAB371" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dioptre?oldid=492506920"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB371"^^xsd:anyURI ; + qudt:scalingOf unit:PER-M ; + qudt:symbol "D" ; + qudt:ucumCode "[diop]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q25" ; + rdfs:isDefinedBy ; + rdfs:label "Diopter"@en . + +unit:DPI + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "point density as amount of the picture base element divided by the unit inch according to the Anglo-American and the Imperial system of units"^^rdf:HTML ; + qudt:conversionMultiplier 39.37008 ; + qudt:conversionMultiplierSN 3.937008E1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:DotsPerInch ; + qudt:hasQuantityKind quantitykind:LineicResolution ; + qudt:iec61360Code "0112/2///62720#UAA421" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA421"^^xsd:anyURI ; + qudt:plainTextDescription "point density as amount of the picture base element divided by the unit inch according to the Anglo-American and the Imperial system of units" ; + qudt:symbol "DPI" ; + qudt:ucumCode "{dot}/[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E39" ; + rdfs:isDefinedBy ; + rdfs:label "Dots per Inch"@en . + +unit:DRAM_UK + a qudt:Unit ; + dcterms:description "non SI-conforming unit of mass comes from the Anglo-American Troy or Apothecaries' Weight System of units which is mainly used in England, in the Netherlands and in the USA as a commercial weight"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0017718451953125 ; + qudt:conversionMultiplierSN 1.7718451953125E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB181" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB181"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conforming unit of mass comes from the Anglo-American Troy or Apothecaries' Weight System of units which is mainly used in England, in the Netherlands and in the USA as a commercial weight" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "dr{UK}" ; + qudt:ucumCode "[dr_ap]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DRI" ; + rdfs:isDefinedBy ; + rdfs:label "Dram (UK)"@en . + +unit:DRAM_US + a qudt:Unit ; + dcterms:description "non SI-conform unit of the mass according to the avoirdupois system of units: 1 dram (av. ) = 1/16 ounce (av. ) = 1/256 pound (av.)"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0038879346 ; + qudt:conversionMultiplierSN 3.8879346E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB180" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB180"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conform unit of the mass according to the avoirdupois system of units: 1 dram (av. ) = 1/16 ounce (av. ) = 1/256 pound (av.)" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "dr{US}" ; + qudt:ucumCode "[dr_av]"^^qudt:UCUMcs ; + qudt:udunitsCode "dr" ; + qudt:udunitsCode "fldr" ; + qudt:uneceCommonCode "DRA" ; + rdfs:isDefinedBy ; + rdfs:label "Dram (US)"@en . + +unit:DWT + a qudt:Unit ; + dcterms:description "\"Penny Weight\" is a unit for 'Mass' expressed as $dwt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00155517384 ; + qudt:conversionMultiplierSN 1.55517384E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pennyweight"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:PENNYWEIGHT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pennyweight?oldid=486693644"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "dwt" ; + qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DWT" ; + rdfs:isDefinedBy ; + rdfs:label "Penny Weight"@en ; + skos:altLabel "dryquartus" . + +unit:DYN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + In physics, the $dyne$ is a unit of force specified in the centimetre-gram-second (CGS) system of units. + The $dyne$ is a unit of force specified in the centimetre-gram-second (CGS) system of units. + One $dyne$ is equal to $\\SI{10}{\\micro\\newton}$. + Equivalently, the $dyne$ is defined as 'the force required to accelerate a mass of one gram at a rate of one centimetre per square second'. + A $\\textit{dyne per centimetre}$ is the unit traditionally used to measure surface tension. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dyne"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA422" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dyne?oldid=494703827"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA422"^^xsd:anyURI ; + qudt:latexDefinition "$g\\cdot cm/s^{2}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:scalingOf unit:N ; + qudt:symbol "dyn" ; + qudt:ucumCode "dyn"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DU" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne"@en . + +unit:DYN-CentiM + a qudt:Unit ; + dcterms:description "\"Dyne Centimeter\" is a C.G.S System unit for 'Torque' expressed as $dyn-cm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$dyn-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA423" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA423"^^xsd:anyURI ; + qudt:symbol "dyn·cm" ; + qudt:ucumCode "dyn.cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J94" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne Centimeter"@en-US ; + rdfs:label "Dyne Centimetre"@en . + +unit:DYN-M + a qudt:Unit ; + dcterms:description "[CGS] unit of the rotational moment" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAB419" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB419"^^xsd:anyURI ; + qudt:symbol "dyn·m" ; + qudt:ucumCode "dyn.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M97" ; + rdfs:isDefinedBy ; + rdfs:label "dyne metre" . + +unit:DYN-PER-CentiM + a qudt:Unit ; + dcterms:description "CGS unit of the surface tension"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB106" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB106"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the surface tension" ; + qudt:symbol "dyn/cm" ; + qudt:ucumCode "dyn.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "dyn/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DX" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne per Centimeter"@en-US ; + rdfs:label "Dyne per Centimetre"@en . + +unit:DYN-PER-CentiM2 + a qudt:Unit ; + dcterms:description "\"Dyne per Square Centimeter\" is a C.G.S System unit for 'Force Per Area' expressed as $dyn/cm^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$dyn/cm^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA424" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA424"^^xsd:anyURI ; + qudt:symbol "dyn/cm²" ; + qudt:ucumCode "dyn.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "dyn/cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D9" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne per Square Centimeter"@en-US ; + rdfs:label "Dyne per Square Centimetre"@en . + +unit:DYN-SEC-PER-CentiM + a qudt:Unit ; + dcterms:description "CGS unit of the mechanical impedance"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB144" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB144"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the mechanical impedance" ; + qudt:symbol "dyn·s/cm" ; + qudt:ucumCode "dyn.s.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "dyn.s/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A51" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne Second per Centimeter"@en-US ; + rdfs:label "Dyne Second per Centimetre"@en . + +unit:DYN-SEC-PER-CentiM3 + a qudt:Unit ; + dcterms:description "CGS unit of the acoustic image impedance of the medium"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:iec61360Code "0112/2///62720#UAB102" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB102"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the acoustic image impedance of the medium" ; + qudt:symbol "dyn·s/cm³" ; + qudt:ucumCode "dyn.s.cm-3"^^qudt:UCUMcs ; + qudt:ucumCode "dyn.s/cm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A50" ; + rdfs:isDefinedBy ; + rdfs:label "Dyne Second per Cubic Centimeter"@en-US ; + rdfs:label "Dyne Second per Cubic Centimetre"@en . + +unit:DYN-SEC-PER-CentiM5 + a qudt:Unit ; + dcterms:description "[CGS] unit of the acoustic impedance (volume flow rate-related pressure)" ; + qudt:conversionMultiplier 100000.0 ; + qudt:conversionMultiplierSN 1.0E5 ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -5 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DYN ; + ] ; + qudt:hasQuantityKind quantitykind:PressureInRelationToVolumeFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB045" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB045"^^xsd:anyURI ; + qudt:symbol "dyn·s/cm⁵" ; + qudt:ucumCode "dyn.s.cm-5"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A52" ; + rdfs:isDefinedBy ; + rdfs:label "dyne second per centimetre to the fifth power" . + +unit:Da + a qudt:Unit ; + dcterms:description "The unified atomic mass unit (symbol: $\\mu$) or dalton (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of $1.660538782(83) \\times 10^{-27} kg$. One $Da$ is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a \"non-SI unit whose values in SI units must be obtained experimentally\"."^^qudt:LatexString ; + dcterms:isReplacedBy unit:DA ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ; + qudt:conversionMultiplierSN 1.66053878283E-27 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dalton"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:exactMatch unit:AMU ; + qudt:exactMatch unit:U ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:MolecularMass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dalton?oldid=495038954"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:siExactMatch si-unit:dalton ; + qudt:symbol "Da" ; + qudt:ucumCode "u"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D43" ; + rdfs:isDefinedBy ; + rdfs:label "Dalton"@en ; + skos:altLabel "atomic-mass-unit" . + +unit:Debye + a qudt:Unit ; + dcterms:description "\"Debye\" is a C.G.S System unit for 'Electric Dipole Moment' expressed as $D$."^^qudt:LatexString ; + dcterms:isReplacedBy unit:DEBYE ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000000000000000000000000000333564 ; + qudt:conversionMultiplierSN 3.33564E-30 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Debye"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E1L1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricDipoleMoment ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Debye?oldid=492149112"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:C-M ; + qudt:symbol "D" ; + rdfs:isDefinedBy ; + rdfs:label "Debye"@en . + +unit:DecaARE + a qudt:Unit ; + dcterms:description "unit of the area which is mainly common in the agriculture and forestry: 1 da = 10 a"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB049" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB049"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the area which is mainly common in the agriculture and forestry: 1 da = 10 a" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:ARE ; + qudt:symbol "daa" ; + qudt:ucumCode "daar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DAA" ; + rdfs:isDefinedBy ; + rdfs:label "Decare"@en . + +unit:DecaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A DecaCoulomb is $10 C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:C ; + qudt:symbol "daC" ; + qudt:ucumCode "daC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "DecaCoulomb"@en . + +unit:DecaGM + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB075" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB075"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:GM ; + qudt:symbol "dag" ; + qudt:ucumCode "dag"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DJ" ; + rdfs:isDefinedBy ; + rdfs:label "Decagram"@en . + +unit:DecaK + a qudt:Unit ; + qudt:conversionMultiplier 10.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:CorrelatedColorTemperature ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:K ; + rdfs:isDefinedBy ; + rdfs:label "DecaK" . + +unit:DecaL + a qudt:Unit ; + dcterms:description "10-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB115" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB115"^^xsd:anyURI ; + qudt:plainTextDescription "10-fold of the unit litre" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:L ; + qudt:symbol "daL" ; + qudt:ucumCode "daL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A44" ; + rdfs:isDefinedBy ; + rdfs:label "Decalitre"@en ; + rdfs:label "Decalitre"@en-US . + +unit:DecaM + a qudt:Unit ; + dcterms:description "10-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB064" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB064"^^xsd:anyURI ; + qudt:plainTextDescription "10-fold of the SI base unit metre" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:M ; + qudt:symbol "dam" ; + qudt:ucumCode "dam"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A45" ; + rdfs:isDefinedBy ; + rdfs:label "Decameter"@en-US ; + rdfs:label "Decametre"@en . + +unit:DecaM3 + a qudt:Unit ; + dcterms:description "1 000-fold of the power of the SI base unit metre by exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DecaM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB179" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB179"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the power of the SI base unit metre by exponent 3" ; + qudt:symbol "dam³" ; + qudt:ucumCode "dam3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DMA" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decameter"@en-US ; + rdfs:label "Cubic Decametre"@en . + +unit:DecaPA + a qudt:Unit ; + dcterms:description "10-fold of the derived SI unit pascal"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB375" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB375"^^xsd:anyURI ; + qudt:plainTextDescription "10-fold of the derived SI unit pascal" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:PA ; + qudt:symbol "daPa" ; + qudt:ucumCode "daPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H75" ; + rdfs:isDefinedBy ; + rdfs:label "Decapascal"@en . + +unit:DecaPOISE + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:plainTextDescription "10-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:prefix prefix:Deca ; + qudt:scalingOf unit:POISE ; + qudt:symbol "daP" ; + qudt:ucumCode "daP"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Decapoise"@en ; + rdfs:label "Dekapoise"@de . + +unit:DeciB + a qudt:DimensionlessUnit, qudt:LogarithmicUnit, qudt:Unit ; + dcterms:description "A customary logarithmic measure most commonly used (in various ways) for measuring sound.Sound is measured on a logarithmic scale. Informally, if one sound is $1\\,bel$ (10 decibels) \"louder\" than another, this means the louder sound is 10 times louder than the fainter one. A difference of 20 decibels corresponds to an increase of 10 x 10 or 100 times in intensity. The beginning of the scale, 0 decibels, can be set in different ways, depending on exactly the aspect of sound being measured. For sound intensity (the power of the sound waves per unit of area) $0\\,decibel$ is equal to $1\\,picoWatts\\,per\\,Metre\\,Squared$. This corresponds approximately to the faintest sound that can be detected by a person who has good hearing. For sound pressure (the pressure exerted by the sound waves) 0 decibels equals $20\\,micropascals\\,RMS$, and for sound power $0\\,decibels$ sometimes equals $1\\,picoWatt$. In all cases, one decibel equals $\\approx\\,0.115129\\,neper$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Decibel"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:iec61360Code "0112/2///62720#UAA409" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Decibel?oldid=495380648"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA409"^^xsd:anyURI ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:B ; + qudt:symbol "dB" ; + qudt:ucumCode "dB"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2N" ; + rdfs:isDefinedBy ; + rdfs:label "Decibel"@en . + +unit:DeciB-MilliW + a qudt:Unit ; + dcterms:description "unit of level used to indicate that a power ratio is expressed in decibel (dB) with reference to one milliwatt (mW)" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD891" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD891"^^xsd:anyURI ; + qudt:symbol "dB·mW" ; + qudt:ucumCode "dB.mW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DBM" ; + rdfs:isDefinedBy ; + rdfs:label "decibel milliwatts" . + +unit:DeciB-MilliW-PER-MegaHZ + a qudt:Unit ; + dcterms:description "unit of level used to indicate that a power ratio is expressed in decibel (dB) with reference to one milliwatt (mW) devided by the 1,000,000-fold of the derived unit hertz" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaHZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD892" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD892"^^xsd:anyURI ; + qudt:symbol "dB·mW/MHz" ; + qudt:ucumCode "dB.mW.MHz-1"^^qudt:UCUMcs ; + qudt:ucumCode "dB.mW/MHz"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DBM" ; + rdfs:isDefinedBy ; + rdfs:label "decibel milliwatts per megahertz" . + +unit:DeciB-PER-KiloM + a qudt:Unit ; + dcterms:description "0.1-fold of the unit bel divided by 1,000-fold of the SI base unit metre" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearLogarithmicRatio ; + qudt:iec61360Code "0112/2///62720#UAA410" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA410"^^xsd:anyURI ; + qudt:symbol "dB/km" ; + qudt:ucumCode "dB.km-1"^^qudt:UCUMcs ; + qudt:ucumCode "dB/km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H51" ; + rdfs:isDefinedBy ; + rdfs:label "decibel per kilometre" . + +unit:DeciB-PER-M + a qudt:Unit ; + dcterms:description "0.1-fold of the unit bel divided by the SI base unit metre" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearLogarithmicRatio ; + qudt:iec61360Code "0112/2///62720#UAA411" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA411"^^xsd:anyURI ; + qudt:symbol "dB/m" ; + qudt:ucumCode "dB.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "dB/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H52" ; + rdfs:isDefinedBy ; + rdfs:label "decibel per metre" . + +unit:DeciB-W + a qudt:Unit ; + dcterms:description "The decibel watt or dBW is a unit for the measurement of the strength of a signal expressed in decibels relative to one watt." ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD924" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD924"^^xsd:anyURI ; + qudt:symbol "dB·W" ; + qudt:ucumCode "dB.W"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DBW" ; + rdfs:isDefinedBy ; + rdfs:label "decibel watt" . + +unit:DeciBAR + a qudt:Unit ; + dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to $100,000 Pa = 1 bar \\approx 750.0616827 Torr$. Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:BAR ; + qudt:symbol "dbar" ; + qudt:ucumCode "dbar"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Decibar"@en . + +unit:DeciBAR-PER-YR + a qudt:Unit ; + dcterms:description "A rate of change of pressure expressed in decibars over a period of an average calendar year (365.25 days)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00031688 ; + qudt:conversionMultiplierSN 3.1688E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciBAR ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "dbar/a" ; + qudt:ucumCode "dbar.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "dbar/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Decibars per year"@en . + +unit:DeciB_A + a qudt:Unit ; + dcterms:description "unit of sound pressure level with frequency weighting A" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:iec61360Code "0112/2///62720#UAD893" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD893"^^xsd:anyURI ; + qudt:symbol "dB(A)" ; + rdfs:isDefinedBy ; + rdfs:label "decibel with A-weighting" . + +unit:DeciB_C + a qudt:Unit ; + dcterms:description "\"Decibel Carrier Unit\" is a unit for 'Signal Detection Threshold' expressed as $dBc$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SignalDetectionThreshold ; + qudt:iec61360Code "0112/2///62720#UAD894" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD894"^^xsd:anyURI ; + qudt:symbol "dBc" ; + rdfs:isDefinedBy ; + rdfs:label "Decibel Carrier Unit"@en . + +unit:DeciB_ISO + a qudt:Unit ; + dcterms:description "antenna gain of a transmitted or received signal" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:iec61360Code "0112/2///62720#UAD889" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD889"^^xsd:anyURI ; + qudt:symbol "dBi" ; + rdfs:isDefinedBy ; + rdfs:label "decibel isotropic" . + +unit:DeciB_M + a qudt:DimensionlessUnit, qudt:Unit ; + dcterms:description "\"Decibel Referred to 1mw\" is a 'Dimensionless Ratio' expressed as $dBm$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:symbol "dBmW" ; + qudt:udunitsCode "Bm" ; + qudt:uneceCommonCode "DBM" ; + rdfs:isDefinedBy ; + rdfs:label "Decibel Referred to 1mw"@en . + +unit:DeciB_Z + a qudt:Unit ; + dcterms:description "unit of sound pressure level with frequency weighting Z (ZERO or linear weighting)" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundExposureLevel ; + qudt:hasQuantityKind quantitykind:SoundPowerLevel ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:hasQuantityKind quantitykind:SoundReductionIndex ; + qudt:iec61360Code "0112/2///62720#UAD895" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD895"^^xsd:anyURI ; + qudt:symbol "dB(Z)" ; + rdfs:isDefinedBy ; + rdfs:label "decibel with Z-weighting" . + +unit:DeciC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A DeciCoulomb is $10^{-1} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:C ; + qudt:symbol "dC" ; + qudt:ucumCode "dC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "DeciCoulomb"@en . + +unit:DeciGM + a qudt:Unit ; + dcterms:description "0.0001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB076" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB076"^^xsd:anyURI ; + qudt:plainTextDescription "0.0001-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:GM ; + qudt:symbol "dg" ; + qudt:ucumCode "dg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DG" ; + rdfs:isDefinedBy ; + rdfs:label "Decigram"@en . + +unit:DeciL + a qudt:Unit ; + dcterms:description "0.1-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB113" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB113"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the unit litre" ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:L ; + qudt:symbol "dL" ; + qudt:ucumCode "dL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DLT" ; + rdfs:isDefinedBy ; + rdfs:label "Decilitre"@en ; + rdfs:label "Decilitre"@en-US . + +unit:DeciL-PER-GM + a qudt:Unit ; + dcterms:description "0.1-fold of the unit of the volume litre divided by the 0.001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciL ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB094" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB094"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the unit of the volume litre divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "dL/g" ; + qudt:ucumCode "dL.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "dL/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "22" ; + rdfs:isDefinedBy ; + rdfs:label "Decilitre per Gram"@en ; + rdfs:label "Decilitre per Gram"@en-US . + +unit:DeciM + a qudt:Unit ; + dcterms:description "A decimeter is a tenth of a meter."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA412" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA412"^^xsd:anyURI ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:M ; + qudt:symbol "dm" ; + qudt:ucumCode "dm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DMT" ; + rdfs:isDefinedBy ; + rdfs:label "Decimeter"@en-US ; + rdfs:label "Decimetre"@en . + +unit:DeciM2 + a qudt:Unit ; + dcterms:description "0.1-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA413" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA413"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "dm²" ; + qudt:ucumCode "dm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DMK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Decimeter"@en-US ; + rdfs:label "Square Decimetre"@en . + +unit:DeciM3 + a qudt:Unit ; + dcterms:description "0.1-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA414" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA414"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "dm³" ; + qudt:ucumCode "dm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DMQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter"@en-US ; + rdfs:label "Cubic Decimetre"@en . + +unit:DeciM3-PER-DAY + a qudt:Unit ; + dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001157407407 ; + qudt:conversionMultiplierSN 1.157407407E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA415" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA415"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time day" ; + qudt:symbol "dm³/d" ; + qudt:ucumCode "dm3.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J90" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Day"@en-US ; + rdfs:label "Cubic Decimetre per Day"@en . + +unit:DeciM3-PER-HR + a qudt:Unit ; + dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777778 ; + qudt:conversionMultiplierSN 2.777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA416" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA416"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour" ; + qudt:symbol "dm³/h" ; + qudt:ucumCode "dm3.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E92" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Hour"@en-US ; + rdfs:label "Cubic Decimetre per Hour"@en . + +unit:DeciM3-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.001-fold of the power of the SI base unit meter by exponent 3 divided by the SI based unit kilogramm" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB409" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB409"^^xsd:anyURI ; + qudt:symbol "dm³/kg" ; + qudt:ucumCode "dm3.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N28" ; + rdfs:isDefinedBy ; + rdfs:label "cubic decimetre per kilogram" . + +unit:DeciM3-PER-M3 + a qudt:Unit ; + dcterms:description "volume ratio consisting of the 0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA417" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA417"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "dm³/m³" ; + qudt:ucumCode "dm3.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J91" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Cubic Meter"@en-US ; + rdfs:label "Cubic Decimetre per Cubic Metre"@en . + +unit:DeciM3-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001666667 ; + qudt:conversionMultiplierSN 1.666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA418" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA418"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time minute" ; + qudt:symbol "dm³/min" ; + qudt:ucumCode "dm3.min-3"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/min3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J92" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Minute"@en-US ; + rdfs:label "Cubic Decimetre per Minute"@en . + +unit:DeciM3-PER-MOL + a qudt:Unit ; + dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:MolarRefractivity ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:iec61360Code "0112/2///62720#UAA419" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA419"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol" ; + qudt:symbol "dm³/mol" ; + qudt:ucumCode "dm3.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A37" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Mole"@en-US ; + rdfs:label "Cubic Decimetre per Mole"@en . + +unit:DeciM3-PER-SEC + a qudt:Unit ; + dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA420" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA420"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time second" ; + qudt:symbol "dm³/s" ; + qudt:ucumCode "dm3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "dm3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J93" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Decimeter per Second"@en-US ; + rdfs:label "Cubic Decimetre per Second"@en . + +unit:DeciN + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:N ; + qudt:symbol "dN" ; + rdfs:isDefinedBy ; + rdfs:label "DeciNewton"@en . + +unit:DeciN-M + a qudt:Unit ; + dcterms:description "0.1-fold of the product of the derived SI unit joule and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAB084" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB084"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the product of the derived SI unit joule and the SI base unit metre" ; + qudt:symbol "dN·m" ; + qudt:ucumCode "dN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DN" ; + rdfs:isDefinedBy ; + rdfs:label "Decinewton Meter"@en-US ; + rdfs:label "Decinewton Metre"@en . + +unit:DeciS + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:S ; + qudt:symbol "dS" ; + rdfs:isDefinedBy ; + rdfs:label "DeciSiemens"@en . + +unit:DeciS-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Decisiemens per metre."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciS ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:plainTextDescription "Decisiemens per metre." ; + qudt:symbol "dS/m" ; + qudt:ucumCode "dS.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "dS/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "decisiemens per meter"@en-US ; + rdfs:label "decisiemens per metre"@en . + +unit:DeciSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Decisecond\" is an SI unit for 'Time' expressed as $ds$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "https://simple.wikipedia.org/w/index.php?title=Decisecond&oldid=8898314"^^xsd:anyURI ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:SEC ; + qudt:symbol "ds" ; + qudt:ucumCode "ds"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C26" ; + rdfs:isDefinedBy ; + rdfs:label "decisecond"@en . + +unit:DeciTONNE + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:exactMatch unit:DeciTON_Metric ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:TONNE ; + qudt:symbol "dt" ; + qudt:uneceCommonCode "DTN" ; + rdfs:isDefinedBy ; + rdfs:label "DeciTonne"@en . + +unit:DeciTON_Metric + a qudt:Unit ; + dcterms:description "100-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:exactMatch unit:DeciTONNE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB078" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB078"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Deci ; + qudt:scalingOf unit:TON_Metric ; + qudt:symbol "dt" ; + qudt:ucumCode "dt"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DTN" ; + rdfs:isDefinedBy ; + rdfs:label "Metric DeciTON"@en . + +unit:Denier + a qudt:Unit ; + dcterms:description "Denier or den is a unit of measure for the linear mass density of fibers. It is defined as the mass in grams per 9,000 meters. In the International System of Units the tex is used instead (see below). The denier is based on a natural standard: a single strand of silk is approximately one denier. A 9,000-meter strand of silk weighs about one gram. The term denier is from the French denier, a coin of small value (worth 1/12 of a sou). Applied to yarn, a denier was held to be equal in weight to 1/24 of an ounce. The term microdenier is used to describe filaments that weigh less than one gram per 9,000 meter length."^^rdf:HTML ; + dcterms:isReplacedBy unit:DENIER ; + qudt:conversionMultiplier 0.00000011 ; + qudt:conversionMultiplierSN 1.1E-7 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Denier"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB244" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Denier?oldid=463382291"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Units_of_textile_measurement#Denier"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB244"^^xsd:anyURI ; + qudt:scalingOf unit:GM-PER-MilliM ; + qudt:symbol "D" ; + qudt:ucumCode "[den]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A49" ; + rdfs:isDefinedBy ; + rdfs:label "Denier"@en . + +unit:E + a qudt:Unit ; + dcterms:description """$\\textit{Elementary Charge}$, usually denoted as $e$, is the electric charge carried by a single proton, + or equivalently, the negation (opposite) of the electric charge carried by a single electron. + This elementary charge is a fundamental physical constant. + To avoid confusion over its sign, e is sometimes called the elementary positive charge. + This charge has a measured value of approximately $1.602176634 \\times 10^{-19} coulombs$. + In the cgs system, $e$ is $4.80320471257026372 \\times 10^{-10} statcoulombs$. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:exactMatch unit:ElementaryCharge ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:scalingOf unit:A-SEC ; + qudt:symbol "e" ; + qudt:ucumCode "[e]"^^qudt:UCUMcs ; + qudt:udunitsCode "e" ; + rdfs:isDefinedBy ; + rdfs:label "Elementary Charge"@en . + +unit:ENZ + a qudt:Unit ; + dcterms:description "unit to express the catalytic activity of a specified chemical redation" ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:iec61360Code "0112/2///62720#UAB600" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB600"^^xsd:anyURI ; + qudt:symbol "U" ; + rdfs:isDefinedBy ; + rdfs:label "enzyme unit" . + +unit:ENZ-PER-L + a qudt:Unit ; + dcterms:description "amount of enzyme units divided by litre" ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ENZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:iec61360Code "0112/2///62720#UAB601" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB601"^^xsd:anyURI ; + qudt:symbol "U/L" ; + rdfs:isDefinedBy ; + rdfs:label "enzyme units per litre" . + +unit:ERG + a qudt:Unit ; + dcterms:description "An erg is the unit of energy and mechanical work in the centimetre-gram-second (CGS) system of units, symbol 'erg'. Its name is derived from the Greek ergon, meaning 'work'. An erg is the amount of work done by a force of one dyne exerted for a distance of one centimeter. In the CGS base units, it is equal to one gram centimeter-squared per second-squared ($g \\cdot cm^2/s^2$). It is thus equal to $10^{-7}$ joules or 100 nanojoules in SI units. $1 erg = 10^{-7} J = 100 nJ$, $1 erg = 624.15 GeV = 6.2415 \\times 10^{11} eV$, $1 erg = 1 dyne\\cdot cm = 1 g \\cdot cm^2/s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Erg"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA429" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Erg?oldid=490293432"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA429"^^xsd:anyURI ; + qudt:latexDefinition "$g\\cdot cm^{2}/s^{2}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:symbol "erg" ; + qudt:ucumCode "erg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A57" ; + rdfs:isDefinedBy ; + rdfs:label "Erg"@en . + +unit:ERG-CentiM2 + a qudt:Unit ; + dcterms:description "[CGS] unit of the atomic stopping power" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAB148" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB148"^^xsd:anyURI ; + qudt:symbol "erg·cm²" ; + qudt:ucumCode "erg.cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A66" ; + rdfs:isDefinedBy ; + rdfs:label "erg square centimetre" . + +unit:ERG-CentiM2-PER-GM + a qudt:Unit ; + dcterms:description "[CGS] unit of the mass stopping power" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:TotalMassStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAB149" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB149"^^xsd:anyURI ; + qudt:symbol "erg·cm²/g" ; + qudt:ucumCode "erg.cm2.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg.cm2/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A67" ; + rdfs:isDefinedBy ; + rdfs:label "erg square centimetre per gram" . + +unit:ERG-PER-CentiM + a qudt:Unit ; + dcterms:description "CGS unit of the length-related energy"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAB145" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB145"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the length-related energy" ; + qudt:symbol "erg/cm" ; + qudt:ucumCode "erg.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A58" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Centimeter"@en-US ; + rdfs:label "Erg per Centimetre"@en . + +unit:ERG-PER-CentiM2 + a qudt:Unit ; + dcterms:description "Derived CGS unit erg divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:plainTextDescription "Derived CGS unit erg divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "erg/cm²" ; + qudt:ucumCode "erg.cm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Square Centimeter"@en-US ; + rdfs:label "Erg per Square Centimetre"@en . + +unit:ERG-PER-CentiM2-SEC + a qudt:Unit ; + dcterms:description "\"Erg per Square Centimeter Second\" is a C.G.S System unit for 'Power Per Area' expressed as $erg/(cm^{2}-s)$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$erg/(cm^{2}-s)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB055" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB055"^^xsd:anyURI ; + qudt:symbol "erg/(cm²·s)" ; + qudt:ucumCode "erg.cm-2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg/(cm2.s)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A65" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Square Centimeter Second"@en-US ; + rdfs:label "Erg per Square Centimetre Second"@en . + +unit:ERG-PER-CentiM3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$erg-per-cm3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAB146" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB146"^^xsd:anyURI ; + qudt:symbol "erg/cm³" ; + qudt:ucumCode "erg.cm-3"^^qudt:UCUMcs ; + qudt:ucumCode "erg/cm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A60" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Cubic Centimeter"@en-US ; + rdfs:label "Erg per Cubic Centimetre"@en . + +unit:ERG-PER-GM + a qudt:Unit ; + dcterms:description "CGS unit of the mass-related energy"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB061" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB061"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the mass-related energy" ; + qudt:symbol "erg/g" ; + qudt:ucumCode "erg.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A61" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Gram"@en . + +unit:ERG-PER-GM-SEC + a qudt:Unit ; + dcterms:description "CGS unit of the mass-related power"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB147" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB147"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the mass-related power" ; + qudt:symbol "erg/(g·s)" ; + qudt:ucumCode "erg.g-1.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg/(g.s)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A62" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Gram Second"@en . + +unit:ERG-PER-SEC + a qudt:Unit ; + dcterms:description "\"Erg per Second\" is a C.G.S System unit for 'Power' expressed as $erg/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$erg/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA430" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA430"^^xsd:anyURI ; + qudt:latexDefinition "$g\\cdot cm^{2}/s^{3}$"^^qudt:LatexString ; + qudt:symbol "erg/s" ; + qudt:ucumCode "erg.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "erg/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A63" ; + rdfs:isDefinedBy ; + rdfs:label "Erg per Second"@en . + +unit:ERG-SEC + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ERG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:symbol "erg·s" ; + qudt:ucumCode "erg.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Erg Second"@en . + +unit:ERLANG + a qudt:Unit ; + dcterms:description "The \"Erlang\" is a dimensionless unit that is used in telephony as a measure of offered load or carried load on service-providing elements such as telephone circuits or telephone switching equipment."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Erlang_(unit)"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB340" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Erlang_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB340"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:symbol "E" ; + qudt:uneceCommonCode "Q11" ; + rdfs:isDefinedBy ; + rdfs:label "Erlang"@en . + +unit:EV + a qudt:Unit ; + dcterms:description "An electron volt (eV) is the energy that an electron gains when it travels through a potential of one volt. You can imagine that the electron starts at the negative plate of a parallel plate capacitor and accelerates to the positive plate, which is at one volt higher potential. Numerically $1 eV$ approximates $1.6x10^{-19} joules$, where $1 joule$ is $6.2x10^{18} eV$. For example, it would take $6.2x10^{20} eV/sec$ to light a 100 watt light bulb."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Electron_volt"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA425" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_volt?oldid=344021738"^^xsd:anyURI ; + qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA425"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:siExactMatch si-unit:electronvolt ; + qudt:symbol "eV" ; + qudt:ucumCode "eV"^^qudt:UCUMcs ; + qudt:udunitsCode "eV" ; + qudt:uneceCommonCode "A53" ; + rdfs:isDefinedBy ; + rdfs:label "Electron Volt"@en . + +unit:EV-M2 + a qudt:Unit ; + dcterms:description "product of the unit electronvolt and the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 0.0000000000000000001602176487 ; + qudt:conversionMultiplierSN 1.602176487E-19 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TotalAtomicStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAA427" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA427"^^xsd:anyURI ; + qudt:symbol "eV·m²" ; + qudt:ucumCode "eV.m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A55" ; + rdfs:isDefinedBy ; + rdfs:label "electronvolt square metre" . + +unit:EV-M2-PER-KiloGM + a qudt:Unit ; + dcterms:description "product of the unit electronvolt and the power of the SI base unit metre with the exponent 2 divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 0.0000000000000000001602176487 ; + qudt:conversionMultiplierSN 1.602176487E-19 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TotalMassStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAA428" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA428"^^xsd:anyURI ; + qudt:symbol "eV·m²/kg" ; + qudt:ucumCode "eV.m2.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "eV.m2/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A56" ; + rdfs:isDefinedBy ; + rdfs:label "electronvolt square metre per kilogram" . + +unit:EV-PER-ANGSTROM + a qudt:Unit ; + dcterms:description "unit electronvolt divided by the unit angstrom"^^rdf:HTML ; + qudt:conversionMultiplier 0.000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-9 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ANGSTROM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ; + qudt:latexSymbol "$ev/\\AA$"^^qudt:LatexString ; + qudt:plainTextDescription "unit electronvolt divided by the unit angstrom" ; + qudt:symbol "eV/Å" ; + qudt:ucumCode "eV.Ao-1"^^qudt:UCUMcs ; + qudt:ucumCode "eV/Ao"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Electronvolt per Angstrom"@en . + +unit:EV-PER-K + a qudt:Unit ; + dcterms:description "$\\textit{Electron Volt per Kelvin}$ is a unit for 'Heat Capacity' expressed as $ev/K$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:expression "$ev/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:symbol "eV/K" ; + qudt:ucumCode "eV.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "eV/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Electron Volt per Kelvin"@en . + +unit:EV-PER-M + a qudt:Unit ; + dcterms:description "unit electronvolt divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAA426" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA426"^^xsd:anyURI ; + qudt:plainTextDescription "unit electronvolt divided by the SI base unit metre" ; + qudt:symbol "eV/m" ; + qudt:ucumCode "eV.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "eV/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A54" ; + rdfs:isDefinedBy ; + rdfs:label "Electronvolt per Meter"@en-US ; + rdfs:label "Electronvolt per Metre"@en . + +unit:EV-PER-T + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Electron Volt per Tesla}$ is a unit for $\\textit{Magnetic Dipole Moment}$ expressed as $eV T^{-1}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:expression "$eV T^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticAreaMoment ; + qudt:hasQuantityKind quantitykind:MagneticMoment ; + qudt:symbol "eV/T" ; + qudt:ucumCode "eV.T-1"^^qudt:UCUMcs ; + qudt:ucumCode "eV/T"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Electron Volt per Tesla"@en . + +unit:EV-SEC + a qudt:Unit ; + dcterms:description "\"Electron Volt Second\" is a unit for 'Angular Momentum' expressed as $eV s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:symbol "eV·s" ; + qudt:ucumCode "eV.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Electron Volt Second"@en . + +unit:E_h + a qudt:Unit ; + dcterms:description """

The $\\textit{Hartree}$ (symbol: $E_h$ or $Ha$), also known as the $\\text{Hartree\\,Energy}$, is the atomic unit of energy. The hartree energy is equal to the absolute value of the electric potential energy of the hydrogen atom in its ground state. The energy of the electron in an H-atom in its ground state is $-E_H$, where $E_H= 2 R_\\infty \\cdot hc_0$. The 2006 CODATA recommended value was $E_H = 4.35974394(22) \\times 10^{-18} J = 27.21138386(68) eV$.

+
Definition:
+
$E_H= \\frac{e^2}{4\\pi \\epsilon_0 a_0 }$
+where, $e$ is the elementary charge, $\\epsilon_0$ is the electric constant, and $a_0$ is the Bohr radius.'
"""^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000000000000435974394 ; + qudt:conversionMultiplierSN 4.35974394E-18 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hartree"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hartree?oldid=489318053"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "Ha" ; + rdfs:isDefinedBy ; + rdfs:label "Hartree"@en . + +unit:EarthMass + a qudt:Unit ; + dcterms:description "Earth mass ($M_{\\oplus}$) is the unit of mass equal to that of the Earth. In SI Units, $1 M_{\\oplus} = 5.9722 \\times 10^{24} kg$. Earth mass is often used to describe masses of rocky terrestrial planets. The four terrestrial planets of the Solar System, Mercury, Venus, Earth, and Mars, have masses of 0.055, 0.815, 1.000, and 0.107 Earth masses respectively."^^qudt:LatexString ; + qudt:conversionMultiplier 5972190000000000000000000.0 ; + qudt:conversionMultiplierSN 5.97219E24 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Earth_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Earth_mass?oldid=495457885"^^xsd:anyURI ; + qudt:latexDefinition """One Earth mass can be converted to related units: + +81.3 Lunar mass (ML) +0.00315 Jupiter mass (MJ) (Jupiter has 317.83 Earth masses)[1] +0.0105 Saturn mass (Saturn has 95.16 Earth masses)[3] +0.0583 Neptune mass (Neptune has 17.147 Earth masses)[4] +0.000 003 003 Solar mass ($M_{\\odot}$) (The Sun has 332946 Earth masses)"""^^qudt:LatexString ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "M⊕" ; + rdfs:isDefinedBy ; + rdfs:label "Earth mass"@en . + +unit:ElementaryCharge + a qudt:Unit ; + dcterms:description "$\\textit{Elementary Charge}$, usually denoted as $e$, is the electric charge carried by a single proton, or equivalently, the negation (opposite) of the electric charge carried by a single electron. This elementary charge is a fundamental physical constant. To avoid confusion over its sign, e is sometimes called the elementary positive charge. This charge has a measured value of approximately $1.602176634 \\times 10^{-19} coulombs$. In the cgs system, $e$ is $4.80320471257026372 \\times 10^{-10} statcoulombs$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-19 ; + qudt:exactMatch unit:E ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:scalingOf unit:C ; + qudt:symbol "e" ; + qudt:ucumCode "[e]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Elementary Charge"@en . + +unit:ExaBIT + a qudt:Unit ; + qudt:conversionMultiplier 693147180559945309.41723212145818 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:BIT ; + rdfs:isDefinedBy ; + rdfs:label "ExaBIT" . + +unit:ExaBIT-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000,000-fold of the unit bit divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E18 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExaBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA139" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA139"^^xsd:anyURI ; + qudt:symbol "Ebit/s" ; + qudt:uneceCommonCode "E58" ; + rdfs:isDefinedBy ; + rdfs:label "exabit per second" . + +unit:ExaBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The exabyte is a multiple of the unit byte for digital information. The prefix exa means 10^18 in the International System of Units (SI), so ExaByte is 10^18 Bytes."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545177444479562475.3378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E18 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Exabyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "EB" ; + qudt:ucumCode "EBy"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ExaByte"@en . + +unit:ExaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "An ExaCoulomb is $10^{18} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E18 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:C ; + qudt:symbol "EC" ; + qudt:ucumCode "EC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ExaCoulomb"@en . + +unit:ExaJ + a qudt:Unit ; + dcterms:description "1 000 000 000 000 000 000-fold of the derived SI unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E18 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB122" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB122"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000,000,000-fold of the derived SI unit joule" ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:J ; + qudt:symbol "EJ" ; + qudt:ucumCode "EJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A68" ; + rdfs:isDefinedBy ; + rdfs:label "Exajoule"@en . + +unit:ExaJ-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000,000-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E18 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExaJ ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB515" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB515"^^xsd:anyURI ; + qudt:symbol "EJ/s" ; + qudt:ucumCode "EJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "EJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "exajoule per second" . + +unit:ExaV + a qudt:Unit ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:V ; + rdfs:isDefinedBy ; + rdfs:label "ExaV" . + +unit:ExaV-A + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:ExaVA ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExaV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB537" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB537"^^xsd:anyURI ; + qudt:symbol "EV·A" ; + rdfs:isDefinedBy ; + rdfs:label "exavolt ampere" . + +unit:ExaVA + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB537" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB537"^^xsd:anyURI ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:VA ; + qudt:symbol "EVA" ; + rdfs:isDefinedBy ; + rdfs:label "exavolt ampere" . + +unit:ExaW + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000,000-fold of the unit watt" ; + qudt:conversionMultiplier 1000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E18 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB507" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB507"^^xsd:anyURI ; + qudt:prefix prefix:Exa ; + qudt:scalingOf unit:W ; + qudt:symbol "EW" ; + rdfs:isDefinedBy ; + rdfs:label "exawatt" . + +unit:ExbiBIT + a qudt:Unit ; + qudt:conversionMultiplier 105997109765220669.31955729727572719389968124346368 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:prefix prefix:Exbi ; + qudt:scalingOf unit:BIT ; + rdfs:isDefinedBy ; + rdfs:label "ExbiBIT" . + +unit:ExbiBIT-PER-M + a qudt:Unit ; + dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 1152921504606846980.0 ; + qudt:conversionMultiplierSN 1.15292150460684698E18 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExbiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA140" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA140"^^xsd:anyURI ; + qudt:symbol "Eibit/m" ; + qudt:uneceCommonCode "E65" ; + rdfs:isDefinedBy ; + rdfs:label "exbibit per metre" . + +unit:ExbiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 1152921504606846980.0 ; + qudt:conversionMultiplierSN 1.15292150460684698E18 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExbiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA141" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA141"^^xsd:anyURI ; + qudt:symbol "Eibit/m²" ; + qudt:uneceCommonCode "E66" ; + rdfs:isDefinedBy ; + rdfs:label "exbibit per square metre" . + +unit:ExbiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 1152921504606846980.0 ; + qudt:conversionMultiplierSN 1.15292150460684698E18 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ExbiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA142" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA142"^^xsd:anyURI ; + qudt:symbol "Eibit/m³" ; + qudt:uneceCommonCode "E67" ; + rdfs:isDefinedBy ; + rdfs:label "exbibit per cubic metre" . + +unit:ExbiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The exbibyte is a multiple of the unit byte for digital information. The prefix exbi means 1024^6"^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 847976878121765354.5564583782058114 ; + qudt:conversionMultiplierSN 8.479768781217653545564583782058114E17 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Exbibyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA143" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA143"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Exbi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "EiB" ; + qudt:uneceCommonCode "E59" ; + rdfs:isDefinedBy ; + rdfs:label "ExbiByte"@en . + +unit:F + a qudt:Unit ; + dcterms:description "\"Faraday\" is a unit for 'Electric Charge' expressed as $F$."^^qudt:LatexString ; + qudt:conversionMultiplier 96485.3399 ; + qudt:conversionMultiplierSN 9.64853399E4 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:omUnit ; + qudt:scalingOf unit:C ; + qudt:symbol "F" ; + rdfs:isDefinedBy ; + rdfs:label "Faraday"@en . + +unit:FA + a qudt:Unit ; + dcterms:description "\"Fractional area\" is a unit for 'Solid Angle' expressed as $fa$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 12.5663706 ; + qudt:conversionMultiplierSN 1.25663706E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SolidAngle ; + qudt:symbol "fa" ; + rdfs:isDefinedBy ; + rdfs:label "Fractional area"@en . + +unit:FARAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of electric capacitance. Very early in the study of electricity scientists discovered that a pair of conductors separated by an insulator can store a much larger charge than an isolated conductor can store. The better the insulator, the larger the charge that the conductors can hold. This property of a circuit is called capacitance, and it is measured in farads. One farad is defined as the ability to store one coulomb of charge per volt of potential difference between the two conductors. This is a natural definition, but the unit it defines is very large. In practical circuits, capacitance is often measured in microfarads, nanofarads, or sometimes even in picofarads (10-12 farad, or trillionths of a farad). The unit is named for the British physicist Michael Faraday (1791-1867), who was known for his work in electricity and electrochemistry."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA144" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA144"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:farad ; + qudt:siUnitsExpression "C/V" ; + qudt:symbol "F" ; + qudt:ucumCode "F"^^qudt:UCUMcs ; + qudt:udunitsCode "F" ; + qudt:uneceCommonCode "FAR" ; + rdfs:isDefinedBy ; + rdfs:label "Farad"@de ; + rdfs:label "farad"@cs ; + rdfs:label "farad"@en ; + rdfs:label "farad"@fr ; + rdfs:label "farad"@hu ; + rdfs:label "farad"@it ; + rdfs:label "farad"@ms ; + rdfs:label "farad"@pl ; + rdfs:label "farad"@pt ; + rdfs:label "farad"@ro ; + rdfs:label "farad"@sl ; + rdfs:label "farad"@tr ; + rdfs:label "faradio"@es ; + rdfs:label "faradium"@la ; + rdfs:label "φαράντ"@el ; + rdfs:label "фарад"@bg ; + rdfs:label "фарада"@ru ; + rdfs:label "פאראד"@he ; + rdfs:label "فاراد"@ar ; + rdfs:label "فاراد"@fa ; + rdfs:label "फैराड"@hi ; + rdfs:label "ファラド"@ja ; + rdfs:label "法拉"@zh . + +unit:FARAD-PER-KiloM + a qudt:Unit ; + dcterms:description "SI derived unit farad divided by the 1 000-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FARAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA145" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA145"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit farad divided by the 1 000-fold of the SI base unit metre" ; + qudt:symbol "F/km" ; + qudt:ucumCode "F.km-1"^^qudt:UCUMcs ; + qudt:ucumCode "F/km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H33" ; + rdfs:isDefinedBy ; + rdfs:label "Farad per Kilometer"@en-US ; + rdfs:label "Farad per Kilometre"@en . + +unit:FARAD-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Farad Per Meter ($F/m$) is a unit in the category of Electric permittivity. It is also known as farad/meter. This unit is commonly used in the SI unit system. Farad Per Meter has a dimension of M-1L-3T4I2 where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$F/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FARAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA146" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA146"^^xsd:anyURI ; + qudt:symbol "F/m" ; + qudt:ucumCode "F.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "F/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A69" ; + rdfs:isDefinedBy ; + rdfs:label "Farad je Meter"@de ; + rdfs:label "Farad per Meter"@en-US ; + rdfs:label "farad al metro"@it ; + rdfs:label "farad bölü metre"@tr ; + rdfs:label "farad na meter"@sl ; + rdfs:label "farad na metr"@pl ; + rdfs:label "farad par mètre"@fr ; + rdfs:label "farad pe metru"@ro ; + rdfs:label "farad per meter"@ms ; + rdfs:label "farad per metre"@en ; + rdfs:label "farad por metro"@pt ; + rdfs:label "faradio por metro"@es ; + rdfs:label "faradů na metr"@cs ; + rdfs:label "фарада на метр"@ru ; + rdfs:label "فاراد بر متر"@fa ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "प्रति मीटर फैराड"@hi ; + rdfs:label "ファラド毎メートル"@ja ; + rdfs:label "法拉每米"@zh . + +unit:FARAD_Ab + a qudt:Unit ; + dcterms:description "An abfarad is an obsolete electromagnetic (CGS) unit of capacitance equal to $10^{9}$ farads (1,000,000,000 F or 1 GF). The absolute farad of the e.m.u. system, for a steady current identically $abC/abV$, and identically reciprocal abdaraf. 1 abF = 1 GF."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abfarad"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abfarad?oldid=407124018"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-13"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "abF" ; + qudt:ucumCode "GF"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abfarad"@en . + +unit:FARAD_Ab-PER-CentiM + a qudt:Unit ; + dcterms:description "The absolute dielectric constant of free space is defined as the ratio of displacement to the electric field intensity. The unit of measure is the abfarad per centimeter, a derived CGS unit."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 100000000000.0 ; + qudt:conversionMultiplierSN 1.0E11 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:expression "$abf-per-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FARAD_Ab ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:symbol "abF/cm" ; + qudt:ucumCode "GF.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "GF/cm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abfarad per Centimeter"@en-US ; + rdfs:label "Abfarad per Centimetre"@en . + +unit:FARAD_Stat + a qudt:Unit ; + dcterms:description """ + The $\\text{Statfarad (statF)}$ is a unit in the category of Electric capacitance. + It is also known as $statfarads$. + This unit is commonly used in the cgs unit system. + $Statfarad$ has a dimension of $M^{-1}L^{-2}T^4I^2$ where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. + It can be converted to the corresponding standard SI unit F by multiplying its value by a factor of 1.11265E-012. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.000000000000000001112650056053618432174089964848 ; + qudt:conversionMultiplierSN 1.112650056053618432174089964848E-18 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_capacitance--statfarad.cfm"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "statF" ; + rdfs:isDefinedBy ; + rdfs:label "Statfarad"@en . + +unit:FATH + a qudt:Unit ; + dcterms:description "A fathom = 1.8288 meters, is a unit of length in the imperial and the U.S. customary systems, used especially for measuring the depth of water. There are two yards in an imperial or U.S. fathom. Originally based on the distance between the man's outstretched arms, the size of a fathom has varied slightly depending on whether it was defined as a thousandth of an (Admiralty) nautical mile or as a multiple of the imperial yard. Abbreviations: f, fath, fm, fth, fthm."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.8288 ; + qudt:conversionMultiplierSN 1.8288E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Fathom"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB068" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fathom?oldid=493265429"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB068"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "fathom" ; + qudt:ucumCode "[fth_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "AK" ; + rdfs:isDefinedBy ; + rdfs:label "Fathom"@en . + +unit:FBM + a qudt:Unit ; + dcterms:description "The board-foot is a specialized unit of measure for the volume of lumber in the United States and Canada. It is the volume of a one-foot length of a board one foot wide and one inch thick. Board-foot can be abbreviated FBM (for 'foot, board measure'), BDFT, or BF. Thousand board-feet can be abbreviated as MFBM, MBFT or MBF. "^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00236 ; + qudt:conversionMultiplierSN 2.36E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:scalingOf unit:M3 ; + qudt:symbol "BDFT" ; + qudt:ucumCode "[bf_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "BFT" ; + rdfs:isDefinedBy ; + rdfs:label "Board Foot"@en . + +unit:FC + a qudt:Unit ; + dcterms:description "\"Foot Candle\" is a unit for 'Luminous Flux Per Area' expressed as $fc$."^^qudt:LatexString ; + qudt:conversionMultiplier 10.764 ; + qudt:conversionMultiplierSN 1.0764E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Foot-candle"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ; + qudt:iec61360Code "0112/2///62720#UAB256" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Foot-candle?oldid=475579268"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB256"^^xsd:anyURI ; + qudt:scalingOf unit:CD-PER-M2 ; + qudt:symbol "fc" ; + qudt:uneceCommonCode "P27" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Candle"@en . + +unit:FLIGHT + a qudt:Unit ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:symbol "flight" ; + rdfs:isDefinedBy ; + rdfs:label "Flight"@en . + +unit:FM + a qudt:Unit ; + dcterms:description "The $\\textit{fermi}$, or $\\textit{femtometer}$ (other spelling $femtometre$, symbol $fm$) is an SI unit of length equal to $10^{-15} metre$. This distance is often encountered in nuclear physics as a characteristic of this scale. The symbol for the fermi is also $fm$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:exactMatch unit:FemtoM ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_(unit)"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M ; + qudt:symbol "fm" ; + qudt:uneceCommonCode "A71" ; + rdfs:isDefinedBy ; + rdfs:label "fermi"@en . + +unit:FR + a qudt:Unit ; + dcterms:description "\"Franklin\" is a unit for 'Electric Charge' expressed as $Fr$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00000000033356409519815204957557671447492 ; + qudt:conversionMultiplierSN 3.3356409519815204957557671447492E-10 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Franklin"^^xsd:anyURI ; + qudt:exactMatch unit:C_Stat ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAB212" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Franklin?oldid=495090654"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB212"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A-SEC ; + qudt:symbol "Fr" ; + qudt:uneceCommonCode "N94" ; + rdfs:isDefinedBy ; + rdfs:label "Franklin"@en . + +unit:FRACTION + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "Fraction is a unit for 'Dimensionless Ratio' expressed as the value of the ratio itself."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:hasQuantityKind quantitykind:DutyCycle ; + qudt:hasQuantityKind quantitykind:OpeningRatio ; + qudt:hasQuantityKind quantitykind:Reflectance ; + qudt:hasQuantityKind quantitykind:ServiceFactor ; + qudt:plainTextDescription "Fraction is a unit for 'Dimensionless Ratio' expressed as the value of the ratio itself." ; + qudt:symbol "÷" ; + qudt:ucumCode "{fraction}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Fraction"@en . + +unit:FRAME-PER-SEC + a qudt:ContextualUnit, qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Frame per Second\" is a unit for 'Video Frame Rate' expressed as $fps$."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FRAME ; + ] ; + qudt:hasQuantityKind quantitykind:VideoFrameRate ; + qudt:symbol "fps" ; + qudt:ucumCode "/s{frame}"^^qudt:UCUMcs ; + qudt:ucumCode "s-1{frame}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Frame per Second"@en ; + skos:broader unit:HZ . + +unit:FT + a qudt:Unit ; + dcterms:description "A foot is a unit of length defined as being 0.3048 m exactly and used in the imperial system of units and United States customary units. It is subdivided into 12 inches. The foot is still officially used in Canada and still commonly used in the United Kingdom, although the latter has partially metricated its units of measurement. "^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.3048 ; + qudt:conversionMultiplierSN 3.048E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Foot_%28length%29"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 12.0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA440" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA440"^^xsd:anyURI ; + qudt:symbol "ft" ; + qudt:ucumCode "[ft_i]"^^qudt:UCUMcs ; + qudt:udunitsCode "ft" ; + qudt:uneceCommonCode "FOT" ; + rdfs:isDefinedBy ; + rdfs:label "Foot"@en . + +unit:FT-HR-PER-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour" ; + qudt:conversionMultiplier 241367.856773623047497959785222025991904 ; + qudt:conversionMultiplierSN 2.41367856773623047497959785222025991904E5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD854" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD854"^^xsd:anyURI ; + qudt:symbol "ft·h/gal{UK}" ; + qudt:ucumCode "[ft_i].h.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot hour per gallon (UK)" . + +unit:FT-HR-PER-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour" ; + qudt:conversionMultiplier 289870.709611549093228056585983301828 ; + qudt:conversionMultiplierSN 2.89870709611549093228056585983301828E5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD850" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD850"^^xsd:anyURI ; + qudt:symbol "ft·h/gal{US}" ; + qudt:ucumCode "[ft_i].h.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot hour per gallon (US)" . + +unit:FT-HR-PER-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour" ; + qudt:conversionMultiplier 66960133.9202678405356810713621427250112 ; + qudt:conversionMultiplierSN 6.69601339202678405356810713621427250112E7 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD846" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD846"^^xsd:anyURI ; + qudt:symbol "ft·h/in³" ; + qudt:ucumCode "[ft_i].h.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot hour per cubic inch" . + +unit:FT-LB_F + a qudt:Unit ; + dcterms:description "\"Foot Pound Force\" is an Imperial unit for 'Energy And Work' expressed as $ft-lbf$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.35581807 ; + qudt:conversionMultiplierSN 1.35581807E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Foot-pound_force"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA443" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Foot-pound_force?oldid=453269257"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA443"^^xsd:anyURI ; + qudt:symbol "ft·lbf" ; + qudt:ucumCode "[ft_i].[lbf_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "85" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force"@en . + +unit:FT-LB_F-PER-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Foot Pound per Square Foot\" is an Imperial unit for 'Energy Per Area' expressed as $ft-lbf/ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 14.5939042 ; + qudt:conversionMultiplierSN 1.45939042E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:symbol "ft·lbf/ft²" ; + qudt:ucumCode "[ft_i].[lbf_av].[sft_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound per Square Foot"@en . + +unit:FT-LB_F-PER-FT2-SEC + a qudt:Unit ; + dcterms:description "\"Foot Pound Force per Square Foot Second\" is an Imperial unit for 'Power Per Area' expressed as $ft \\cdot lbf/(ft^2 \\cdot s)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 14.5939042 ; + qudt:conversionMultiplierSN 1.45939042E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf/ft^2s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:latexSymbol "$ft \\cdot lbf/(ft^2 \\cdot s)$"^^qudt:LatexString ; + qudt:symbol "ft·lbf/(ft²·s)" ; + qudt:ucumCode "[ft_i].[lbf_av].[sft_i]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force per Square Foot Second"@en . + +unit:FT-LB_F-PER-HR + a qudt:Unit ; + dcterms:description "\"Foot Pound Force per Hour\" is an Imperial unit for 'Power' expressed as $ft-lbf/h$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0003766161136565500904 ; + qudt:conversionMultiplierSN 3.766161136565500904E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA444" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA444"^^xsd:anyURI ; + qudt:symbol "ft·lbf/h" ; + qudt:ucumCode "[ft_i].[lbf_av].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K15" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force per Hour"@en . + +unit:FT-LB_F-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Foot Pound Force per Square Meter\" is a unit for 'Energy Per Area' expressed as $ft-lbf/m^{2}$."^^qudt:LatexString ; + qudt:conversionMultiplier 1.35581800916358032544 ; + qudt:conversionMultiplierSN 1.35581800916358032544E0 ; + qudt:expression "$ft-lbf/m^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:symbol "ft·lbf/m²" ; + qudt:ucumCode "[ft_i].[lbf_av].m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force per Square Meter"@en-US ; + rdfs:label "Foot Pound Force per Square Metre"@en . + +unit:FT-LB_F-PER-MIN + a qudt:Unit ; + dcterms:description "\"Foot Pound Force per Minute\" is an Imperial unit for 'Power' expressed as $ft-lbf/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0225969678 ; + qudt:conversionMultiplierSN 2.25969678E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA445" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA445"^^xsd:anyURI ; + qudt:symbol "ft·lbf/min" ; + qudt:ucumCode "[ft_i].[lbf_av].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K16" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force per Minute"@en . + +unit:FT-LB_F-PER-SEC + a qudt:Unit ; + dcterms:description "\"Foot Pound Force per Second\" is an Imperial unit for 'Power' expressed as $ft-lbf/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.35581807 ; + qudt:conversionMultiplierSN 1.35581807E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-lbf/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA446" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA446"^^xsd:anyURI ; + qudt:symbol "ft·lbf/s" ; + qudt:ucumCode "[ft_i].[lbf_av].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A74" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force per Second"@en . + +unit:FT-LB_F-SEC + a qudt:Unit ; + dcterms:description "\"Foot Pound Force Second\" is a unit for 'Angular Momentum' expressed as $lbf / s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.35581800916358032544 ; + qudt:conversionMultiplierSN 1.35581800916358032544E0 ; + qudt:expression "$lbf / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:symbol "ft·lbf·s" ; + qudt:ucumCode "[ft_i].[lbf_av].s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Foot Pound Force Second"@en . + +unit:FT-PDL + a qudt:Unit ; + dcterms:description "\"Foot Poundal\" is an Imperial unit for 'Energy And Work' expressed as $ft-pdl$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0421401100938048 ; + qudt:conversionMultiplierSN 4.21401100938048E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB220" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB220"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "ft·pdl" ; + qudt:ucumCode "[ft_i].[lb_av].[ft_i].s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N46" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Poundal"@en . + +unit:FT-PER-DAY + a qudt:Unit ; + dcterms:description "\"Foot per Day\" is an Imperial unit for 'Linear Velocity' expressed as $ft/d$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000352777777777778 ; + qudt:conversionMultiplierSN 3.52777777777778E-6 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft/d$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "ft/d" ; + qudt:ucumCode "[ft_i].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Day"@en . + +unit:FT-PER-DEG_F + a qudt:Unit ; + dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.54864 ; + qudt:conversionMultiplierSN 5.4864E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA441" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA441"^^xsd:anyURI ; + qudt:plainTextDescription "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ; + qudt:symbol "ft/°F" ; + qudt:ucumCode "[ft_i].[lbf_av].[degF]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K13" ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Degree Fahrenheit"@en . + +unit:FT-PER-HR + a qudt:Unit ; + dcterms:description "\"Foot per Hour\" is an Imperial unit for 'Linear Velocity' expressed as $ft/h$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00008466666666666667 ; + qudt:conversionMultiplierSN 8.466666666666667E-5 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA442" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA442"^^xsd:anyURI ; + qudt:symbol "ft/h" ; + qudt:ucumCode "[ft_i].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K14" ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Hour"@en . + +unit:FT-PER-MIN + a qudt:Unit ; + dcterms:description "\"Foot per Minute\" is an Imperial unit for 'Linear Velocity' expressed as $ft/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00508 ; + qudt:conversionMultiplierSN 5.08E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA448" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA448"^^xsd:anyURI ; + qudt:symbol "ft/min" ; + qudt:ucumCode "[ft_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FR" ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Minute"@en . + +unit:FT-PER-PSI + a qudt:Unit ; + dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force square inch)" ; + qudt:conversionMultiplier 0.00004420750047668715004148802456506335464 ; + qudt:conversionMultiplierSN 4.420750047668715004148802456506335464E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA447" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA447"^^xsd:anyURI ; + qudt:symbol "ft/psi" ; + qudt:ucumCode "[ft_i].[psi]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/[psi]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K17" ; + rdfs:isDefinedBy ; + rdfs:label "foot per psi" . + +unit:FT-PER-SEC + a qudt:Unit ; + dcterms:description "$\\textit{foot per second}$ (plural $\\textit{feet per second}$) is a unit of both speed (scalar) and velocity (vector quantity, which includes direction). It expresses the distance in feet ($ft$) traveled or displaced, divided by the time in seconds ($s$, or $sec$). The corresponding unit in the International System of Units (SI) is the $\\textit{metre per second}$. Abbreviations include $ft/s$, $ft/sec$ and $fps$, and the rarely used scientific notation $ft\\,s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.3048 ; + qudt:conversionMultiplierSN 3.048E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Foot_per_second"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA449" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Foot_per_second?oldid=491316573"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA449"^^xsd:anyURI ; + qudt:symbol "ft/s" ; + qudt:ucumCode "[ft_i].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FS" ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Second"@en . + +unit:FT-PER-SEC-DEG_F + a qudt:Unit ; + dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.5486399999999999561088000000000036576 ; + qudt:conversionMultiplierSN 5.486399999999999561088000000000036576E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA450" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA450"^^xsd:anyURI ; + qudt:symbol "ft/(s·°F)" ; + qudt:ucumCode "[ft_i].s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K18" ; + rdfs:isDefinedBy ; + rdfs:label "foot per second degree Fahrenheit" . + +unit:FT-PER-SEC-PSI + a qudt:Unit ; + dcterms:description "quotient of the unit foot according to the Anglo-American and the Imperial system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.00004420750047668715004148802456506335464 ; + qudt:conversionMultiplierSN 4.420750047668715004148802456506335464E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA451" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA451"^^xsd:anyURI ; + qudt:symbol "ft/(s·psi)" ; + qudt:ucumCode "[ft_i].s-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K19" ; + rdfs:isDefinedBy ; + rdfs:label "foot per second psi" . + +unit:FT-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Foot per Square Second}$ is an Imperial unit for $\\textit{Linear Acceleration}$ expressed as $ft/s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.3048 ; + qudt:conversionMultiplierSN 3.048E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft/s^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAA452" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA452"^^xsd:anyURI ; + qudt:symbol "ft/s²" ; + qudt:ucumCode "[ft_i].s-2"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A73" ; + rdfs:isDefinedBy ; + rdfs:label "Foot per Square Second"@en . + +unit:FT-SEC-PER-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second" ; + qudt:conversionMultiplier 67.04662688156195763832216256167388664 ; + qudt:conversionMultiplierSN 6.704662688156195763832216256167388664E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD855" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD855"^^xsd:anyURI ; + qudt:symbol "ft·s/gal{UK}" ; + qudt:ucumCode "[ft_i].s.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot second per gallon (UK)" . + +unit:FT-SEC-PER-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second" ; + qudt:conversionMultiplier 80.51964155876363700779349610647273 ; + qudt:conversionMultiplierSN 8.051964155876363700779349610647273E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD851" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD851"^^xsd:anyURI ; + qudt:symbol "ft·s/gal{US}" ; + qudt:ucumCode "[ft_i].s.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot second per gallon (US)" . + +unit:FT-SEC-PER-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second" ; + qudt:conversionMultiplier 18600.037200074400148800297600595201392 ; + qudt:conversionMultiplierSN 1.8600037200074400148800297600595201392E4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD847" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD847"^^xsd:anyURI ; + qudt:symbol "ft·s/in³" ; + qudt:ucumCode "[ft_i].s.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "foot second per cubic inch" . + +unit:FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The square foot (plural square feet; abbreviated $ft^2$ or $sq \\, ft$) is an imperial unit and U.S. customary unit of area, used mainly in the United States, Canada, United Kingdom, Hong Kong, Bangladesh, India, Pakistan and Afghanistan. It is defined as the area of a square with sides of 1 foot in length."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.09290304 ; + qudt:conversionMultiplierSN 9.290304E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA454" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA454"^^xsd:anyURI ; + qudt:symbol "ft²" ; + qudt:ucumCode "[ft_i]2"^^qudt:UCUMcs ; + qudt:ucumCode "[sft_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FTK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot"@en . + +unit:FT2-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Foot Degree Fahrenheit}$ is an Imperial unit for 'Area Temperature' expressed as $ft^{2}-degF$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.051612800000000004129024 ; + qudt:conversionMultiplierSN 5.1612800000000004129024E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTemperature ; + qudt:symbol "ft²·°F" ; + qudt:ucumCode "[sft_i].[degF]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot Degree Fahrenheit"@en . + +unit:FT2-HR-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Area Time Temperature' expressed as $ft^{2}-h-degF$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 185.8060800000000148644864 ; + qudt:conversionMultiplierSN 1.858060800000000148644864E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}-h-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTimeTemperature ; + qudt:symbol "ft²·h·°F" ; + qudt:ucumCode "[sft_i].h.[degF]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot Hour Degree Fahrenheit"@en . + +unit:FT2-HR-DEG_F-PER-BTU_IT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Foot Hour Degree Fahrenheit per BTU}$ is an Imperial unit for 'Thermal Insulance' expressed as $(degF-h-ft^{2})/Btu$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1761101836823058548197662335811061 ; + qudt:conversionMultiplierSN 1.761101836823058548197662335811061E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$sqft-h-degF/btu$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:symbol "ft²·h·°F/Btu{IT}" ; + qudt:ucumCode "[sft_i].h.[degF].[Btu_IT]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot Hour Degree Fahrenheit per BTU"@en . + +unit:FT2-PER-BTU_IT-IN + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00346673589 ; + qudt:conversionMultiplierSN 3.46673589E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft2-per-btu-in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "ft²/(Btu{IT}·in)" ; + qudt:ucumCode "[sft_i].[Btu_IT]-1.[in_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot per BTU Inch"@en . + +unit:FT2-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Foot per Hour}$ is an Imperial unit for $\\textit{Kinematic Viscosity}$ and $\\textit{Thermal Diffusivity}$ expressed as $ft^{2}/hr$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000258064 ; + qudt:conversionMultiplierSN 2.58064E-5 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:iec61360Code "0112/2///62720#UAB247" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB247"^^xsd:anyURI ; + qudt:symbol "ft²/h" ; + qudt:ucumCode "[sft_i].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M79" ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot per Hour"@en . + +unit:FT2-PER-SEC + a qudt:Unit ; + dcterms:description "\"Square Foot per Second\" is an Imperial unit for 'Kinematic Viscosity' expressed as $ft^{2}/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.09290304 ; + qudt:conversionMultiplierSN 9.290304E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:iec61360Code "0112/2///62720#UAA455" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA455"^^xsd:anyURI ; + qudt:symbol "ft²/s" ; + qudt:ucumCode "[sft_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "S3" ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot per Second"@en . + +unit:FT2-SEC-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Area Time Temperature' expressed as $ft^{2}\\cdot s\\cdot degF$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.051612800000000004129024 ; + qudt:conversionMultiplierSN 5.1612800000000004129024E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{2}-s-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTimeTemperature ; + qudt:symbol "ft²·s·°F" ; + qudt:ucumCode "[sft_i].s.[degF]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Foot Second Degree Fahrenheit"@en . + +unit:FT3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The cubic foot is an Imperial and US customary unit of volume, used in the United States and the United Kingdom. + It is defined as the volume of a cube with sides of one foot (0.3048 m) in length. + To calculate cubic feet multiply length X width X height. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.028316846592 ; + qudt:conversionMultiplierSN 2.8316846592E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA456" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA456"^^xsd:anyURI ; + qudt:symbol "ft³" ; + qudt:ucumCode "[cft_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FTQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot"@en . + +unit:FT3-PER-DAY + a qudt:Unit ; + dcterms:description "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000003277413 ; + qudt:conversionMultiplierSN 3.277413E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA458" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA458"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day" ; + qudt:symbol "ft³/d" ; + qudt:ucumCode "[cft_i].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K22" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Day"@en . + +unit:FT3-PER-DEG_F + a qudt:Unit ; + dcterms:description "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.05097033 ; + qudt:conversionMultiplierSN 5.097033E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA457" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA457"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit" ; + qudt:symbol "ft³/°F" ; + qudt:ucumCode "[cft_i].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K21" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Degree Fahrenheit"@en . + +unit:FT3-PER-HR + a qudt:Unit ; + dcterms:description "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000007865792 ; + qudt:conversionMultiplierSN 7.865792E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA459" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA459"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour" ; + qudt:symbol "ft³/h" ; + qudt:ucumCode "[cft_i].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2K" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Hour"@en . + +unit:FT3-PER-LB + a qudt:Unit ; + dcterms:description "power of the unit foot according to the Anglo-American and Imperial system of units by exponent 3 divided by the unit avoirdupois pound according to the avoirdupois unit system" ; + qudt:conversionMultiplier 0.06242796057614461195632545582722213 ; + qudt:conversionMultiplierSN 6.242796057614461195632545582722213E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB410" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB410"^^xsd:anyURI ; + qudt:symbol "ft³/lbm" ; + qudt:ucumCode "[ft_i]3.[lb_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N29" ; + rdfs:isDefinedBy ; + rdfs:label "cubic foot per pound" . + +unit:FT3-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Cubic Foot per Minute\" is an Imperial unit for 'Volume Per Unit Time' expressed as $ft^3/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0004719474432000001 ; + qudt:conversionMultiplierSN 4.719474432000001E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{3}/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA461" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA461"^^xsd:anyURI ; + qudt:symbol "ft³/min" ; + qudt:ucumCode "[cft_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[cft_i]/min"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]3.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]3/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2L" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Minute"@en . + +unit:FT3-PER-MIN-FT2 + a qudt:Unit ; + dcterms:description "unit of the volume flow rate according to the Anglio-American and imperial system of units cubic foot per minute related to the transfer area according to the Anglian American and Imperial system of units square foot"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00508 ; + qudt:conversionMultiplierSN 5.08E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:iec61360Code "0112/2///62720#UAB086" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB086"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume flow rate according to the Anglio-American and imperial system of units cubic foot per minute related to the transfer area according to the Anglian American and Imperial system of units square foot" ; + qudt:symbol "ft³/(min·ft²)" ; + qudt:ucumCode "[cft_i].min-1.[sft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "36" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Minute Square Foot"@en . + +unit:FT3-PER-PSI + a qudt:Unit ; + dcterms:description "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.0000041070111850856853677903636056890634386541056 ; + qudt:conversionMultiplierSN 4.1070111850856853677903636056890634386541056E-6 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA460" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA460"^^xsd:anyURI ; + qudt:symbol "ft³/psi" ; + qudt:ucumCode "[ft_i]3.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K23" ; + rdfs:isDefinedBy ; + rdfs:label "cubic foot per psi" . + +unit:FT3-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Cubic Foot per Second\" is an Imperial unit for $ \\textit{Volume Per Unit Time}$ expressed as $ft^3/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.028316846592000004 ; + qudt:conversionMultiplierSN 2.8316846592000004E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft^{3}/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA462" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA462"^^xsd:anyURI ; + qudt:symbol "ft³/s" ; + qudt:ucumCode "[cft_i].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[cft_i]/s"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ft_i]3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E17" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Foot per Second"@en . + +unit:FT4 + a qudt:Unit ; + dcterms:description "power of the unit foot according to the Anglo-American and Imperial system of units by exponent 4" ; + qudt:conversionMultiplier 0.0086309748412416 ; + qudt:conversionMultiplierSN 8.6309748412416E-3 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:iec61360Code "0112/2///62720#UAB209" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB209"^^xsd:anyURI ; + qudt:symbol "ft⁴" ; + qudt:uneceCommonCode "N27" ; + rdfs:isDefinedBy ; + rdfs:label "foot to the fourth power" . + +unit:FT_H2O + a qudt:Unit ; + dcterms:description "\"Foot of Water\" is a unit for 'Force Per Area' expressed as $ftH2O$."^^qudt:LatexString ; + qudt:conversionMultiplier 2989.067 ; + qudt:conversionMultiplierSN 2.989067E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA463" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA463"^^xsd:anyURI ; + qudt:scalingOf unit:PA ; + qudt:symbol "ftH₂0" ; + qudt:ucumCode "[ft_i'H2O]"^^qudt:UCUMcs ; + qudt:udunitsCode "ftH2O" ; + qudt:udunitsCode "fth2o" ; + qudt:uneceCommonCode "K24" ; + rdfs:isDefinedBy ; + rdfs:label "Foot of Water"@en . + +unit:FT_H2O_39dot2DEG_F + a qudt:Unit ; + dcterms:description "non SI-conform unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 ftH₂O is equivalent to the static pressure, which is generated by a head of water at a temperature 39.2°F with a height of 1 foot" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB237" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB237"^^xsd:anyURI ; + qudt:symbol "ftH₂O (39.2 °F)" ; + qudt:uneceCommonCode "N15" ; + rdfs:isDefinedBy ; + rdfs:label "foot of water (39.2 °F)" . + +unit:FT_HG + a qudt:Unit ; + dcterms:description "A non-SI-conforming unit of pressure, at which 1 ftHg corresponds to the static pressure, which is excited by a mercury column with a height of 1 foot"^^rdf:HTML ; + qudt:conversionMultiplier 40636.66 ; + qudt:conversionMultiplierSN 4.063666E4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA464" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA464"^^xsd:anyURI ; + qudt:plainTextDescription "A non-SI-conforming unit of pressure, at which 1 ftHg corresponds to the static pressure, which is excited by a mercury column with a height of 1 foot" ; + qudt:scalingOf unit:PA ; + qudt:symbol "ftHg" ; + qudt:ucumCode "[ft_i'Hg]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K25" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Of Mercury"@en . + +unit:FT_US + a qudt:Unit ; + dcterms:description "

The U.S. Survey Foot was officially deprecated on December 31, 2022. For more information see Federal Register (October 5, 2020, 85 FR 62698, p. 62698)

"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.3048006 ; + qudt:conversionMultiplierSN 3.048006E-1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB286" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB286"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "ft{US Survey}" ; + qudt:ucumCode "[ft_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M51" ; + rdfs:isDefinedBy ; + rdfs:label "US Survey Foot"@en . + +unit:FUR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A furlong is a measure of distance in imperial units and U.S. customary units equal to one-eighth of a mile, equivalent to 220 yards, 660 feet, 40 rods, or 10 chains. The exact value of the furlong varies slightly among English-speaking countries. Five furlongs are approximately 1 kilometre (1.0058 km is a closer approximation). Since the original definition of the metre was one-quarter of one ten-millionth of the circumference of the Earth (along the great circle coincident with the meridian of longitude passing through Paris), the circumference of the Earth is about 40,000 km or about 200,000 furlongs. "^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 201.168 ; + qudt:conversionMultiplierSN 2.01168E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Furlong"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB204" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Furlong?oldid=492237369"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB204"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "furlong" ; + qudt:ucumCode "[fur_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M50" ; + rdfs:comment "Check if this is US-Survey or International Customary definition (multiplier)" ; + rdfs:isDefinedBy ; + rdfs:label "Furlong"@en . + +unit:FUR_Long + a qudt:Unit ; + qudt:expression "$longfur$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:symbol "furlong{long}" ; + rdfs:isDefinedBy ; + rdfs:label "Long Furlong"@en . + +unit:FemtoA + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the unit ampere" ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAB638" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB638"^^xsd:anyURI ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:A ; + qudt:symbol "fA" ; + rdfs:isDefinedBy ; + rdfs:label "femtoampere" . + +unit:FemtoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A FemtoCoulomb is $10^{-15} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:C ; + qudt:symbol "fC" ; + qudt:ucumCode "fC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "FemtoCoulomb"@en . + +unit:FemtoFARAD + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the unit farad" ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAB588" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB588"^^xsd:anyURI ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "fF" ; + rdfs:isDefinedBy ; + rdfs:label "femtofarad" . + +unit:FemtoGM + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the unit gram" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB834" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB834"^^xsd:anyURI ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:GM ; + qudt:symbol "fg" ; + rdfs:isDefinedBy ; + rdfs:label "FemtoGram"@en . + +unit:FemtoGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "One part per 10**18 by mass of the measurand in the matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FemtoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "fg/kg" ; + qudt:ucumCode "fg.kg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Femtograms per kilogram"@en . + +unit:FemtoGM-PER-L + a qudt:Unit ; + dcterms:description "One 10**18 part of the SI standard unit of mass of the measurand per litre volume of matrix.."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FemtoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "fg/L" ; + qudt:ucumCode "fg.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "fg/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Femtograms per litre"@en . + +unit:FemtoJ + a qudt:Unit ; + dcterms:description "0,000 000 000 000 001-fold of the derived SI unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB124" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB124"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000000001-fold of the derived SI unit joule" ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:J ; + qudt:symbol "fJ" ; + qudt:ucumCode "fJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A70" ; + rdfs:isDefinedBy ; + rdfs:label "Femtojoule"@en . + +unit:FemtoL + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:plainTextDescription "0.000000000000001-fold of the unit litre" ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:L ; + qudt:symbol "fL" ; + qudt:ucumCode "fL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q32" ; + rdfs:isDefinedBy ; + rdfs:label "Femtolitre"@en ; + rdfs:label "Femtolitre"@en-US . + +unit:FemtoM + a qudt:Unit ; + dcterms:description "The $\\textit{femtometre}$ is an SI unit of length equal to $10^{-15} meter$. This distance can also be called $\\textit{fermi}$ and was so named in honour of Enrico Fermi. It is often encountered in nuclear physics as a characteristic of this scale. The symbol for the fermi is also $fm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:exactMatch unit:FM ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB063" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB063"^^xsd:anyURI ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:M ; + qudt:symbol "fm" ; + qudt:ucumCode "fm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A71" ; + rdfs:isDefinedBy ; + rdfs:label "Femtometer"@en-US ; + rdfs:label "Femtometre"@en . + +unit:FemtoMOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasQuantityKind quantitykind:ExtentOfReaction ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:MOL ; + qudt:symbol "fmol" ; + qudt:ucumCode "fmol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "FemtoMole"@en . + +unit:FemtoMOL-PER-KiloGM + a qudt:Unit ; + dcterms:description "A 10**15 part quantity of substance of the measurand per kilogram mass of matrix."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FemtoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:symbol "fmol/kg" ; + qudt:ucumCode "fmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "fmol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Femtomoles per kilogram"@en . + +unit:FemtoMOL-PER-L + a qudt:Unit ; + dcterms:description "A 10**18 part quantity of substance of the measurand per litre volume of matrix."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FemtoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:symbol "fmol/L" ; + qudt:ucumCode "fmol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "fmol/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Femtomoles per litre"@en . + +unit:FemtoSEC + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAC697" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC697"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000000001-fold of the SI base unit second" ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:SEC ; + qudt:symbol "fs" ; + qudt:ucumCode "fs"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Femtosecond"@en . + +unit:FemtoV + a qudt:Unit ; + dcterms:description "0.000000000000001-fold of the SI derived unit volt" ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAC770" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC770"^^xsd:anyURI ; + qudt:prefix prefix:Femto ; + qudt:scalingOf unit:V ; + qudt:symbol "fV" ; + rdfs:isDefinedBy ; + rdfs:label "femtovolt" . + +unit:G + a qudt:Unit ; + dcterms:description "\"Gravity\" is a unit for 'Linear Acceleration' expressed as $G$."^^qudt:LatexString ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:factorUnitScalar 9.80665 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAA521" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA521"^^xsd:anyURI ; + qudt:symbol "G" ; + qudt:ucumCode "[g]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K40" ; + rdfs:isDefinedBy ; + rdfs:label "Gravity"@en . + +unit:GALILEO + a qudt:Unit ; + dcterms:description "The $\\textit{Galileo}$ is the unit of acceleration of free fall used extensively in the science of gravimetry. The Galileo is defined as $1 \\textit{centimeter per square second}$ ($1 cm/s^2$). Unfortunately, the Galileo is often denoted with the symbol Gal, not to be confused with the Gallon that also uses the same symbol."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gal"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB042" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gal?oldid=482010741"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB042"^^xsd:anyURI ; + qudt:omUnit ; + qudt:plainTextDescription "CGS unit of acceleration called gal with the definition: 1 Gal = 1 cm/s" ; + qudt:symbol "Gal" ; + qudt:ucumCode "Gal"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A76" ; + rdfs:isDefinedBy ; + rdfs:label "Galileo"@en . + +unit:GAL_IMP + a qudt:Unit ; + dcterms:description "A British gallon used in liquid and dry measurement approximately 1.2 U.S. gallons, or 4.54 liters"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00454609 ; + qudt:conversionMultiplierSN 4.54609E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:exactMatch unit:GAL_UK ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:scalingOf unit:M3 ; + qudt:symbol "gal{Imp}" ; + qudt:ucumCode "[gal_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GLI" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Gallon"@en . + +unit:GAL_UK + a qudt:Unit ; + dcterms:description "unit of the volume for fluids according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00454609 ; + qudt:conversionMultiplierSN 4.54609E-3 ; + qudt:exactMatch unit:GAL_IMP ; + qudt:factorUnitScalar 4.54609 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA500" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA500"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ; + qudt:symbol "gal{UK}" ; + qudt:ucumCode "[gal_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GLI" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (UK)"@en . + +unit:GAL_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00000005261678 ; + qudt:conversionMultiplierSN 5.261678E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA501" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA501"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit day" ; + qudt:symbol "gal{UK}/d" ; + qudt:ucumCode "[gal_br].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K26" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (UK) per Day"@en . + +unit:GAL_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit gallon (UK dry or Liq.) according to the Imperial system of units divided by the SI unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000001262803 ; + qudt:conversionMultiplierSN 1.262803E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA502" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA502"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (UK dry or Liq.) according to the Imperial system of units divided by the SI unit hour" ; + qudt:symbol "gal{UK}/h" ; + qudt:ucumCode "[gal_br].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K27" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (UK) per Hour"@en . + +unit:GAL_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00007576817 ; + qudt:conversionMultiplierSN 7.576817E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA503" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA503"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit minute" ; + qudt:symbol "gal{UK}/min" ; + qudt:ucumCode "[gal_br].m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G3" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (UK) per Minute"@en . + +unit:GAL_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00454609 ; + qudt:conversionMultiplierSN 4.54609E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA504" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA504"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "gal{UK}/s" ; + qudt:ucumCode "[gal_br].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K28" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (UK) per Second"@en . + +unit:GAL_US + a qudt:Unit ; + dcterms:description "\"US Gallon\" is a unit for 'Liquid Volume' expressed as $galUS$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.003785412 ; + qudt:conversionMultiplierSN 3.785412E-3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 231.0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA505" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA505"^^xsd:anyURI ; + qudt:symbol "in³" ; + qudt:ucumCode "[gal_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GLL" ; + rdfs:isDefinedBy ; + rdfs:label "US Gallon"@en ; + skos:altLabel "Queen Anne's wine gallon" . + +unit:GAL_US-PER-DAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"US Gallon per Day\" is a unit for 'Volume Per Unit Time' expressed as $gal/d$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000000438126389 ; + qudt:conversionMultiplierSN 4.38126389E-8 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$gal/d$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA506" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA506"^^xsd:anyURI ; + qudt:symbol "gal{US}/d" ; + qudt:ucumCode "[gal_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[gal_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GB" ; + rdfs:isDefinedBy ; + rdfs:label "US Gallon per Day"@en . + +unit:GAL_US-PER-HR + a qudt:Unit ; + dcterms:description "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000001051503 ; + qudt:conversionMultiplierSN 1.051503E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA507" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA507"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI unit hour" ; + qudt:symbol "gal{US}/h" ; + qudt:ucumCode "[gal_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[gal_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G50" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (US) per Hour"@en . + +unit:GAL_US-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"US Gallon per Minute\" is a C.G.S System unit for 'Volume Per Unit Time' expressed as $gal/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000630902 ; + qudt:conversionMultiplierSN 6.30902E-5 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$gal/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA508" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA508"^^xsd:anyURI ; + qudt:symbol "gal{US}/min" ; + qudt:ucumCode "[gal_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[gal_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G2" ; + rdfs:isDefinedBy ; + rdfs:label "US Gallon per Minute"@en . + +unit:GAL_US-PER-SEC + a qudt:Unit ; + dcterms:description "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.003785412 ; + qudt:conversionMultiplierSN 3.785412E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA509" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA509"^^xsd:anyURI ; + qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "gal{US}/s" ; + qudt:ucumCode "[gal_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[gal_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K30" ; + rdfs:isDefinedBy ; + rdfs:label "Gallon (US Liquid) per Second"@en . + +unit:GAL_US_DRY + a qudt:Unit ; + dcterms:description "\"Dry Gallon US\" is a unit for 'Dry Volume' expressed as $dry_gal$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00440488377 ; + qudt:conversionMultiplierSN 4.40488377E-3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 0.125 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:BU_US ; + ] ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAB118" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB118"^^xsd:anyURI ; + qudt:symbol "gal{US Dry}" ; + qudt:ucumCode "[gal_wi]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GLD" ; + rdfs:isDefinedBy ; + rdfs:label "Dry Gallon US"@en ; + skos:altLabel "Winchester gallon" ; + skos:altLabel "corn gallon" . + +unit:GAMMA + a qudt:Unit ; + dcterms:description "\"Gamma\" is a C.G.S System unit for 'Magnetic Field'."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gamma"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticField ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAB213" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gamma?oldid=494680973"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB213"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "γ" ; + qudt:uneceCommonCode "P12" ; + rdfs:isDefinedBy ; + rdfs:label "Gamma"@en . + +unit:GAUGE_FR + a qudt:Unit ; + dcterms:description "unit for the diameter of thin tubes in the medical technology (e.g. catheter) and telecommunications engineering (e.g. fiberglasses)."^^rdf:HTML ; + qudt:conversionMultiplier 0.0003333333 ; + qudt:conversionMultiplierSN 3.333333E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB377" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB377"^^xsd:anyURI ; + qudt:plainTextDescription "unit for the diameter of thin tubes in the medical technology (e.g. catheter) and telecommunications engineering (e.g. fiberglasses)." ; + qudt:scalingOf unit:M ; + qudt:symbol "French gauge" ; + qudt:ucumCode "[Ch]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H79" ; + rdfs:isDefinedBy ; + rdfs:label "French Gauge"@en . + +unit:GAUSS + a qudt:Unit ; + dcterms:description "CGS unit of the magnetic flux density B"^^rdf:HTML ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:exactMatch unit:T_Ab ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAB135" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB135"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit of the magnetic flux density B" ; + qudt:scalingOf unit:T ; + qudt:symbol "Gs" ; + qudt:ucumCode "G"^^qudt:UCUMcs ; + qudt:uneceCommonCode "76" ; + rdfs:isDefinedBy ; + rdfs:label "Gauss"@en . + +unit:GA_Charriere + a qudt:Unit ; + dcterms:description "unit for the diameter of urological instruments and catheters for different purposes corresponding to: 1 Ch = 0,333 333 333 10 ⁻ ³ m" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB382" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB382"^^xsd:anyURI ; + qudt:symbol "Ch" ; + rdfs:isDefinedBy ; + rdfs:label "Charrière gauge" . + +unit:GI + a qudt:Unit ; + dcterms:description "The fundamental unit of magnetomotive force ($mmf$) in electromagnetic units is called a Gilbert. It is the $mmf$ which will produce a magnetic field strength of one Gauss (Maxwell per Square Centimeter) in a path one centimeter long."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.795774715 ; + qudt:conversionMultiplierSN 7.95774715E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gilbert"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:iec61360Code "0112/2///62720#UAB211" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gilbert?oldid=492755037"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB211"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A ; + qudt:symbol "Gb" ; + qudt:ucumCode "Gb"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N97" ; + rdfs:isDefinedBy ; + rdfs:label "Gilbert"@en . + +unit:GI_UK + a qudt:Unit ; + dcterms:description "unit of the volume for fluids according to the Imperial system of units (1/32 Imperial Gallon)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0001420653 ; + qudt:conversionMultiplierSN 1.420653E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA511" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA511"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units (1/32 Imperial Gallon)" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "gill{UK}" ; + qudt:ucumCode "[gil_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GII" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (UK)"@en . + +unit:GI_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000000001644274 ; + qudt:conversionMultiplierSN 1.644274E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA512" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA512"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "gill{UK}/d" ; + qudt:ucumCode "[gil_br].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K32" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (UK) per Day"@en . + +unit:GI_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00000003946258 ; + qudt:conversionMultiplierSN 3.946258E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA513" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA513"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "gill{UK}/h" ; + qudt:ucumCode "[gil_br].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K33" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (UK) per Hour"@en . + +unit:GI_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000002367755 ; + qudt:conversionMultiplierSN 2.367755E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA514" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA514"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "gill{UK}/min" ; + qudt:ucumCode "[gil_br].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K34" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (UK) per Minute"@en . + +unit:GI_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0001420653 ; + qudt:conversionMultiplierSN 1.420653E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA515" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA515"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "gill{UK}/s" ; + qudt:ucumCode "[gil_br].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K35" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (UK) per Second"@en . + +unit:GI_US + a qudt:Unit ; + dcterms:description "unit of the volume according the Anglo-American system of units (1/32 US Gallon)"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000118294125 ; + qudt:conversionMultiplierSN 1.18294125E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA516" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA516"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume according the Anglo-American system of units (1/32 US Gallon)" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "gill{US}" ; + qudt:ucumCode "[gil_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GIA" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (US)"@en . + +unit:GI_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000001369145 ; + qudt:conversionMultiplierSN 1.369145E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA517" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA517"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time day" ; + qudt:symbol "gill{US}/d" ; + qudt:ucumCode "[gil_us].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K36" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (US) per Day"@en . + +unit:GI_US-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000003285947 ; + qudt:conversionMultiplierSN 3.285947E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA518" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA518"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "gill{US}/h" ; + qudt:ucumCode "[gil_us].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K37" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (US) per Hour"@en . + +unit:GI_US-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000001971568 ; + qudt:conversionMultiplierSN 1.971568E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA519" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA519"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "gill{US}/min" ; + qudt:ucumCode "[gil_us].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K38" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (US) per Minute"@en . + +unit:GI_US-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0001182941 ; + qudt:conversionMultiplierSN 1.182941E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GI_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA520" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA520"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "gill{US}/s" ; + qudt:ucumCode "[gil_us].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K39" ; + rdfs:isDefinedBy ; + rdfs:label "Gill (US) per Second"@en . + +unit:GM + a qudt:Unit ; + dcterms:description "A unit of mass in the metric system. The name comes from the Greek gramma, a small weight identified in later Roman and Byzantine times with the Latin scripulum or scruple (the English scruple is equal to about 1.3 grams). The gram was originally defined to be the mass of one cubic centimeter of pure water, but to provide precise standards it was necessary to construct physical objects of specified mass. One gram is now defined to be 1/1000 of the mass of the standard kilogram, a platinum-iridium bar carefully guarded by the International Bureau of Weights and Measures in Paris for more than a century. (The kilogram, rather than the gram, is considered the base unit of mass in the SI.) The gram is a small mass, equal to about 15.432 grains or 0.035 273 966 ounce. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gram"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA465" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gram?oldid=493995797"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA465"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "g" ; + qudt:ucumCode "g"^^qudt:UCUMcs ; + qudt:udunitsCode "g" ; + qudt:uneceCommonCode "GRM" ; + rdfs:isDefinedBy ; + rdfs:label "Gram"@en . + +unit:GM-CentiM-PER-SEC + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI base unit kilogram and the 0.01-fold of the SI base unit metre divided by the SI base unit second" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Impulse ; + qudt:iec61360Code "0112/2///62720#UAB414" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB414"^^xsd:anyURI ; + qudt:symbol "g·cm/s" ; + qudt:ucumCode "g.cm.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M99" ; + rdfs:isDefinedBy ; + rdfs:label "gram centimetre per second" . + +unit:GM-HR-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC822" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC822"^^xsd:anyURI ; + qudt:symbol "g·h/(L·cm³)" ; + qudt:ucumCode "g.h.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per litre cubic centimetre" . + +unit:GM-HR-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC821" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC821"^^xsd:anyURI ; + qudt:symbol "g·h/(L·m³)" ; + qudt:ucumCode "g.h.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per litre cubic metre" . + +unit:GM-HR-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per unit of time hour" ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC823" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC823"^^xsd:anyURI ; + qudt:symbol "g·h/L²" ; + qudt:ucumCode "g.h.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per litre squared" . + +unit:GM-HR-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC813" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC813"^^xsd:anyURI ; + qudt:symbol "g·h/(m³·cm³)" ; + qudt:ucumCode "g.h.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per cubic metre cubic centimetre" . + +unit:GM-HR-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time hour" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC814" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC814"^^xsd:anyURI ; + qudt:symbol "g·h/(m³·L)" ; + qudt:ucumCode "g.h.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per cubic metre litre" . + +unit:GM-HR-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3.6 ; + qudt:conversionMultiplierSN 3.6E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC812" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC812"^^xsd:anyURI ; + qudt:symbol "g·h/m⁶" ; + qudt:ucumCode "g.h.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram hour per power of metre with the exponent 6" . + +unit:GM-MIN-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 60000000.0 ; + qudt:conversionMultiplierSN 6.0E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC825" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC825"^^xsd:anyURI ; + qudt:symbol "g·min/(L·cm³)" ; + qudt:ucumCode "g.min.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per litre cubic centimetre" . + +unit:GM-MIN-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC824" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC824"^^xsd:anyURI ; + qudt:symbol "g·min/(L·m³)" ; + qudt:ucumCode "g.min.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per litre cubic metre" . + +unit:GM-MIN-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per unit of time minute" ; + qudt:conversionMultiplier 60000.0 ; + qudt:conversionMultiplierSN 6.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC826" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC826"^^xsd:anyURI ; + qudt:symbol "g·min/L²" ; + qudt:ucumCode "g.min.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per litre squared" . + +unit:GM-MIN-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 60000.0 ; + qudt:conversionMultiplierSN 6.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC816" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC816"^^xsd:anyURI ; + qudt:symbol "g·min/(m³·cm³)" ; + qudt:ucumCode "g.min.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per cubic metre cubic centimetre" . + +unit:GM-MIN-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time minute" ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC817" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC817"^^xsd:anyURI ; + qudt:symbol "g·min/(m³·L)" ; + qudt:ucumCode "g.min.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per cubic metre litre" . + +unit:GM-MIN-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 0.06 ; + qudt:conversionMultiplierSN 6.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC815" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC815"^^xsd:anyURI ; + qudt:symbol "g·min/m⁶" ; + qudt:ucumCode "g.min.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram minute per power of metre with the exponent 6" . + +unit:GM-MilliM + a qudt:Unit ; + dcterms:description "unit of the imbalance as product of the 0.001-fold of the SI base unit kilogram and the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMass ; + qudt:iec61360Code "0112/2///62720#UAB381" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB381"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the imbalance as product of the 0.001-fold of the SI base unit kilogram and the 0.001-fold of the SI base unit metre" ; + qudt:symbol "g·mm" ; + qudt:ucumCode "g.mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H84" ; + rdfs:isDefinedBy ; + rdfs:label "Gram Millimeter"@en-US ; + rdfs:label "Gram Millimetre"@en . + +unit:GM-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA468" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA468"^^xsd:anyURI ; + qudt:symbol "g/bar" ; + qudt:ucumCode "g.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F74" ; + rdfs:isDefinedBy ; + rdfs:label "gram per bar" . + +unit:GM-PER-CentiM-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre and the unit bar" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Time_Squared ; + qudt:symbol "g/(cm·bar)" ; + qudt:ucumCode "g.cm-1.bar-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per centimetre bar" . + +unit:GM-PER-CentiM-SEC + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity as a quotient of the 0.001-fold of the SI base unit kilogram divided by the 0.01-fold of the SI base unit metre and SI base unit second" ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB433" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB433"^^xsd:anyURI ; + qudt:symbol "g/(cm·s)" ; + qudt:ucumCode "g.cm-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N41" ; + rdfs:isDefinedBy ; + rdfs:label "gram per centimetre second" . + +unit:GM-PER-CentiM2 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre and exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAB103" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB103"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre and exponent 2" ; + qudt:symbol "g/cm²" ; + qudt:ucumCode "g.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "g/cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "25" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Square Centimeter"@en-US ; + rdfs:label "Gram per Square Centimetre"@en . + +unit:GM-PER-CentiM2-YR + a qudt:Unit ; + dcterms:description "A rate of change of 0.001 of the SI unit of mass over 0.00001 of the SI unit of area in a period of an average calendar year (365.25 days)"@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000316880878140289 ; + qudt:conversionMultiplierSN 3.16880878140289E-7 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "g/(cm²·a)" ; + qudt:ucumCode "g.cm-2.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Grams per square centimetre year"@en . + +unit:GM-PER-CentiM3 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 0.000 001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA469" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA469"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit kilogram divided by the 0.000001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "g/cm³" ; + qudt:ucumCode "g.cm-3"^^qudt:UCUMcs ; + qudt:ucumCode "g/cm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "23" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Cubic Centimeter"@en-US ; + rdfs:label "Gram per Cubic Centimetre"@en . + +unit:GM-PER-CentiM3-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA471" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA471"^^xsd:anyURI ; + qudt:symbol "g/(cm³·bar)" ; + qudt:ucumCode "g.cm-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G11" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic centimetre bar" . + +unit:GM-PER-CentiM3-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA470" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA470"^^xsd:anyURI ; + qudt:symbol "g/(cm³·K)" ; + qudt:ucumCode "g.cm-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G33" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic centimetre kelvin" . + +unit:GM-PER-DAY + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001157407 ; + qudt:conversionMultiplierSN 1.157407E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA472" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA472"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit day" ; + qudt:symbol "g/d" ; + qudt:ucumCode "g.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F26" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Day"@en . + +unit:GM-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-13 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA474" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA474"^^xsd:anyURI ; + qudt:symbol "g/(d·bar)" ; + qudt:ucumCode "g.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F62" ; + rdfs:isDefinedBy ; + rdfs:label "gram per day bar" . + +unit:GM-PER-DAY-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA473" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA473"^^xsd:anyURI ; + qudt:symbol "g/(d·K)" ; + qudt:ucumCode "g.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F35" ; + rdfs:isDefinedBy ; + rdfs:label "gram per day kelvin" . + +unit:GM-PER-DEG_C + a qudt:Unit ; + dcterms:description "$\\textit{Gram Degree Celsius}$ is a C.G.S System unit for 'Mass Temperature' expressed as $g \\cdot degC$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:expression "$g-degC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "g/°C" ; + qudt:ucumCode "d.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "d/Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram Degree Celsius"@en . + +unit:GM-PER-DeciL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A derived unit for amount-of-substance concentration measured in g/dL."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:expression "$g/dL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DeciL ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "g/dL" ; + qudt:ucumCode "g.dL-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/dL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "grams per decilitre"@en ; + rdfs:label "grams per decilitre"@en-US . + +unit:GM-PER-DeciM3 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA475" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA475"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "g/dm³" ; + qudt:ucumCode "g.dm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F23" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Cubic Decimeter"@en-US ; + rdfs:label "Gram per Cubic Decimetre"@en . + +unit:GM-PER-DeciM3-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA477" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA477"^^xsd:anyURI ; + qudt:symbol "g/(dm³·bar)" ; + qudt:ucumCode "g.dm-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G12" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic decimetre bar" . + +unit:GM-PER-DeciM3-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA476" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA476"^^xsd:anyURI ; + qudt:symbol "g/(dm³·K)" ; + qudt:ucumCode "g.dm-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G34" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic decimetre kelvin" . + +unit:GM-PER-GM + a qudt:Unit ; + dcterms:description "mass ratio consisting of the 0.001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "g/g" ; + qudt:ucumCode "g.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Gram"@en . + +unit:GM-PER-HA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Gram Per Hectare is a unit of mass per area. Gram Per Hectare (mg/ha) has a dimension of ML-3 where M is mass, and L is length. It can be converted to the corresponding standard SI unit kg/m2 by multiplying its value by a factor of 0.0000001."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000001 ; + qudt:expression "\\(g/hare\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:symbol "g/ha" ; + qudt:ucumCode "g.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Hectare"@en . + +unit:GM-PER-HR + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777778 ; + qudt:conversionMultiplierSN 2.777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA478" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA478"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit hour" ; + qudt:symbol "g/h" ; + qudt:ucumCode "g.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F27" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Hour"@en . + +unit:GM-PER-HR-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-12 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA480" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA480"^^xsd:anyURI ; + qudt:symbol "g/(h·bar)" ; + qudt:ucumCode "g.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F63" ; + rdfs:isDefinedBy ; + rdfs:label "gram per hour bar" . + +unit:GM-PER-HR-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA479" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA479"^^xsd:anyURI ; + qudt:symbol "g/(h·K)" ; + qudt:ucumCode "g.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F36" ; + rdfs:isDefinedBy ; + rdfs:label "gram per hour kelvin" . + +unit:GM-PER-HZ + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the SI derived unit hertz" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD916" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD916"^^xsd:anyURI ; + qudt:symbol "g/Hz" ; + qudt:ucumCode "g.Hz-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F25" ; + rdfs:isDefinedBy ; + rdfs:label "gram per hertz" . + +unit:GM-PER-HectoGM + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by 0.1-fold of the SI base unit kilogram" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:expression "\\(g-hg^{-1}\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by 0.1-fold of the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "g/hg" ; + qudt:ucumCode "g.hg-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/hg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram Per Hectogram"@en . + +unit:GM-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA467" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA467"^^xsd:anyURI ; + qudt:symbol "g/K" ; + qudt:ucumCode "g.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F14" ; + rdfs:isDefinedBy ; + rdfs:label "gram per kelvin" . + +unit:GM-PER-KiloGM + a qudt:Unit ; + dcterms:description "0,001 fold of the SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA481" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA481"^^xsd:anyURI ; + qudt:plainTextDescription "0,001 fold of the SI base unit kilogram divided by the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "g/kg" ; + qudt:ucumCode "g.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GK" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Kilogram"@en . + +unit:GM-PER-KiloM + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 1000-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 1000-fold of the SI base unit metre" ; + qudt:symbol "g/km" ; + qudt:ucumCode "g.km-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Kilometer"@en-US ; + rdfs:label "Gram per Kilometre"@en . + +unit:GM-PER-L + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA482" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA482"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit litre" ; + qudt:symbol "g/L" ; + qudt:ucumCode "g.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GL" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Liter"@en-US ; + rdfs:label "Gram per Litre"@en . + +unit:GM-PER-L-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit litre and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA484" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA484"^^xsd:anyURI ; + qudt:symbol "g/(L·bar)" ; + qudt:ucumCode "g.L-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G13" ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre bar" . + +unit:GM-PER-L-CentiPOISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per litre and and the 0.01-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD834" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD834"^^xsd:anyURI ; + qudt:symbol "g/(L·cP)" ; + qudt:ucumCode "g.L-1.cP-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre centipoise" . + +unit:GM-PER-L-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit litre and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA483" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA483"^^xsd:anyURI ; + qudt:symbol "g/(L·K)" ; + qudt:ucumCode "g.L-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G35" ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre kelvin" . + +unit:GM-PER-L-MilliPA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD868" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD868"^^xsd:anyURI ; + qudt:symbol "g/(L·mPa·s)" ; + qudt:ucumCode "g.L-1.mPa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre millipascal second" . + +unit:GM-PER-L-PA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the product of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD832" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD832"^^xsd:anyURI ; + qudt:symbol "g/(L·Pa·s)" ; + qudt:ucumCode "g.L-1.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre pascal second" . + +unit:GM-PER-L-POISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per litre and the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD833" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD833"^^xsd:anyURI ; + qudt:symbol "g/(L·P)" ; + qudt:ucumCode "g.L-1.P-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per litre poise" . + +unit:GM-PER-M + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAA485" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA485"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the SI base unit metre" ; + qudt:symbol "g/m" ; + qudt:ucumCode "g.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GF" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Meter"@en-US ; + rdfs:label "Gram per Metre"@en . + +unit:GM-PER-M2 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAA486" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA486"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "g/m²" ; + qudt:ucumCode "g.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "g/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GM" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Square Meter"@en-US ; + rdfs:label "Gram per Square Metre"@en . + +unit:GM-PER-M2-DAY + a qudt:Unit ; + dcterms:description "A metric unit of volume over time indicating the amount generated across one square meter over a day."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000011574073 ; + qudt:conversionMultiplierSN 1.1574073E-8 ; + qudt:expression "$g-m^{-2}-day^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a day." ; + qudt:symbol "g/(m²·d)" ; + qudt:ucumCode "g.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "grams per square meter day"@en-US ; + rdfs:label "grams per square metre day"@en . + +unit:GM-PER-M2-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "0.0001-fold of the SI base unit kilogram divided by the SI base unit meter with the exponent 2 over a period of 1 hour "@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "0.0001-fold of the SI base unit kilogram divided by the SI base unit meter with the exponent 2 over a period of 1 hour " ; + qudt:symbol "g/(m²·h)" ; + qudt:ucumCode "g.m-2.hr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Grams per square meter per hour"@en . + +unit:GM-PER-M2-YR + a qudt:Unit ; + dcterms:description "A metric unit of volume over time indicating the amount generated across one square meter over a year (365.25 days)."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000316880878 ; + qudt:expression "\\(g-m^{-2}-year^{-1}\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a year." ; + qudt:symbol "g/(m²·a)" ; + qudt:ucumCode "g.m-2.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "grams per square meter per year"@en-US ; + rdfs:label "grams per square metre per year"@en . + +unit:GM-PER-M3 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA487" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA487"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "g/m³" ; + qudt:ucumCode "g.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "g/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A93" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Cubic Meter"@en-US ; + rdfs:label "Gram per Cubic Metre"@en . + +unit:GM-PER-M3-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA489" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA489"^^xsd:anyURI ; + qudt:symbol "g/(m³·bar)" ; + qudt:ucumCode "g.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G14" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre bar" . + +unit:GM-PER-M3-CentiPOISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.01-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD831" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD831"^^xsd:anyURI ; + qudt:symbol "g/(m³·cP)" ; + qudt:ucumCode "g.m-3.cP-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre centipoise" . + +unit:GM-PER-M3-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA488" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA488"^^xsd:anyURI ; + qudt:symbol "g/(m³·K)" ; + qudt:ucumCode "g.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G36" ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre kelvin" . + +unit:GM-PER-M3-MilliPA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD828" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD828"^^xsd:anyURI ; + qudt:symbol "g/(m³·mPa·s)" ; + qudt:ucumCode "g.m-3.mPa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre millipascal second" . + +unit:GM-PER-M3-PA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD829" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD829"^^xsd:anyURI ; + qudt:symbol "g/(m³·Pa·s)" ; + qudt:ucumCode "g.m-3.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre pascal second" . + +unit:GM-PER-M3-POISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD830" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD830"^^xsd:anyURI ; + qudt:symbol "g/(m³·P)" ; + qudt:ucumCode "g.m-3.P-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram per cubic metre poise" . + +unit:GM-PER-MIN + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001666667 ; + qudt:conversionMultiplierSN 1.666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA490" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA490"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit minute" ; + qudt:symbol "g/min" ; + qudt:ucumCode "g.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F28" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Minute"@en . + +unit:GM-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "0.001-fold the SI base unit kilogram divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-10 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA492" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA492"^^xsd:anyURI ; + qudt:symbol "g/(min·bar)" ; + qudt:ucumCode "g.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F64" ; + rdfs:isDefinedBy ; + rdfs:label "gram per minute bar" . + +unit:GM-PER-MIN-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA491" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA491"^^xsd:anyURI ; + qudt:symbol "g/(min·K)" ; + qudt:ucumCode "g.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F37" ; + rdfs:isDefinedBy ; + rdfs:label "gram per minute kelvin" . + +unit:GM-PER-MOL + a qudt:Unit ; + dcterms:description "0.01-fold of the SI base unit kilogram divided by the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:iec61360Code "0112/2///62720#UAA496" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA496"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the SI base unit kilogram divided by the SI base unit mol" ; + qudt:symbol "g/mol" ; + qudt:ucumCode "g.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A94" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Mole"@en . + +unit:GM-PER-MilliL + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA493" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA493"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold of the unit litre" ; + qudt:symbol "g/mL" ; + qudt:ucumCode "g.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "g/mL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GJ" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Millilitre"@en ; + rdfs:label "Gram per Millilitre"@en-US . + +unit:GM-PER-MilliL-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit litre and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA495" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA495"^^xsd:anyURI ; + qudt:symbol "g/(mL·bar)" ; + qudt:ucumCode "g.mL-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G15" ; + rdfs:isDefinedBy ; + rdfs:label "gram per millilitre bar" . + +unit:GM-PER-MilliL-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit litre and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA494" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA494"^^xsd:anyURI ; + qudt:symbol "g/(mL·K)" ; + qudt:ucumCode "g.mL-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G37" ; + rdfs:isDefinedBy ; + rdfs:label "gram per millilitre kelvin" . + +unit:GM-PER-MilliM + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit kilogram divided by the 0.001-fold the SI base unit meter"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB376" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB376"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 0.001-fold the SI base unit meter" ; + qudt:symbol "g/mm" ; + qudt:ucumCode "g.mm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H76" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Millimeter"@en-US ; + rdfs:label "Gram per Millimetre"@en . + +unit:GM-PER-MilliM-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit meter and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Time_Squared ; + qudt:symbol "g/(mm·bar)" ; + qudt:ucumCode "g.mm-1.bar-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Millimeter Bar"@en-US ; + rdfs:label "Gram per Millimetre Bar"@en . + +unit:GM-PER-MilliM2 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the 0.000001-fold of the power of the SI base unit meter by exponent 2" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:BodyMassIndex ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MeanMassRange ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:iec61360Code "0112/2///62720#UAB389" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB389"^^xsd:anyURI ; + qudt:symbol "g/mm²" ; + qudt:ucumCode "g.mm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N24" ; + rdfs:isDefinedBy ; + rdfs:label "gram per square millimetre" . + +unit:GM-PER-SEC + a qudt:Unit ; + dcterms:description "0,001fold of the SI base unit kilogram divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA497" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA497"^^xsd:anyURI ; + qudt:plainTextDescription "0,001fold of the SI base unit kilogram divided by the SI base unit second" ; + qudt:symbol "g/s" ; + qudt:ucumCode "g.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F29" ; + rdfs:isDefinedBy ; + rdfs:label "Gram per Second"@en . + +unit:GM-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA499" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA499"^^xsd:anyURI ; + qudt:symbol "g/(s·bar)" ; + qudt:ucumCode "g.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F65" ; + rdfs:isDefinedBy ; + rdfs:label "gram per second bar" . + +unit:GM-PER-SEC-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA498" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA498"^^xsd:anyURI ; + qudt:symbol "g/(s·K)" ; + qudt:ucumCode "g.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F38" ; + rdfs:isDefinedBy ; + rdfs:label "gram per second kelvin" . + +unit:GM-SEC-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC828" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC828"^^xsd:anyURI ; + qudt:symbol "g·s/(L·cm³)" ; + qudt:ucumCode "g.s.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per litre cubic centimetre" . + +unit:GM-SEC-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC827" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC827"^^xsd:anyURI ; + qudt:symbol "g·s/(L·m³)" ; + qudt:ucumCode "g.s.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per litre cubic metre" . + +unit:GM-SEC-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per SI base unit second" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC829" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC829"^^xsd:anyURI ; + qudt:symbol "g·s/L²" ; + qudt:ucumCode "g.s.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per litre squared" . + +unit:GM-SEC-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC819" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC819"^^xsd:anyURI ; + qudt:symbol "g·s/(m³·cm³)" ; + qudt:ucumCode "g.s.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per cubic metre cubic centimetre" . + +unit:GM-SEC-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC820" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC820"^^xsd:anyURI ; + qudt:symbol "g·s/(m³·L)" ; + qudt:ucumCode "g.s.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per cubic metre litre" . + +unit:GM-SEC-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC818" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC818"^^xsd:anyURI ; + qudt:symbol "g·s/m⁶" ; + qudt:ucumCode "g.s.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gram second per power of metre with the exponent 6" . + +unit:GM_Carbon-PER-M2-DAY + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "A metric unit of volume over time indicating the amount generated across one square meter over a day. Used to express productivity of an ecosystem."^^rdf:HTML ; + qudt:conversionMultiplier 0.000000011574073 ; + qudt:conversionMultiplierSN 1.1574073E-8 ; + qudt:expression "$g C-m^{-2}-day^{-1}$."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM_Carbon ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a day. Used to express productivity of an ecosystem." ; + qudt:symbol "g{carbon}/(m²·day)" ; + qudt:ucumCode "g.m-2.d-1{C}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "grams Carbon per square meter day"@en-US ; + rdfs:label "grams Carbon per square metre day"@en ; + skos:broader unit:GM-PER-M2-DAY . + +unit:GM_F + a qudt:Unit ; + dcterms:description "\"Gram Force\" is a unit for 'Force' expressed as $gf$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00980665 ; + qudt:conversionMultiplierSN 9.80665E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilogram-force"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilogram-force?oldid=493375479"^^xsd:anyURI ; + qudt:scalingOf unit:N ; + qudt:symbol "gf" ; + qudt:ucumCode "gf"^^qudt:UCUMcs ; + qudt:udunitsCode "gf" ; + rdfs:isDefinedBy ; + rdfs:label "Gram Force"@en . + +unit:GM_F-PER-CentiM2 + a qudt:Unit ; + dcterms:description "A non-SI-conforming unit of pressure"^^rdf:HTML ; + qudt:conversionMultiplier 98.0665 ; + qudt:conversionMultiplierSN 9.80665E1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM_F ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA510" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA510"^^xsd:anyURI ; + qudt:plainTextDescription "A non-SI-conforming unit of pressure" ; + qudt:symbol "gf/cm²" ; + qudt:ucumCode "gf.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K31" ; + rdfs:isDefinedBy ; + rdfs:label "Gram Force per Square Centimeter"@en-US ; + rdfs:label "Gram Force per Square Centimetre"@en . + +unit:GM_Nitrogen-PER-M2-DAY + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "A metric unit of volume over time indicating the amount of Nitrogen generated across one square meter over a day. Used to express productivity of an ecosystem."^^rdf:HTML ; + qudt:conversionMultiplier 0.000000011574073 ; + qudt:conversionMultiplierSN 1.1574073E-8 ; + qudt:expression "$g N-m^{-2}-day^{-1}$."^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GM_Nitrogen ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A metric unit of volume over time indicating the amount of Nitrogen generated across one square meter over a day. Used to express productivity of an ecosystem." ; + qudt:symbol "g{nitrogen}/(m²·day)" ; + qudt:ucumCode "g.m-2.d-1{N}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "grams Nitrogen per square meter day"@en-US ; + rdfs:label "grams Nitrogen per square metre day"@en ; + skos:broader unit:GM-PER-M2-DAY . + +unit:GON + a qudt:Unit ; + dcterms:description "\"Gon\" is a C.G.S System unit for 'Plane Angle' expressed as $gon$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.015707963267949 ; + qudt:conversionMultiplierSN 1.5707963267949E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gon"^^xsd:anyURI ; + qudt:exactMatch unit:GRAD ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA522" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gon?oldid=424098171"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA522"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "gon" ; + qudt:ucumCode "gon"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A91" ; + rdfs:isDefinedBy ; + rdfs:label "Gon"@en . + +unit:GR + a qudt:DimensionlessUnit, qudt:Unit ; + dcterms:description "the tangent of an angle of inclination multiplied by 100"^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Grade"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Grade?oldid=485504533"^^xsd:anyURI ; + qudt:symbol "gr" ; + rdfs:isDefinedBy ; + rdfs:label "Grade"@en . + +unit:GRAD + a qudt:Unit ; + dcterms:description "\"Grad\" is a unit for 'Plane Angle' expressed as $grad$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.015707963267949 ; + qudt:conversionMultiplierSN 1.5707963267949E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Grad"^^xsd:anyURI ; + qudt:exactMatch unit:GON ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA522" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Grad?oldid=490906645"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA522"^^xsd:anyURI ; + qudt:symbol "grad" ; + qudt:uneceCommonCode "A91" ; + rdfs:isDefinedBy ; + rdfs:label "Grad"@en . + +unit:GRAIN + a qudt:Unit ; + dcterms:description "A grain is a unit of measurement of mass that is nominally based upon the mass of a single seed of a cereal. The grain is the only unit of mass measure common to the three traditional English mass and weight systems; the obsolete Tower grain was, by definition, exactly /64 of a troy grain. Since 1958, the grain or troy grain measure has been defined in terms of units of mass in the International System of Units as precisely 64.79891 milligrams. Thus, $1 gram \\approx 15.4323584 grains$. There are precisely 7,000 grains per avoirdupois pound in the imperial and U.S. customary units, and 5,760 grains in the Troy pound."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00006479891 ; + qudt:conversionMultiplierSN 6.479891E-5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cereal"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA523" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cereal?oldid=495222949"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA523"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "gr{UK}" ; + qudt:ucumCode "[gr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GRN" ; + rdfs:isDefinedBy ; + rdfs:label "Grain"@en . + +unit:GRAIN-PER-GAL + a qudt:Unit ; + dcterms:description "\"Grain per Gallon\" is an Imperial unit for 'Density' expressed as $gr/gal$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.017118061 ; + qudt:conversionMultiplierSN 1.7118061E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$gr/gal$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "grain{UK}/gal" ; + qudt:ucumCode "[gr].[gal_br]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K41" ; + rdfs:isDefinedBy ; + rdfs:label "Grain per Gallon"@en . + +unit:GRAIN-PER-GAL_US + a qudt:Unit ; + dcterms:description "unit of the density according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.01711806 ; + qudt:conversionMultiplierSN 1.711806E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAIN ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA524" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA524"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ; + qudt:symbol "gr{UK}/gal{US}" ; + qudt:ucumCode "[gr].[gal_us]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K41" ; + rdfs:isDefinedBy ; + rdfs:label "Grain per Gallon (US)"@en . + +unit:GRAIN-PER-M3 + a qudt:Unit ; + dcterms:description "Grains per cubic metre of volume"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00006479891 ; + qudt:conversionMultiplierSN 6.479891E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAIN ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:plainTextDescription "Grains per cubic metre of volume" ; + qudt:symbol "gr{UK}/m³" ; + qudt:ucumCode "[gr]/m3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Grains per Cubic Meter"@en-US ; + rdfs:label "Grains per Cubic Metre"@en . + +unit:GRAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of radiation dose. Radiation carries energy, and when it is absorbed by matter the matter receives this energy. The dose is the amount of energy deposited per unit of mass. One gray is defined to be the dose of one joule of energy absorbed per kilogram of matter, or 100 rad. The unit is named for the British physician L. Harold Gray (1905-1965), an authority on the use of radiation in the treatment of cancer."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Grey"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:hasQuantityKind quantitykind:Kerma ; + qudt:iec61360Code "0112/2///62720#UAA163" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Grey?oldid=494774160"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA163"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:gray ; + qudt:siUnitsExpression "J/kg" ; + qudt:symbol "Gy" ; + qudt:ucumCode "Gy"^^qudt:UCUMcs ; + qudt:udunitsCode "Gy" ; + qudt:uneceCommonCode "A95" ; + rdfs:isDefinedBy ; + rdfs:label "Gray"@de ; + rdfs:label "graium"@la ; + rdfs:label "gray"@cs ; + rdfs:label "gray"@en ; + rdfs:label "gray"@es ; + rdfs:label "gray"@fr ; + rdfs:label "gray"@hu ; + rdfs:label "gray"@it ; + rdfs:label "gray"@ms ; + rdfs:label "gray"@pt ; + rdfs:label "gray"@ro ; + rdfs:label "gray"@sl ; + rdfs:label "gray"@tr ; + rdfs:label "grej"@pl ; + rdfs:label "γκρέι"@el ; + rdfs:label "грей"@bg ; + rdfs:label "грэй"@ru ; + rdfs:label "גריי"@he ; + rdfs:label "جراي; غراي"@ar ; + rdfs:label "گری"@fa ; + rdfs:label "ग्रेय"@hi ; + rdfs:label "グレイ"@ja ; + rdfs:label "戈瑞"@zh . + +unit:GRAY-PER-HR + a qudt:Unit ; + dcterms:description "SI derived unit gray divided by the unit hour" ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB476" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB476"^^xsd:anyURI ; + qudt:symbol "Gy/h" ; + qudt:ucumCode "Gy.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P61" ; + rdfs:isDefinedBy ; + rdfs:label "gray per hour" . + +unit:GRAY-PER-MIN + a qudt:Unit ; + dcterms:description "SI derived unit gray divided by the unit minute" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB472" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB472"^^xsd:anyURI ; + qudt:symbol "Gy/min" ; + qudt:ucumCode "Gy.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P57" ; + rdfs:isDefinedBy ; + rdfs:label "gray per minute" . + +unit:GRAY-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Gray per Second\" is a unit for 'Absorbed Dose Rate' expressed as $Gy/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$Gy/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAA164" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA164"^^xsd:anyURI ; + qudt:symbol "Gy/s" ; + qudt:ucumCode "Gy.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A96" ; + rdfs:isDefinedBy ; + rdfs:label "Gray per Second"@en . + +unit:GT + a qudt:Unit ; + dcterms:description "The formula for calculating GT is given by ${ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}$"^^qudt:LatexString ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Gross_tonnage"^^xsd:anyURI ; + qudt:latexDefinition "${ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}$ where V is measured in cubic meters."^^qudt:LatexString ; + qudt:plainTextDescription "Gross tonnage (GT, G.T. or gt) is a nonlinear measure of a ship's overall internal volume. Gross tonnage is different from gross register tonnage. Gross tonnage is used to determine things such as a ship's manning regulations, safety rules, registration fees, and port dues, whereas the older gross register tonnage is a measure of the volume of only certain enclosed spaces." ; + qudt:symbol "G.T." ; + qudt:ucumCode "t{gross}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GT" ; + rdfs:isDefinedBy ; + rdfs:label "Gross Tonnage"@en ; + rdfs:seeAlso unit:TON_Register . + +unit:Gamma + a qudt:Unit ; + dcterms:description "\"Gamma\" is a C.G.S System unit for 'Magnetic Field'."^^rdf:HTML ; + dcterms:isReplacedBy unit:GAMMA ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gamma"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticField ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAB213" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gamma?oldid=494680973"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB213"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:T ; + qudt:symbol "γ" ; + qudt:uneceCommonCode "P12" ; + rdfs:isDefinedBy ; + rdfs:label "Gamma"@en . + +unit:GibiBIT + a qudt:Unit ; + dcterms:description "1,073,741,824-fold of the unit bit" ; + qudt:conversionMultiplier 744261117.954893 ; + qudt:conversionMultiplierSN 7.44261117954893E8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB152" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB152"^^xsd:anyURI ; + qudt:prefix prefix:Gibi ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Gibit" ; + qudt:uneceCommonCode "B30" ; + rdfs:isDefinedBy ; + rdfs:label "gibibit" . + +unit:GibiBIT-PER-M + a qudt:Unit ; + dcterms:description "1,073,741,824-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 744261117.95489301787390319512589573292032 ; + qudt:conversionMultiplierSN 7.4426111795489301787390319512589573292032E8 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GibiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA159" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA159"^^xsd:anyURI ; + qudt:symbol "Gibit/m" ; + qudt:ucumCode "Gibit.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E69" ; + rdfs:isDefinedBy ; + rdfs:label "gibibit per metre" . + +unit:GibiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1,073,741,824-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 744261117.95489301787390319512589573292032 ; + qudt:conversionMultiplierSN 7.4426111795489301787390319512589573292032E8 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GibiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA160" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA160"^^xsd:anyURI ; + qudt:symbol "Gibit/m²" ; + qudt:ucumCode "Gibit.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E70" ; + rdfs:isDefinedBy ; + rdfs:label "gibibit per square metre" . + +unit:GibiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1,073,741,824-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 744261117.95489301787390319512589573292032 ; + qudt:conversionMultiplierSN 7.4426111795489301787390319512589573292032E8 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GibiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA161" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA161"^^xsd:anyURI ; + qudt:symbol "Gibit/m³" ; + qudt:ucumCode "Gibit.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E71" ; + rdfs:isDefinedBy ; + rdfs:label "gibibit per cubic metre" . + +unit:GibiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The gibibyte is a multiple of the unit byte for digital information storage. The prefix gibi means 1024^3"^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5954088943.6391441429912255610071 ; + qudt:conversionMultiplierSN 5.9540889436391441429912255610071E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gibibyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA162" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA162"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Gibi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "GiB" ; + qudt:uneceCommonCode "E62" ; + rdfs:isDefinedBy ; + rdfs:label "GibiByte"@en . + +unit:GigaA + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the unit ampere" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAB639" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB639"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:A ; + qudt:symbol "GA" ; + rdfs:isDefinedBy ; + rdfs:label "gigaampere" . + +unit:GigaBIT + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the unit bit" ; + qudt:conversionMultiplier 693147180.55994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB156" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB156"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Gbit" ; + qudt:uneceCommonCode "B68" ; + rdfs:isDefinedBy ; + rdfs:label "gigabit" . + +unit:GigaBIT-PER-M + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 693147180.55994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E8 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaBIT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:symbol "Gbit/m" ; + qudt:ucumCode "Gbit.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gigabit per metre" . + +unit:GigaBIT-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A gigabit per second (Gbit/s or Gb/s) is a unit of data transfer rate equal to 1,000,000,000 bits per second."^^rdf:HTML ; + qudt:conversionMultiplier 693147180.55994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA156" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data-rate_units#Gigabit_per_second"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA156"^^xsd:anyURI ; + qudt:symbol "Gbit/s" ; + qudt:ucumCode "Gbit.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B80" ; + rdfs:isDefinedBy ; + rdfs:label "Gigabit per Second"@en . + +unit:GigaBQ + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the derived SI unit becquerel"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAB047" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB047"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the derived SI unit becquerel" ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:BQ ; + qudt:symbol "GBq" ; + qudt:ucumCode "GBq"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GBQ" ; + rdfs:isDefinedBy ; + rdfs:label "Gigabecquerel"@en . + +unit:GigaBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The gigabyte is a multiple of the unit byte for digital information storage. The prefix giga means $10^9$ in the International System of Units (SI), therefore 1 gigabyte is $1,000,000,000 \\; bytes$. The unit symbol for the gigabyte is $GB$ or $Gbyte$, but not $Gb$ (lower case b) which is typically used for the gigabit. Historically, the term has also been used in some fields of computer science and information technology to denote the $gibibyte$, or $1073741824 \\; bytes$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545177444.47956 ; + qudt:conversionMultiplierSN 5.54517744447956E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gigabyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB185" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gigabyte?oldid=493019145"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB185"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "GB" ; + qudt:ucumCode "GBy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E34" ; + rdfs:isDefinedBy ; + rdfs:label "GigaByte"@en ; + skos:altLabel "gbyte" . + +unit:GigaBYTE-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the unit byte divided by the SI base unit second" ; + qudt:conversionMultiplier 5545177444.4795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaBYTE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ByteRate ; + qudt:iec61360Code "0112/2///62720#UAA157" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA157"^^xsd:anyURI ; + qudt:symbol "GB/s" ; + qudt:ucumCode "GBy.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E68" ; + rdfs:isDefinedBy ; + rdfs:label "gigabyte per second" . + +unit:GigaBasePair + a qudt:Unit ; + dcterms:description "A gigabase (abbreviated Gb, or Gbp for gigabase pairs.) is a unit of measurement used to help designate the length of DNA. One gigabase is equal to 1 billion bases. "^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:informativeReference "https://www.genome.gov/genetics-glossary/Gigabase"^^xsd:anyURI ; + qudt:plainTextDescription "A gigabase (abbreviated Gb, or Gbp for gigabase pairs.) is a unit of measurement used to help designate the length of DNA. One gigabase is equal to 1 billion bases. " ; + qudt:symbol "Gbp" ; + rdfs:isDefinedBy ; + rdfs:label "Gigabase Pair"@en ; + skos:altLabel "Gigabase" . + +unit:GigaC + a qudt:DerivedUnit, qudt:Unit ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:C ; + qudt:symbol "GC" ; + qudt:ucumCode "GC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "GigaCoulomb"@en . + +unit:GigaC-PER-M3 + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAA149" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA149"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "GC/m³" ; + qudt:ucumCode "GC.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A84" ; + rdfs:isDefinedBy ; + rdfs:label "Gigacoulomb per Cubic Meter"@en-US ; + rdfs:label "Gigacoulomb per Cubic Metre"@en . + +unit:GigaEV + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Giga Electron Volt\" is a unit for 'Energy And Work' expressed as $GeV$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-10 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA158" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA158"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:EV ; + qudt:symbol "GeV" ; + qudt:ucumCode "GeV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A85" ; + rdfs:isDefinedBy ; + rdfs:label "Giga Electron Volt"@en . + +unit:GigaFLOPS + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the unit floating point operations divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:FloatingPointCalculationCapability ; + qudt:iec61360Code "0112/2///62720#UAB592" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB592"^^xsd:anyURI ; + qudt:symbol "GFLOPS" ; + rdfs:isDefinedBy ; + rdfs:label "gigafloatingpoint operations per second" . + +unit:GigaHZ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The hertz (symbol Hz) is the SI unit of frequency defined as the number of cycles per second of a periodic phenomenon. A GigaHertz is $10^{9} hz$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hertz"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA150" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA150"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:HZ ; + qudt:symbol "GHz" ; + qudt:ucumCode "GHz"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A86" ; + rdfs:isDefinedBy ; + rdfs:label "Gigahertz"@en . + +unit:GigaHZ-M + a qudt:Unit ; + dcterms:description "product of the 1,000,000,000-fold of the SI derived unit hertz and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaHZ ; + ] ; + qudt:hasQuantityKind quantitykind:ConductionSpeed ; + qudt:hasQuantityKind quantitykind:GroupSpeedOfSound ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:PhaseSpeedOfSound ; + qudt:hasQuantityKind quantitykind:SoundParticleVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA151" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA151"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000 000 000-fold of the SI derived unit hertz and the SI base unit metre" ; + qudt:symbol "GHz·m" ; + qudt:ucumCode "GHz.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M18" ; + rdfs:isDefinedBy ; + rdfs:label "Gigahertz Meter"@en-US ; + rdfs:label "Gigahertz Metre"@en . + +unit:GigaJ + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA152" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA152"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit joule" ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:J ; + qudt:symbol "GJ" ; + qudt:ucumCode "GJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GV" ; + rdfs:isDefinedBy ; + rdfs:label "Gigajoule"@en . + +unit:GigaJ-PER-HR + a qudt:Unit ; + dcterms:description "SI derived unit Gigajoule divided by the 3600 times the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 277777.7777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaJ ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:plainTextDescription "SI derived unit gigajoule divided by the 3600 times the SI base unit second" ; + qudt:symbol "GJ/h" ; + qudt:ucumCode "GJ.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P16" ; + rdfs:isDefinedBy ; + rdfs:label "Gigajoule per Hour"@en . + +unit:GigaJ-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Gigajoule Per Square Meter ($J/m^2$) is a unit in the category of Energy density. It is also known as Gigajoules per square meter, Gigajoule per square metre, Gigajoule/square meter, Gigajoule/square metre."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$GJ/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyFluence ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:RadiantFluence ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:symbol "GJ/m²" ; + qudt:ucumCode "GJ.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "GJ/m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gigajoule per Square Meter"@en-US ; + rdfs:label "Gigajoule per Square Metre"@en . + +unit:GigaJ-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaJ ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB512" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB512"^^xsd:anyURI ; + qudt:symbol "GJ/s" ; + qudt:ucumCode "GJ.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gigajoule per second" . + +unit:GigaN + a qudt:Unit ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:N ; + rdfs:isDefinedBy ; + rdfs:label "GigaN" . + +unit:GigaN-M-PER-M2 + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB554" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB554"^^xsd:anyURI ; + qudt:symbol "GN·m/m²" ; + rdfs:isDefinedBy ; + rdfs:label "giganewton metre per square metre" . + +unit:GigaOHM + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA147" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA147"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit ohm" ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:OHM ; + qudt:symbol "GΩ" ; + qudt:ucumCode "GOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A87" ; + rdfs:isDefinedBy ; + rdfs:label "Gigaohm"@en . + +unit:GigaOHM-M + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the product out of the SI derived unit ohm and the SI unit metre" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA148" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA148"^^xsd:anyURI ; + qudt:symbol "GΩ·m" ; + qudt:ucumCode "GOhm.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A88" ; + rdfs:isDefinedBy ; + rdfs:label "gigaohm metre" . + +unit:GigaOHM-PER-M + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit ohm divided by the SI unit metre" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaOHM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAB496" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB496"^^xsd:anyURI ; + qudt:symbol "GΩ/m" ; + qudt:ucumCode "GOhm.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M26" ; + rdfs:isDefinedBy ; + rdfs:label "gigaohm per metre" . + +unit:GigaPA + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit pascal"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA153" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA153"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit pascal" ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:PA ; + qudt:symbol "GPa" ; + qudt:ucumCode "GPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A89" ; + rdfs:isDefinedBy ; + rdfs:label "Gigapascal"@en . + +unit:GigaPA-CentiM3-PER-GM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:KiloM2-PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificModulus ; + qudt:symbol "GPa·cm³/g" ; + qudt:ucumCode "GPa.cm3.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "GPa.cm3/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gigapascal Cubed Centimeter per Gram"@en-US ; + rdfs:label "Gigapascal Cubed Centimetre per Gram"@en . + +unit:GigaV + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit volt" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAC772" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC772"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:V ; + qudt:symbol "GV" ; + rdfs:isDefinedBy ; + rdfs:label "gigavolt" . + +unit:GigaV-A + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:GigaV ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB534" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB534"^^xsd:anyURI ; + qudt:symbol "GV·A" ; + qudt:ucumCode "GV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gigavolt ampere" . + +unit:GigaV-A_Reactive + a qudt:Unit ; + dcterms:description "0.000000001 of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:GigaVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC508" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC508"^^xsd:anyURI ; + qudt:symbol "GV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "gigavolt ampere reactive" . + +unit:GigaVA + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB534" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB534"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:VA ; + qudt:symbol "GVA" ; + qudt:ucumCode "GVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "gigavolt ampere" . + +unit:GigaVAR + a qudt:Unit ; + dcterms:description "0.000000001 of the unit volt ampere reactive" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC508" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC508"^^xsd:anyURI ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:VAR ; + qudt:symbol "GVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "gigavolt ampere reactive" . + +unit:GigaW + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI derived unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA154" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA154"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit watt" ; + qudt:prefix prefix:Giga ; + qudt:scalingOf unit:W ; + qudt:symbol "GW" ; + qudt:ucumCode "GW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A90" ; + rdfs:isDefinedBy ; + rdfs:label "Gigawatt"@en . + +unit:GigaW-HR + a qudt:Unit ; + dcterms:description """ + A $\\textit{Gigawatt Hour}$ is the 1,000,000,000-fold of the product of the SI derived unit watt and the unit hour. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000000000.0 ; + qudt:conversionMultiplierSN 3.6E12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GigaW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA155" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA155"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000 000-fold of the product of the SI derived unit watt and the unit hour" ; + qudt:symbol "GW·h" ; + qudt:ucumCode "GW.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GWH" ; + rdfs:isDefinedBy ; + rdfs:label "Gigawatt Hour"@en . + +unit:Gs + a qudt:Unit ; + dcterms:description """ + The $gauss$, abbreviated as $G$, is the cgs unit of measurement of a magnetic field $B$, + which is also known as the "magnetic flux density" or the "magnetic induction". + One gauss is defined as one maxwell per square centimeter; it equals $10^{-4} tesla$ (or $100 micro T$). + The Gauss is identical to maxwells per square centimetre; technically defined in a three-dimensional system, + it corresponds in the SI, with its extra base unit the ampere. + The gauss is quite small by earthly standards, 1 Gs being only about four times Earth's flux density, + but it is subdivided, with $1 gauss = 105 gamma$. + This unit of magnetic induction is also known as the $\\textit{abtesla}$. + """^^qudt:LatexString ; + dcterms:isReplacedBy unit:GAUSS ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gauss_%28unit%29"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gauss_(unit)"^^xsd:anyURI ; + qudt:informativeReference "http://www.diracdelta.co.uk/science/source/g/a/gauss/source.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-526?rskey=HAbfz2"^^xsd:anyURI ; + qudt:scalingOf unit:T ; + qudt:symbol "G" ; + qudt:ucumCode "G"^^qudt:UCUMcs ; + qudt:uneceCommonCode "76" ; + rdfs:isDefinedBy ; + rdfs:label "Gs"@en . + +unit:H + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Henry}$ is the SI unit of electric inductance. + A changing magnetic field induces an electric current in a loop of wire (or in a coil of many loops) located in the field. + Although the induced voltage depends only on the rate at which the magnetic flux changes, measured in webers per second, the amount of the current depends also on the physical properties of the coil. + A coil with an inductance of one henry requires a flux of one weber for each ampere of induced current. + If, on the other hand, it is the current which changes, then the induced field will generate a potential difference within the coil: + if the inductance is one henry a current change of one ampere per second generates a potential difference of one volt. + The henry is a large unit; inductances in practical circuits are measured in millihenrys (mH) or microhenrys (u03bc H). + The unit is named for the American physicist Joseph Henry (1797-1878), one of several scientists who discovered independently how magnetic fields can be used to generate alternating currents. + + A $\\textit{Henry}$ is defined as: + + $$\\text{H} \\; \\equiv \\; \\text{henry}\\; \\equiv\\; \\frac{\\text{Wb}}{\\text{A}}\\; \\equiv\\; \\frac{\\text{weber}}{\\text{amp}}\\; \\equiv\\ \\frac{\\text{V}\\cdot\\text{s}}{\\text{A}}\\; \\equiv\\; \\frac{\\text{volt} \\cdot \\text{second}}{\\text{amp}}\\; \\equiv\\ \\Omega\\cdot\\text{s}\\; \\equiv\\; \\text{ohm.second}$$ + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Henry"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:iec61360Code "0112/2///62720#UAA165" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Henry?oldid=491435978"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA165"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:henry ; + qudt:siUnitsExpression "Wb/A" ; + qudt:symbol "H" ; + qudt:ucumCode "H"^^qudt:UCUMcs ; + qudt:uneceCommonCode "81" ; + rdfs:isDefinedBy ; + rdfs:label "Henry"@de ; + rdfs:label "henr"@pl ; + rdfs:label "henrio"@es ; + rdfs:label "henrium"@la ; + rdfs:label "henry"@cs ; + rdfs:label "henry"@en ; + rdfs:label "henry"@fr ; + rdfs:label "henry"@hu ; + rdfs:label "henry"@it ; + rdfs:label "henry"@ms ; + rdfs:label "henry"@pt ; + rdfs:label "henry"@ro ; + rdfs:label "henry"@sl ; + rdfs:label "henry"@tr ; + rdfs:label "χένρι"@el ; + rdfs:label "генри"@ru ; + rdfs:label "хенри"@bg ; + rdfs:label "הנרי"@he ; + rdfs:label "هنري"@ar ; + rdfs:label "هنری"@fa ; + rdfs:label "हेनरी"@hi ; + rdfs:label "ヘンリー"@ja ; + rdfs:label "亨利"@zh . + +unit:H-PER-KiloOHM + a qudt:Unit ; + dcterms:description "SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:H ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA167" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA167"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm" ; + qudt:symbol "H/kΩ" ; + qudt:ucumCode "H.kOhm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H03" ; + rdfs:isDefinedBy ; + rdfs:label "Henry per Kiloohm"@en . + +unit:H-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The henry per meter (symbolized $H/m$) is the unit of magnetic permeability in the International System of Units ( SI ). Reduced to base units in SI, $1\\,H/m$ is the equivalent of one kilogram meter per square second per square ampere."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$H/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:H ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ; + qudt:hasQuantityKind quantitykind:Permeability ; + qudt:iec61360Code "0112/2///62720#UAA168" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Henry?oldid=491435978"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA168"^^xsd:anyURI ; + qudt:symbol "H/m" ; + qudt:ucumCode "H.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A98" ; + rdfs:isDefinedBy ; + rdfs:label "Henry per Meter"@en-US ; + rdfs:label "Henry per Metre"@en . + +unit:H-PER-OHM + a qudt:Unit ; + dcterms:description "SI derived unit henry divided by the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:H ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA166" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA166"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit henry divided by the SI derived unit ohm" ; + qudt:symbol "H/Ω" ; + qudt:ucumCode "H.Ohm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H04" ; + rdfs:isDefinedBy ; + rdfs:label "Henry per Ohm"@en . + +unit:HA + a qudt:Unit ; + dcterms:description "The customary metric unit of land area, equal to 100 ares. One hectare is a square hectometer, that is, the area of a square 100 meters on each side: exactly 10 000 square meters or approximately 107 639.1 square feet, 11 959.9 square yards, or 2.471 054 acres."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hectare"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAA532" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hectare?oldid=494256954"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA532"^^xsd:anyURI ; + qudt:scalingOf unit:M2 ; + qudt:siExactMatch si-unit:hectare ; + qudt:symbol "ha" ; + qudt:ucumCode "har"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HAR" ; + rdfs:isDefinedBy ; + rdfs:label "Hectare"@en . + +unit:HART + a qudt:Unit ; + dcterms:description "The \"Hartley\" is a unit of information."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 2.3025850929940456840179914546844 ; + qudt:conversionMultiplierSN 2.3025850929940456840179914546844E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB344" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB344"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "Hart" ; + qudt:uneceCommonCode "Q15" ; + rdfs:isDefinedBy ; + rdfs:label "Hartley"@en . + +unit:HART-PER-SEC + a qudt:Unit ; + dcterms:description "The \"Hartley per Second\" is a unit of information rate."^^rdf:HTML ; + qudt:conversionMultiplier 2.3025850929940456840179914546844 ; + qudt:conversionMultiplierSN 2.3025850929940456840179914546844E0 ; + qudt:expression "$Hart/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HART ; + ] ; + qudt:hasQuantityKind quantitykind:InformationFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB347" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB347"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:symbol "Hart/s" ; + qudt:uneceCommonCode "Q18" ; + rdfs:isDefinedBy ; + rdfs:label "Hartley per Second"@en . + +unit:HK + a qudt:Unit ; + dcterms:description "obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979" ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:iec61360Code "0112/2///62720#UAB439" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB439"^^xsd:anyURI ; + qudt:symbol "HK" ; + qudt:uneceCommonCode "P35" ; + rdfs:isDefinedBy ; + rdfs:label "Hefner-Kerze" . + +unit:HP + a qudt:Unit ; + dcterms:description "550 foot-pound force per second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 745.6999 ; + qudt:conversionMultiplierSN 7.456999E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Horsepower"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Horsepower?oldid=495510329"^^xsd:anyURI ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "HP" ; + qudt:ucumCode "[HP]"^^qudt:UCUMcs ; + qudt:udunitsCode "hp" ; + qudt:uneceCommonCode "K43" ; + rdfs:isDefinedBy ; + rdfs:label "Horsepower"@en . + +unit:HP_Boiler + a qudt:Unit ; + dcterms:description "\"Boiler Horsepower\" is a unit for 'Power' expressed as $hp_boiler$."^^qudt:LatexString ; + qudt:conversionMultiplier 9809.5 ; + qudt:conversionMultiplierSN 9.8095E3 ; + qudt:expression "$boiler_hp$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA535" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA535"^^xsd:anyURI ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "HP{boiler}" ; + qudt:uneceCommonCode "K42" ; + rdfs:isDefinedBy ; + rdfs:label "Boiler Horsepower"@en . + +unit:HP_Brake + a qudt:Unit ; + dcterms:description "unit of the power according to the Imperial system of units"^^rdf:HTML ; + qudt:conversionMultiplier 9809.5 ; + qudt:conversionMultiplierSN 9.8095E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA536" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA536"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the power according to the Imperial system of units" ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "HP{brake}" ; + qudt:uneceCommonCode "K42" ; + rdfs:isDefinedBy ; + rdfs:label "Horsepower (brake)"@en . + +unit:HP_Electric + a qudt:Unit ; + dcterms:description "unit of the power according to the Anglo-American system of units"^^rdf:HTML ; + qudt:conversionMultiplier 746.0 ; + qudt:conversionMultiplierSN 7.46E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA537" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA537"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the power according to the Anglo-American system of units" ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "HP{electric}" ; + qudt:uneceCommonCode "K43" ; + rdfs:isDefinedBy ; + rdfs:label "Horsepower (electric)"@en . + +unit:HP_H2O + a qudt:Unit ; + dcterms:description "unit of the power according to the Anglo-American system of units" ; + qudt:conversionMultiplier 746.043 ; + qudt:conversionMultiplierSN 7.46043E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:iec61360Code "0112/2///62720#UAA538" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA538"^^xsd:anyURI ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "water hp" ; + qudt:uneceCommonCode "F80" ; + rdfs:isDefinedBy ; + rdfs:label "horsepower (water)" . + +unit:HP_Metric + a qudt:Unit ; + dcterms:description "unit of the mechanical power according to the Anglo-American system of units"^^rdf:HTML ; + qudt:conversionMultiplier 735.4988 ; + qudt:conversionMultiplierSN 7.354988E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA534" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA534"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mechanical power according to the Anglo-American system of units" ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "HP{metric}" ; + qudt:uneceCommonCode "HJ" ; + rdfs:isDefinedBy ; + rdfs:label "Horsepower (metric)"@en . + +unit:HR + a qudt:Unit ; + dcterms:description "The hour (common symbol: h or h) is a unit of measurement of time. In modern usage, an hour comprises 60 minutes, or 3,600 seconds. It is approximately 1/24 of a mean solar day. An hour in the Universal Coordinated Time (UTC) time standard can include a negative or positive leap second, and may therefore have a duration of 3,599 or 3,601 seconds for adjustment purposes. Although it is not a standard defined by the International System of Units, the hour is a unit accepted for use with SI, represented by the symbol h."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hour"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA525" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hour?oldid=495040268"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA525"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:siExactMatch si-unit:hour ; + qudt:symbol "h" ; + qudt:ucumCode "h"^^qudt:UCUMcs ; + qudt:udunitsCode "h" ; + qudt:uneceCommonCode "HUR" ; + rdfs:isDefinedBy ; + rdfs:label "Hour"@en . + +unit:HR-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Hour Square Foot\" is an Imperial unit for 'Area Time' expressed as $hr-ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 334.450944 ; + qudt:conversionMultiplierSN 3.34450944E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$h-ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:symbol "h·ft²" ; + qudt:ucumCode "h.[ft_i]2"^^qudt:UCUMcs ; + qudt:ucumCode "h.[sft_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hour Square Foot"@en . + +unit:HR-PER-FT2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour" ; + qudt:conversionMultiplier 38750.07750015500031000062000124 ; + qudt:conversionMultiplierSN 3.875007750015500031000062000124E4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD842" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD842"^^xsd:anyURI ; + qudt:symbol "h/ft²" ; + qudt:ucumCode "h.[ft_i]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "hour per square foot" . + +unit:HR-PER-YR + a qudt:Unit ; + dcterms:description "Hours per year, used for the time an industrial facility or installation is active during one year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0001140771161305042208532968286561716 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:TimeRatio ; + qudt:plainTextDescription "hours (of activity) per year" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T1D0 ; + qudt:symbol "h/a" ; + qudt:ucumCode "h.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "h/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hours per Year"@en ; + rdfs:label "Uur per Jaar"@nl . + +unit:HR_Sidereal + a qudt:Unit ; + dcterms:description "Sidereal time is a time-keeping system astronomers use to keep track of the direction to point their telescopes to view a given star in the night sky. A mean sidereal day is about 23 h 56 m 4.1 s in length. However, due to variations in the rotation rate of the Earth, the rate of an ideal sidereal clock deviates from any simple multiple of a civil clock. In practice, the difference is kept track of by the difference UTC-UT1, which is measured by radio telescopes and kept on file and available to the public at the IERS and at the United States Naval Observatory. A Sidereal Hour is $1/24^{th}$ of a Sidereal Day. A mean sidereal day is 23 hours, 56 minutes, 4.0916 seconds (23.9344699 hours or 0.99726958 mean solar days), the time it takes Earth to make one rotation relative to the vernal equinox. (Due to nutation, an actual sidereal day is not quite so constant.) The vernal equinox itself precesses slowly westward relative to the fixed stars, completing one revolution in about 26,000 years, so the misnamed sidereal day (\"sidereal\" is derived from the Latin sidus meaning \"star\") is 0.0084 seconds shorter than Earth's period of rotation relative to the fixed stars."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3590.17 ; + qudt:conversionMultiplierSN 3.59017E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ; + qudt:scalingOf unit:SEC ; + qudt:symbol "h{sidereal}" ; + rdfs:isDefinedBy ; + rdfs:label "Sidereal Hour"@en . + +unit:HZ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + $\\textit{Hertz}$ (symbol $Hz$) is the SI unit of frequency defined as the number of cycles per second of a periodic phenomenon. + One of its most common uses is the description of the sine wave, particularly those used in radio and audio applications, such as the frequency of musical tones. + The word $\\bf{hertz}$ is named for Heinrich Rudolf Hertz, who was the first to conclusively prove the existence of electromagnetic waves. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hertz"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:CYC-PER-SEC ; + qudt:exactMatch unit:PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:iec61360Code "0112/2///62720#UAA170" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA170"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:hertz ; + qudt:symbol "Hz" ; + qudt:ucumCode "Hz"^^qudt:UCUMcs ; + qudt:udunitsCode "Hz" ; + qudt:uneceCommonCode "HTZ" ; + rdfs:isDefinedBy ; + rdfs:label "Hertz"@de ; + rdfs:label "herc"@pl ; + rdfs:label "hercio"@es ; + rdfs:label "hertz"@cs ; + rdfs:label "hertz"@en ; + rdfs:label "hertz"@fr ; + rdfs:label "hertz"@hu ; + rdfs:label "hertz"@it ; + rdfs:label "hertz"@ms ; + rdfs:label "hertz"@pt ; + rdfs:label "hertz"@ro ; + rdfs:label "hertz"@sl ; + rdfs:label "hertz"@tr ; + rdfs:label "hertzium"@la ; + rdfs:label "χερτζ"@el ; + rdfs:label "герц"@ru ; + rdfs:label "херц"@bg ; + rdfs:label "הרץ"@he ; + rdfs:label "هرتز"@ar ; + rdfs:label "هرتز"@fa ; + rdfs:label "हर्ट्ज"@hi ; + rdfs:label "ヘルツ"@ja ; + rdfs:label "赫兹"@zh . + +unit:HZ-M + a qudt:Unit ; + dcterms:description """$\\textit{Hertz Metre}$ is the product of the SI derived unit hertz and the SI base unit metre. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:iec61360Code "0112/2///62720#UAA171" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA171"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit hertz and the SI base unit metre" ; + qudt:symbol "Hz·m" ; + qudt:ucumCode "Hz.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H34" ; + rdfs:isDefinedBy ; + rdfs:label "Hertz Meter"@en-US ; + rdfs:label "Hertz Metre"@en . + +unit:HZ-PER-K + a qudt:Unit ; + dcterms:description """ + $\\textit{Hertz per Kelvin}$ is a unit for 'Inverse Time Temperature' expressed as $Hz K^{-1}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$Hz K^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:InverseTimeTemperature ; + qudt:symbol "Hz/K" ; + qudt:ucumCode "Hz.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hertz je Kelvin"@de ; + rdfs:label "herc na kelwin"@pl ; + rdfs:label "hercio por kelvin"@es ; + rdfs:label "hertz al kelvin"@it ; + rdfs:label "hertz bölü kelvin"@tr ; + rdfs:label "hertz na kelvin"@cs ; + rdfs:label "hertz par kelvin"@fr ; + rdfs:label "hertz pe kelvin"@ro ; + rdfs:label "hertz per kelvin"@en ; + rdfs:label "hertz per kelvin"@ms ; + rdfs:label "hertz por kelvin"@pt ; + rdfs:label "герц на кельвин"@ru ; + rdfs:label "هرتز بر کلوین"@fa ; + rdfs:label "هرتز لكل كلفن"@ar ; + rdfs:label "हर्ट्ज प्रति कैल्विन"@hi ; + rdfs:label "ヘルツ毎立方メートル"@ja . + +unit:HZ-PER-T + a qudt:Unit ; + dcterms:description "\"Hertz per Tesla\" is a unit for 'Electric Charge Per Mass' expressed as $Hz T^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$Hz T^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:symbol "Hz/T" ; + qudt:ucumCode "Hz.T-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hertz per Tesla"@en . + +unit:HZ-PER-V + a qudt:Unit ; + dcterms:description "In the Hertz per Volt standard the frequency of the note is directly related to the voltage. A pitch of a note goes up one octave when its frequency doubles, meaning that the voltage will have to double for every octave rise. Depending on the footage (octave) selected, nominally one volt gives 1000Hz, two volts 2000Hz and so on. In terms of notes, bottom C would be 0.25 volts, the next C up would be 0.5 volts, then 1V, 2V, 4V, 8V for the following octaves. This system was used mainly by Yamaha and Korg."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$Hz V^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMagneticFlux ; + qudt:symbol "Hz/V" ; + qudt:ucumCode "Hz.V-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hertz per Volt"@en . + +unit:H_Ab + a qudt:Unit ; + dcterms:description "Abhenry is the centimeter-gram-second electromagnetic unit of inductance, equal to one billionth of a henry."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abhenry"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:exactMatch unit:NanoH ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abhenry?oldid=477198643"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:H ; + qudt:symbol "abH" ; + qudt:ucumCode "nH"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abhenry"@en . + +unit:H_Stat + a qudt:Unit ; + dcterms:description """ + The $\\text{Stathenry (statH)}$ is a unit in the category of Electric inductance. + It is also known as $tathenries$. + This unit is commonly used in the cgs unit system. + $Stathenry$ has a dimension of $ML^2T^{-2}I^{-2}$ where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. + It can be converted to the corresponding standard SI unit H by multiplying its value by a factor of $8.987552 \\times 10^{11}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 898760000000.0 ; + qudt:conversionMultiplierSN 8.9876E11 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_inductance--stathenry.cfm"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:H ; + qudt:symbol "statH" ; + rdfs:isDefinedBy ; + rdfs:label "Stathenry"@en . + +unit:H_Stat-PER-CentiM + a qudt:Unit ; + dcterms:description "The Stathenry per Centimeter is a unit of measure for the absolute permeability of free space."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 89876000000000.0 ; + qudt:conversionMultiplierSN 8.9876E13 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:expression "$stath-per-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:H_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ; + qudt:hasQuantityKind quantitykind:Permeability ; + qudt:symbol "statH/cm" ; + rdfs:isDefinedBy ; + rdfs:label "Stathenry per Centimeter"@en-US ; + rdfs:label "Stathenry per Centimetre"@en . + +unit:HeartBeat + a qudt:Unit ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:symbol "heartbeat" ; + rdfs:isDefinedBy ; + rdfs:label "Heart Beat"@en . + +unit:HectoBAR + a qudt:Unit ; + dcterms:description "100-fold of the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 10000000.0 ; + qudt:conversionMultiplierSN 1.0E7 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB087" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB087"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the unit bar" ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:BAR ; + qudt:symbol "hbar" ; + qudt:ucumCode "hbar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HBA" ; + rdfs:isDefinedBy ; + rdfs:label "Hectobar"@en . + +unit:HectoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"HectoCoulomb\" is a unit for 'Electric Charge' expressed as $hC$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:C ; + qudt:symbol "hC" ; + qudt:ucumCode "hC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "HectoCoulomb"@en . + +unit:HectoGM + a qudt:Unit ; + dcterms:description "0.1-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB079" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB079"^^xsd:anyURI ; + qudt:plainTextDescription "0.1-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:GM ; + qudt:symbol "hg" ; + qudt:ucumCode "hg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HGM" ; + rdfs:isDefinedBy ; + rdfs:label "Hectogram"@en . + +unit:HectoL + a qudt:Unit ; + dcterms:description "100-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA533" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA533"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the unit litre" ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:L ; + qudt:symbol "hL" ; + qudt:ucumCode "hL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HLT" ; + rdfs:isDefinedBy ; + rdfs:label "Hectolitre"@en ; + rdfs:label "Hectolitre"@en-US . + +unit:HectoM + a qudt:Unit ; + dcterms:description "100-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB062" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB062"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the SI base unit metre" ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:M ; + qudt:symbol "hm" ; + qudt:ucumCode "hm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HMT" ; + rdfs:isDefinedBy ; + rdfs:label "Hectometer"@en-US ; + rdfs:label "Hectometre"@en . + +unit:HectoPA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Hectopascal is a unit of pressure. 1 Pa is approximately the pressure exerted by a 10-g mass resting on a 1-cm2 area. 1013 hPa = 1 atm. There are 100 pascals in 1 hectopascal."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:exactMatch unit:MilliBAR ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA527" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA527"^^xsd:anyURI ; + qudt:prefix prefix:Hecto ; + qudt:scalingOf unit:PA ; + qudt:symbol "hPa" ; + qudt:ucumCode "hPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A97" ; + rdfs:comment "Hectopascal is commonly used in meteorology to report values for atmospheric pressure. It is equivalent to millibar." ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascal"@en . + +unit:HectoPA-L-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 100-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA530" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA530"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 100-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second" ; + qudt:symbol "hPa·L/s" ; + qudt:ucumCode "hPa.L.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F93" ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascal Liter per Second"@en-US ; + rdfs:label "Hectopascal Litre per Second"@en . + +unit:HectoPA-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 100-fold of the SI unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA531" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA531"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 100-fold of the SI unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "hPa·m³/s" ; + qudt:ucumCode "hPa.m3.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F94" ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascal Cubic Meter per Second"@en-US ; + rdfs:label "Hectopascal Cubic Metre per Second"@en . + +unit:HectoPA-PER-BAR + a qudt:Unit ; + dcterms:description "100-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA529" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA529"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the unit bar" ; + qudt:symbol "hPa/bar" ; + qudt:ucumCode "hPa.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E99" ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascal per Bar"@en . + +unit:HectoPA-PER-HR + a qudt:Unit ; + dcterms:description "A change in pressure of one hundred Newtons per square metre (100 Pascals) per hour. Equivalent to a change of one millibar per hour."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "hPa/h" ; + qudt:ucumCode "hPa.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascals per hour"@en . + +unit:HectoPA-PER-K + a qudt:Unit ; + dcterms:description "100-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA528" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA528"^^xsd:anyURI ; + qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the SI base unit kelvin" ; + qudt:symbol "hPa/K" ; + qudt:ucumCode "hPa.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F82" ; + rdfs:isDefinedBy ; + rdfs:label "Hectopascal per Kelvin"@en . + +unit:HectoPA-PER-M + a qudt:Unit ; + dcterms:description "100-fold of the SI derived unit pascal divided by the SI base unit metre" ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB422" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB422"^^xsd:anyURI ; + qudt:symbol "hPa/m" ; + qudt:ucumCode "hPa.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P82" ; + rdfs:isDefinedBy ; + rdfs:label "hectopascal per metre" . + +unit:Hundredweight_UK + a qudt:Unit ; + dcterms:description "out of use unit of the mass according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 50.80235 ; + qudt:conversionMultiplierSN 5.080235E1 ; + qudt:exactMatch unit:CWT_LONG ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA405" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA405"^^xsd:anyURI ; + qudt:plainTextDescription "out of use unit of the mass according to the Imperial system of units" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "cwt{long}" ; + qudt:ucumCode "[lcwt_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CWI" ; + rdfs:isDefinedBy ; + rdfs:label "Hundredweight (UK)"@en . + +unit:Hundredweight_US + a qudt:Unit ; + dcterms:description "out of use unit of the mass according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 45.359237 ; + qudt:conversionMultiplierSN 4.5359237E1 ; + qudt:exactMatch unit:CWT_SHORT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA406" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA406"^^xsd:anyURI ; + qudt:plainTextDescription "out of use unit of the mass according to the Imperial system of units" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "cwt{short}" ; + qudt:ucumCode "[scwt_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "CWA" ; + rdfs:isDefinedBy ; + rdfs:label "Hundredweight (US)"@en . + +unit:IN + a qudt:Unit ; + dcterms:description "An inch is the name of a unit of length in a number of different systems, including Imperial units, and United States customary units. There are 36 inches in a yard and 12 inches in a foot. Corresponding units of area and volume are the square inch and the cubic inch."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0254 ; + qudt:conversionMultiplierSN 2.54E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Inch"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA539" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Inch?oldid=492522790"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA539"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "in" ; + qudt:ucumCode "[in_i]"^^qudt:UCUMcs ; + qudt:udunitsCode "in" ; + qudt:uneceCommonCode "INH" ; + rdfs:isDefinedBy ; + rdfs:label "Inch"@en . + +unit:IN-PDL + a qudt:Unit ; + dcterms:description "Unit of work (force multiplied by path) according to the Imperial system of units as a product unit inch multiplied by poundal. Product of the non SI-conform unit of the force poundal and the unit inch according to the Anglo-American and Imperial system of units."^^qudt:LatexString ; + qudt:conversionMultiplier 0.0035116758411504 ; + qudt:conversionMultiplierSN 3.5116758411504E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAB437" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB437"^^xsd:anyURI ; + qudt:symbol "in·pdl" ; + qudt:ucumCode "[in_i].[lb_av].[ft_i].s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N47" ; + rdfs:isDefinedBy ; + rdfs:label "inch poundal" . + +unit:IN-PER-2PiRAD + a qudt:Unit ; + dcterms:description "unit of the translation factor for implementation from rotation to linear move according to the Anglo-American and the Imperial system of units" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:2PiRAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Rotary-TranslatoryMotionConversion ; + qudt:iec61360Code "0112/2///62720#UAA727" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA727"^^xsd:anyURI ; + qudt:symbol "in/revolution" ; + qudt:uneceCommonCode "H57" ; + rdfs:isDefinedBy ; + rdfs:label "inch per two pi radians" . + +unit:IN-PER-DEG_F + a qudt:Unit ; + dcterms:description "unit inch according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.04572 ; + qudt:conversionMultiplierSN 4.572E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA540" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA540"^^xsd:anyURI ; + qudt:plainTextDescription "unit inch according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ; + qudt:symbol "in/°F" ; + qudt:ucumCode "[in_i].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K45" ; + rdfs:isDefinedBy ; + rdfs:label "Inch per Degree Fahrenheit"@en . + +unit:IN-PER-MIN + a qudt:Unit ; + dcterms:description "The inch per minute is a unit of speed or velocity. It expresses the distance in inches (in) traveled or displaced, divided by time in minutes (min). The equivalent SI unit is the metre per second." ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000423333333 ; + qudt:conversionMultiplierSN 4.23333333E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB393" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB393"^^xsd:anyURI ; + qudt:symbol "in/min" ; + qudt:ucumCode "[in_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M63" ; + rdfs:isDefinedBy ; + rdfs:label "Inch per Minute"@en . + +unit:IN-PER-PSI + a qudt:Unit ; + dcterms:description "unit inch according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.00000368395837305726250345733538042194622 ; + qudt:conversionMultiplierSN 3.68395837305726250345733538042194622E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA541" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA541"^^xsd:anyURI ; + qudt:symbol "in/psi" ; + qudt:ucumCode "[in_i].[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K46" ; + rdfs:isDefinedBy ; + rdfs:label "inch per psi" . + +unit:IN-PER-SEC + a qudt:Unit ; + dcterms:description "The inch per second is a unit of speed or velocity. It expresses the distance in inches (in) traveled or displaced, divided by time in seconds (s, or sec). The equivalent SI unit is the metre per second. Abbreviations include in/s, in/sec, ips, and less frequently in s."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0254 ; + qudt:conversionMultiplierSN 2.54E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in-per-sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:PropellantBurnRate ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA542" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA542"^^xsd:anyURI ; + qudt:symbol "in/s" ; + qudt:ucumCode "[in_i].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "IU" ; + rdfs:isDefinedBy ; + rdfs:label "Inch per Second"@en . + +unit:IN-PER-SEC-DEG_F + a qudt:Unit ; + dcterms:description "unit inch according to the Anglo-American and the Imperial system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.0457199999999999963424000000000003048 ; + qudt:conversionMultiplierSN 4.57199999999999963424000000000003048E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA543" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA543"^^xsd:anyURI ; + qudt:symbol "in/(s·°F)" ; + qudt:ucumCode "[in_i].s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K47" ; + rdfs:isDefinedBy ; + rdfs:label "inch per second degree Fahrenheit" . + +unit:IN-PER-SEC-PSI + a qudt:Unit ; + dcterms:description "quotient of the unit inch according to the Anglo-American and the Imperial system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.00000368395837305726250345733538042194622 ; + qudt:conversionMultiplierSN 3.68395837305726250345733538042194622E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA544" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA544"^^xsd:anyURI ; + qudt:symbol "in/(s·psi)" ; + qudt:ucumCode "[in_i].s-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K48" ; + rdfs:isDefinedBy ; + rdfs:label "inch per second psi" . + +unit:IN-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Inch per Square second}$ is an Imperial unit for $\\textit{Linear Acceleration}$ expressed as $in/s^2$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0254 ; + qudt:conversionMultiplierSN 2.54E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in/s2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB044" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB044"^^xsd:anyURI ; + qudt:symbol "in/s²" ; + qudt:ucumCode "[in_i].s-2"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "IV" ; + rdfs:isDefinedBy ; + rdfs:label "Inch per Square second"@en . + +unit:IN-PER-YR + a qudt:Unit ; + dcterms:description "unit of the length according to the Anglo-American and Imperial system of units divided by the unit common year with 365 days" ; + qudt:conversionMultiplier 0.0000000008048774304763353360204831799629884 ; + qudt:conversionMultiplierSN 8.048774304763353360204831799629884E-10 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB370" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB370"^^xsd:anyURI ; + qudt:symbol "in/a" ; + qudt:ucumCode "[in_i].a-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M61" ; + rdfs:isDefinedBy ; + rdfs:label "inch per year" . + +unit:IN2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A square inch is a unit of area, equal to the area of a square with sides of one inch. The following symbols are used to denote square inches: square in, sq inches, sq inch, sq in inches/-2, inch/-2, in/-2, inches^2, $inch^2$, $in^2$, $inches^2$, $inch^2$, $in^2$ or in some cases $\"^2$. The square inch is a common unit of measurement in the United States and the United Kingdom."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00064516 ; + qudt:conversionMultiplierSN 6.4516E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA547" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA547"^^xsd:anyURI ; + qudt:symbol "in²" ; + qudt:ucumCode "[in_i]2"^^qudt:UCUMcs ; + qudt:ucumCode "[sin_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "INK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Inch"@en . + +unit:IN2-PER-SEC + a qudt:Unit ; + dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00064516 ; + qudt:conversionMultiplierSN 6.4516E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:iec61360Code "0112/2///62720#UAA548" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA548"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2 divided by the SI base unit second" ; + qudt:symbol "in²/s" ; + qudt:ucumCode "[sin_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G08" ; + rdfs:isDefinedBy ; + rdfs:label "Square Inch per Second"@en . + +unit:IN3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The cubic inch is a unit of measurement for volume in the Imperial units and United States customary units systems. It is the volume of a cube with each of its three sides being one inch long. The cubic inch and the cubic foot are still used as units of volume in the United States, although the common SI units of volume, the liter, milliliter, and cubic meter, are continually replacing them, especially in manufacturing and high technology. One cubic foot is equal to exactly 1728 cubic inches."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000016387064 ; + qudt:conversionMultiplierSN 1.6387064E-5 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA549" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA549"^^xsd:anyURI ; + qudt:symbol "in³" ; + qudt:ucumCode "[cin_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "INQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Inch"@en . + +unit:IN3-PER-HR + a qudt:Unit ; + dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000004551961 ; + qudt:conversionMultiplierSN 4.551961E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA550" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA550"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour" ; + qudt:symbol "in³/h" ; + qudt:ucumCode "[cin_i].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G56" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Inch per Hour"@en . + +unit:IN3-PER-LB + a qudt:Unit ; + dcterms:description "power of the unit inch according to the Anglo-American and Imperial system of units by exponent 3 divided by the avoirdupois pound according to the avoirdupois unit system" ; + qudt:conversionMultiplier 0.00003612729200008368747472537952964244 ; + qudt:conversionMultiplierSN 3.612729200008368747472537952964244E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB411" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB411"^^xsd:anyURI ; + qudt:symbol "in³/lbm" ; + qudt:ucumCode "[in_i]3.[lb_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N30" ; + rdfs:isDefinedBy ; + rdfs:label "cubic inch per pound" . + +unit:IN3-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Cubic Inch per Minute\" is an Imperial unit for 'Volume Per Unit Time' expressed as $in^{3}/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000027311773333333333 ; + qudt:conversionMultiplierSN 2.7311773333333333E-7 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$in^{3}/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA551" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA551"^^xsd:anyURI ; + qudt:symbol "in³/min" ; + qudt:ucumCode "[cin_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[cin_i]/min"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]3.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]3/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G57" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Inch per Minute"@en . + +unit:IN3-PER-SEC + a qudt:Unit ; + dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00001638706 ; + qudt:conversionMultiplierSN 1.638706E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA552" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA552"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "in³/s" ; + qudt:ucumCode "[cin_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G58" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Inch per Second"@en . + +unit:IN4 + a qudt:Unit ; + dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 4"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000004162314 ; + qudt:conversionMultiplierSN 4.162314E-7 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:iec61360Code "0112/2///62720#UAA545" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA545"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 4" ; + qudt:symbol "in⁴" ; + qudt:ucumCode "[in_i]4"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D69" ; + rdfs:isDefinedBy ; + rdfs:label "Quartic Inch"@en . + +unit:IN_H2O + a qudt:Unit ; + dcterms:description "Inches of water, wc, inch water column (inch WC), inAq, Aq, or inH2O is a non-SI unit for pressure. The units are by convention and due to the historical measurement of certain pressure differentials. It is used for measuring small pressure differences across an orifice, or in a pipeline or shaft. Inches of water can be converted to a pressure unit using the formula for pressure head. It is defined as the pressure exerted by a column of water of 1 inch in height at defined conditions for example $39 ^\\circ F$ at the standard acceleration of gravity; 1 inAq is approximately equal to 249 pascals at $0 ^\\circ C$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 249.080024 ; + qudt:conversionMultiplierSN 2.49080024E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Inch_of_water"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA553" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Inch_of_water?oldid=466175519"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA553"^^xsd:anyURI ; + qudt:scalingOf unit:PA ; + qudt:symbol "inH₂0" ; + qudt:ucumCode "[in_i'H2O]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F78" ; + rdfs:isDefinedBy ; + rdfs:label "Inch of Water"@en . + +unit:IN_H2O_39dot2DEG_F + a qudt:Unit ; + dcterms:description "non SI-conform unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 inH₂O meets the static pressure, which is generated by a head of water at a temperature of 39.2°F with a height of 1 inch" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB240" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB240"^^xsd:anyURI ; + qudt:symbol "inH₂O (39.2 °F)" ; + qudt:uneceCommonCode "N18" ; + rdfs:isDefinedBy ; + rdfs:label "inch of water (39.2 °F)" . + +unit:IN_H2O_60DEG_F + a qudt:Unit ; + dcterms:description "non SI-conform unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 inH₂O meets the static pressure, which is generated by a head of water at a temperature of 60°F with a height of 1 inch" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB241" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB241"^^xsd:anyURI ; + qudt:symbol "inH₂O (60 °F)" ; + qudt:uneceCommonCode "N19" ; + rdfs:isDefinedBy ; + rdfs:label "inch of water (60 °F)" . + +unit:IN_HG + a qudt:Unit ; + dcterms:description "Inches of mercury, (inHg) is a unit of measurement for pressure. It is still widely used for barometric pressure in weather reports, refrigeration and aviation in the United States, but is seldom used elsewhere. It is defined as the pressure exerted by a column of mercury of 1 inch in height at $32 ^\\circ F$ at the standard acceleration of gravity. 1 inHg = 3,386.389 pascals at $0 ^\\circ C$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3386.389 ; + qudt:conversionMultiplierSN 3.386389E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Inch_of_mercury"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA554" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Inch_of_mercury?oldid=486634645"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA554"^^xsd:anyURI ; + qudt:scalingOf unit:PA ; + qudt:symbol "inHg" ; + qudt:ucumCode "[in_i'Hg]"^^qudt:UCUMcs ; + qudt:udunitsCode "inHg" ; + qudt:udunitsCode "in_Hg" ; + qudt:uneceCommonCode "F79" ; + rdfs:isDefinedBy ; + rdfs:label "Inch of Mercury"@en . + +unit:IN_HG_32DEG_F + a qudt:Unit ; + dcterms:description "non SI-conform unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 inHg meets the static pressure, which is generated by a mercury at a temperature of 32°F with a height of 1 inch" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB238" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB238"^^xsd:anyURI ; + qudt:symbol "inHg (32 °F)" ; + qudt:uneceCommonCode "N16" ; + rdfs:isDefinedBy ; + rdfs:label "inch of mercury (32 °F)" . + +unit:IN_HG_60DEG_F + a qudt:Unit ; + dcterms:description "non SI-conform unit of pressure according to the Anglo-American and Imperial system for units, whereas the value of 1 inHg meets the static pressure, which is generated by a mercury at a temperature of 60°F with a height of 1 inch" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB239" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB239"^^xsd:anyURI ; + qudt:symbol "inHg (60 °F)" ; + qudt:uneceCommonCode "N17" ; + rdfs:isDefinedBy ; + rdfs:label "inch of mercury (60 °F)" . + +unit:IU + a qudt:Unit ; + dcterms:description """ + The $\\textit{International Unit}$ is a unit for $\\textit{Amount Of Substance}$ expressed as $IU$. + Note that the magnitude depends on the substance, thus there is no fixed conversion multiplier. + """^^qudt:LatexString ; + qudt:dbpediaMatch "http://dbpedia.org/resource/International_unit"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAB603" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/International_unit?oldid=488801913"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB603"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "IU" ; + qudt:ucumCode "[IU]"^^qudt:UCUMcs ; + qudt:ucumCode "[iU]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "International Unit"@en . + +unit:IU-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ +The $\\textit{International Unit per Liter}$ is a unit for 'Serum Or Plasma Level' expressed as $IU/L$. +The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier. +"""^^qudt:LatexString ; + qudt:expression "$IU/L$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IU ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:SerumOrPlasmaLevel ; + qudt:symbol "IU/L" ; + qudt:ucumCode "[IU].L-1"^^qudt:UCUMcs ; + qudt:ucumCode "[IU]/L"^^qudt:UCUMcs ; + qudt:ucumCode "[iU].L-1"^^qudt:UCUMcs ; + qudt:ucumCode "[iU]/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "International Unit per Liter"@en-US ; + rdfs:label "International Unit per Litre"@en ; + rdfs:seeAlso unit:IU . + +unit:IU-PER-MilliGM + a qudt:Unit ; + dcterms:description """ +

International Unit per milligramme. +The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier. +

"""^^rdf:HTML ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IU ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:plainTextDescription "International Units per milligramme." ; + qudt:symbol "IU/mg" ; + qudt:ucumCode "[IU].mg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "International Unit per milligram"@en . + +unit:IU-PER-MilliL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ +The $\\textit{International Unit per Milliliter}$ is a unit for 'Serum Or Plasma Level' expressed as $IU/mL$. +The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier. +"""^^qudt:LatexString ; + qudt:expression "$IU/mL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IU ; + ] ; + qudt:hasQuantityKind quantitykind:SerumOrPlasmaLevel ; + qudt:symbol "IU/mL" ; + qudt:ucumCode "[IU].mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "[IU]/mL"^^qudt:UCUMcs ; + qudt:ucumCode "[iU].mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "[iU]/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "International Unit per milliliter"@en ; + rdfs:label "International Unit per milliliter"@en-US . + +unit:J + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Joule}$ is the SI unit of work or energy, defined to be the work done by a force of one newton acting to move an object through a distance of one meter in the direction in which the force is applied. + Equivalently, since kinetic energy is one half the mass times the square of the velocity, one joule is the kinetic energy of a mass of two kilograms moving at a velocity of $1 m/s$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Joule"^^xsd:anyURI ; + qudt:exactMatch unit:N-M ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ExchangeIntegral ; + qudt:hasQuantityKind quantitykind:HamiltonFunction ; + qudt:hasQuantityKind quantitykind:LagrangeFunction ; + qudt:hasQuantityKind quantitykind:LevelWidth ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA172" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Joule?oldid=494340406"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA172"^^xsd:anyURI ; + qudt:latexDefinition "$$\\text{J}\\ \\equiv\\ \\text{joule}\\ \\equiv\\ \\text{CV}\\ \\equiv\\ \\text{coulomb.volt}\\ \\equiv\\ \\frac{\\text{eV}}{1.602\\ 10^{-19}}\\ \\equiv\\ \\frac{\\text{electron.volt}}{1.602\\ 10^{-19}}$$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:plainTextDescription "The SI unit of work or energy, defined to be the work done by a force of one newton acting to move an object through a distance of one meter in the direction in which the force is applied. Equivalently, since kinetic energy is one half the mass times the square of the velocity, one joule is the kinetic energy of a mass of two kilograms moving at a velocity of 1 m/s. This is the same as 107 ergs in the CGS system, or approximately 0.737 562 foot-pound in the traditional English system. In other energy units, one joule equals about 9.478 170 x 10-4 Btu, 0.238 846 (small) calories, or 2.777 778 x 10-4 watt hour. The joule is named for the British physicist James Prescott Joule (1818-1889), who demonstrated the equivalence of mechanical and thermal energy in a famous experiment in 1843. " ; + qudt:siExactMatch si-unit:joule ; + qudt:symbol "J" ; + qudt:ucumCode "J"^^qudt:UCUMcs ; + qudt:udunitsCode "J" ; + qudt:uneceCommonCode "JOU" ; + rdfs:isDefinedBy ; + rdfs:label "Joule"@de ; + rdfs:label "dżul"@pl ; + rdfs:label "joule"@cs ; + rdfs:label "joule"@en ; + rdfs:label "joule"@fr ; + rdfs:label "joule"@hu ; + rdfs:label "joule"@it ; + rdfs:label "joule"@ms ; + rdfs:label "joule"@pt ; + rdfs:label "joule"@ro ; + rdfs:label "joule"@sl ; + rdfs:label "joule"@tr ; + rdfs:label "joulium"@la ; + rdfs:label "julio"@es ; + rdfs:label "τζάουλ"@el ; + rdfs:label "джаул"@bg ; + rdfs:label "джоуль"@ru ; + rdfs:label "ژول"@fa ; + rdfs:label "जूल"@hi ; + rdfs:label "ジュール"@ja ; + rdfs:label "焦耳"@zh . + +unit:J-M-PER-MOL + a qudt:Unit ; + dcterms:description """$\\textit{Joule Meter per Mole}$ is a unit for 'Length Molar Energy' expressed as: + $$J \\cdot m \\cdot mol^{-1}$$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J m mol^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMolarEnergy ; + qudt:symbol "J·m/mol" ; + qudt:ucumCode "J.m.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "J.m/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule Meter per Mole"@en-US ; + rdfs:label "Joule Metre per Mole"@en . + +unit:J-M2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TotalAtomicStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAA181" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA181"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "J·m²" ; + qudt:ucumCode "J.m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D73" ; + rdfs:isDefinedBy ; + rdfs:label "Joule Square Meter"@en-US ; + rdfs:label "Joule Square Metre"@en . + +unit:J-M2-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$j-m2/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:TotalMassStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAB487" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB487"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "J·m²/kg" ; + qudt:ucumCode "J.m2.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B20" ; + rdfs:isDefinedBy ; + rdfs:label "Joule Square Meter per Kilogram"@en-US ; + rdfs:label "Joule Square Metre per Kilogram"@en . + +unit:J-PER-CentiM2 + a qudt:Unit ; + dcterms:description "derived SI unit joule divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:iec61360Code "0112/2///62720#UAB188" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB188"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit joule divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "J/cm²" ; + qudt:ucumCode "J.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E43" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Square Centimeter"@en-US ; + rdfs:label "Joule per Square Centimetre"@en . + +unit:J-PER-CentiM2-DAY + a qudt:Unit ; + dcterms:description "Radiant energy per 10^-4 SI unit area over a period of one day."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:Radiosity ; + qudt:symbol "J/(cm²·d)" ; + qudt:ucumCode "J.cm-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joules per square centimetre day"@en . + +unit:J-PER-CentiM3-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Joule per Cubic Centimeter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $J/(cm^{3} K)$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$J/(cm^{3} K)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:plainTextDescription "Joule per Cubic Centimeter Kelvin is a unit for Volumetric Heat Capacity expressed as J/(cm³·K)" ; + qudt:symbol "J/(cm³·K)" ; + qudt:ucumCode "J.cm-3.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "J/(cm3.K)"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Cubic Centimeter Kelvin"@en-US ; + rdfs:label "Joule per Cubic Centimetre Kelvin"@en . + +unit:J-PER-DAY + a qudt:Unit ; + dcterms:description "quotient from the SI derived unit joule divided by the unit day" ; + qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB446" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB446"^^xsd:anyURI ; + qudt:symbol "J/d" ; + qudt:ucumCode "J.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P17" ; + rdfs:isDefinedBy ; + rdfs:label "joule per day" . + +unit:J-PER-GM + a qudt:Unit ; + dcterms:description "SI derived unit joule divided by the 0.001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAA174" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA174"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit joule divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "J/g" ; + qudt:ucumCode "J.g-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D95" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Gram"@en . + +unit:J-PER-GM-DEG_C + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:plainTextDescription "Unit for expressing the specific heat capacity." ; + qudt:symbol "J/(g·°C)" ; + qudt:ucumCode "J.g-1.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "joule per gram degree celsius"@en . + +unit:J-PER-GM-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Joule per Gram Kelvin is a unit typically used for specific heat capacity." ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:latexSymbol "$\\frac{J}{g \\cdot K}$"^^qudt:LatexString ; + qudt:plainTextDescription "Unit for expressing the specific heat capacity." ; + qudt:symbol "J/(g·K)" ; + qudt:ucumCode "J.g-1.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Gram Kelvin"@en . + +unit:J-PER-HR + a qudt:Unit ; + dcterms:description "SI derived unit joule divided by the 3600 times the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB445" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB445"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit joule divided by the 3600 times the SI base unit second" ; + qudt:symbol "J/h" ; + qudt:ucumCode "J.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P16" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Hour"@en . + +unit:J-PER-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Joule Per Kelvin (J/K) is a unit in the category of Entropy. It is also known as joules per kelvin, joule/kelvin. This unit is commonly used in the SI unit system. Joule Per Kelvin (J/K) has a dimension of $ML^{2}T^{-2}Q^{-1}$ where $M$ is mass, $L$ is length, $T$ is time, and Q is temperature. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Entropy ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAA173" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA173"^^xsd:anyURI ; + qudt:symbol "J/K" ; + qudt:ucumCode "J.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "JE" ; + rdfs:isDefinedBy ; + rdfs:label "Joule je Kelvin"@de ; + rdfs:label "dżul na kelwin"@pl ; + rdfs:label "joule al kelvin"@it ; + rdfs:label "joule bölü kelvin"@tr ; + rdfs:label "joule na kelvin"@cs ; + rdfs:label "joule na kelvin"@sl ; + rdfs:label "joule par kelvin"@fr ; + rdfs:label "joule pe kelvin"@ro ; + rdfs:label "joule per kelvin"@en ; + rdfs:label "joule per kelvin"@ms ; + rdfs:label "joule por kelvin"@pt ; + rdfs:label "julio por kelvin"@es ; + rdfs:label "джоуль на кельвин"@ru ; + rdfs:label "جول لكل كلفن"@ar ; + rdfs:label "ژول بر کلوین"@fa ; + rdfs:label "जूल प्रति कैल्विन"@hi ; + rdfs:label "ジュール毎立方メートル"@ja ; + rdfs:label "焦耳每开尔文"@zh . + +unit:J-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + A $\\textit{Joule Per Kilogram}$, ($J/kg$), is a unit in the category of Thermal heat capacity. + It is also known as $\\textit{joules per kilogram}$. + The unit has a dimension of $L2T^{-2}$ where $L$ is length, and $T$ is time. + This unit is the standard SI unit in this category. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAA175" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA175"^^xsd:anyURI ; + qudt:symbol "J/kg" ; + qudt:ucumCode "J.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "J/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J2" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Kilogram"@en . + +unit:J-PER-KiloGM-DEG_C + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:plainTextDescription "Unit for expressing the specific heat capacity." ; + qudt:symbol "J/(kg·°C)" ; + qudt:ucumCode "J.kg-1.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule je Kilogramm Grad Celsius"@de ; + rdfs:label "dżul na kilogramostopień celsjusza"@pl ; + rdfs:label "joule al chilogrammo per grado celsius"@it ; + rdfs:label "joule na kilogram stopinja celzija"@sl ; + rdfs:label "joule na kilogram stupně celsia"@cs ; + rdfs:label "joule par kilogramme-degré celsius"@fr ; + rdfs:label "joule pe kilogram-grad celsius"@ro ; + rdfs:label "joule per kilogram celsius"@tr ; + rdfs:label "joule per kilogram darjah celsius"@ms ; + rdfs:label "joule per kilogram degree celsius"@en ; + rdfs:label "joule por quilograma grau celsius"@pt ; + rdfs:label "julio porkilogramo grado celsius"@es ; + rdfs:label "джоуль на килограмм-градус цельсия"@ru . + +unit:J-PER-KiloGM-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + Specific heat capacity - The heat required to raise unit mass of a substance by unit temperature interval under specified conditions, + such as constant pressure: usually measured in joules per kelvin per kilogram. + Symbol $c_p$ (for constant pressure). + Also called specific heat. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J-per-kg-K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA176" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA176"^^xsd:anyURI ; + qudt:latexSymbol "$J/(kg \\cdot K)$"^^qudt:LatexString ; + qudt:symbol "J/(K·kg)" ; + qudt:ucumCode "J.kg-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B11" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Kilogram Kelvin"@en . + +unit:J-PER-KiloGM-K-M3 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$j-per-kg-k-m3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificHeatVolume ; + qudt:symbol "J/(K·kg·m³)" ; + qudt:ucumCode "J.kg-1.K.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Kilogram Kelvin Cubic Meter"@en-US ; + rdfs:label "Joule per Kilogram Kelvin Cubic Metre"@en . + +unit:J-PER-KiloGM-K-PA + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$j-per-kg-k-pa$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificHeatPressure ; + qudt:symbol "J/(K·kg·Pa)" ; + qudt:ucumCode "J.kg-1.K-1.Pa-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Kilogram Kelvin Pascal"@en . + +unit:J-PER-M + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:expression "$j/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ; + qudt:hasQuantityKind quantitykind:TotalLinearStoppingPower ; + qudt:iec61360Code "0112/2///62720#UAA178" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA178"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "J/m" ; + qudt:ucumCode "J.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "J/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B12" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Meter"@en-US ; + rdfs:label "Joule per Metre"@en . + +unit:J-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Joule Per Square Meter ($J/m^2$) is a unit in the category of Energy density. It is also known as joules per square meter, joule per square metre, joule/square meter, joule/square metre. This unit is commonly used in the SI unit system."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyFluence ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:RadiantFluence ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:iec61360Code "0112/2///62720#UAA179" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA179"^^xsd:anyURI ; + qudt:symbol "J/m²" ; + qudt:ucumCode "J.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "J/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B13" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Square Meter"@en-US ; + rdfs:label "Joule per Square Metre"@en . + +unit:J-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Joule Per Cubic Meter}$ ($J/m^{3}$) is a unit in the category of Energy density. It is also known as joules per cubic meter, joule per cubic metre, joules per cubic metre, joule/cubic meter, joule/cubic metre. This unit is commonly used in the SI unit system. It has a dimension of $ML^{-1}T^{-2}$ where $M$ is mass, $L$ is length, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$j-per-m3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticEnergyDensity ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:hasQuantityKind quantitykind:RadiantEnergyDensity ; + qudt:hasQuantityKind quantitykind:VolumicElectromagneticEnergy ; + qudt:iec61360Code "0112/2///62720#UAA180" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA180"^^xsd:anyURI ; + qudt:symbol "J/m³" ; + qudt:ucumCode "J.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "J/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B8" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Cubic Meter"@en-US ; + rdfs:label "Joule per Cubic Metre"@en . + +unit:J-PER-M3-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Joule per Cubic Meter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $J/(m^{3} K)$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/(m^{3} K)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:symbol "J/(m³·K)" ; + qudt:ucumCode "J.m-3.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Cubic Meter Kelvin"@en-US ; + rdfs:label "Joule per Cubic Metre Kelvin"@en . + +unit:J-PER-M4 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Joule Per Quartic Meter}$ ($J/m^4$) is a unit for the spectral concentration of radiant energy density (in terms of wavelength), or the spectral radiant energy density (in terms of wave length). + This unit is commonly used in the SI unit system. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$J/m^4$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -4 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAA177" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA177"^^xsd:anyURI ; + qudt:symbol "J/m⁴" ; + qudt:ucumCode "J.m-4"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B14" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Quartic Meter"@en-US ; + rdfs:label "Joule per Quartic Metre"@en . + +unit:J-PER-MIN + a qudt:Unit ; + dcterms:description "quotient from the SI derived unit joule divided by the unit minute" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB444" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB444"^^xsd:anyURI ; + qudt:symbol "J/min" ; + qudt:ucumCode "J.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P15" ; + rdfs:isDefinedBy ; + rdfs:label "joule per minute" . + +unit:J-PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The joule per mole (symbol: $J\\cdot mol^{-1}$) is an SI derived unit of energy per amount of material. Energy is measured in joules, and the amount of material is measured in moles. Physical quantities measured in $J\\cdot mol^{-1}$) usually describe quantities of energy transferred during phase transformations or chemical reactions. Division by the number of moles facilitates comparison between processes involving different quantities of material and between similar processes involving different types of materials. The meaning of such a quantity is always context-dependent and, particularly for chemical reactions, is dependent on the (possibly arbitrary) definition of a 'mole' for a particular process."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:ChemicalAffinity ; + qudt:hasQuantityKind quantitykind:ElectricPolarizability ; + qudt:hasQuantityKind quantitykind:MolarEnergy ; + qudt:iec61360Code "0112/2///62720#UAA183" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA183"^^xsd:anyURI ; + qudt:symbol "J/mol" ; + qudt:ucumCode "J.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "J/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B15" ; + rdfs:isDefinedBy ; + rdfs:label "Joule je Mol"@de ; + rdfs:label "dżul na mol"@pl ; + rdfs:label "joule alla mole"@it ; + rdfs:label "joule bölü metre küp"@tr ; + rdfs:label "joule na mol"@cs ; + rdfs:label "joule na mol"@sl ; + rdfs:label "joule par mole"@fr ; + rdfs:label "joule pe mol"@ro ; + rdfs:label "joule per mole"@en ; + rdfs:label "joule per mole"@ms ; + rdfs:label "joule por mol"@pt ; + rdfs:label "julio por mol"@es ; + rdfs:label "джоуль на моль"@ru ; + rdfs:label "جول لكل مول"@ar ; + rdfs:label "ژول بر مول"@fa ; + rdfs:label "जूल प्रति मोल (इकाई)"@hi ; + rdfs:label "ジュール毎立方メートル"@ja ; + rdfs:label "焦耳每摩尔"@zh . + +unit:J-PER-MOL-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Energy needed to heat one mole of substance by 1 Kelvin, under standard conditions (not standard temperature and pressure STP). The standard molar entropy is usually given the symbol S, and has units of joules per mole kelvin ( $ J\\cdot mol^{-1} K^{-1}$). Unlike standard enthalpies of formation, the value of S is an absolute. That is, an element in its standard state has a nonzero value of S at room temperature."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J/(mol-K)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarEntropy ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAA184" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA184"^^xsd:anyURI ; + qudt:symbol "J/(mol·K)" ; + qudt:ucumCode "J.mol-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B16" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Mole Kelvin"@en . + +unit:J-PER-SEC + a qudt:Unit ; + dcterms:description "SI derived unit joule divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB356" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB356"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit joule divided by the SI base unit second" ; + qudt:symbol "J/s" ; + qudt:ucumCode "J.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P14" ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Second"@en . + +unit:J-PER-T + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The magnetic moment of a magnet is a quantity that determines the force that the magnet can exert on electric currents and the torque that a magnetic field will exert on it. A loop of electric current, a bar magnet, an electron, a molecule, and a planet all have magnetic moments. The unit for magnetic moment is not a base unit in the International System of Units (SI) and it can be represented in more than one way. For example, in the current loop definition, the area is measured in square meters and I is measured in amperes, so the magnetic moment is measured in ampere-square meters (A m2). In the equation for torque on a moment, the torque is measured in joules and the magnetic field in tesla, so the moment is measured in Joules per Tesla (J u00b7T-1). These two representations are equivalent: 1 A u00b7m2 = 1 J u00b7T-1. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$j-per-t$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticAreaMoment ; + qudt:hasQuantityKind quantitykind:MagneticMoment ; + qudt:iec61360Code "0112/2///62720#UAB336" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB336"^^xsd:anyURI ; + qudt:symbol "J/T" ; + qudt:ucumCode "J.T-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q10" ; + rdfs:isDefinedBy ; + rdfs:label "Joule je Tesla"@de ; + rdfs:label "dżul na tesla"@pl ; + rdfs:label "joule al tesla"@it ; + rdfs:label "joule bölü tesla"@tr ; + rdfs:label "joule na tesla"@cs ; + rdfs:label "joule par tesla"@fr ; + rdfs:label "joule pe tesla"@ro ; + rdfs:label "joule per tesla"@en ; + rdfs:label "joule per tesla"@ms ; + rdfs:label "joule por tesla"@pt ; + rdfs:label "julio por tesla"@es ; + rdfs:label "джоуль на тесла"@ru ; + rdfs:label "جول لكل تسلا"@ar ; + rdfs:label "ژول بر تسلا"@fa ; + rdfs:label "जूल प्रति टैस्ला"@hi ; + rdfs:label "ジュール毎立方メートル"@ja ; + rdfs:label "焦耳每特斯拉"@zh . + +unit:J-PER-T2 + a qudt:Unit ; + dcterms:description "A measure of the diamagnetic energy, for a Bohr-radius spread around a magnetic axis, per square Tesla."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J T^{-2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerMagneticFluxDensity_Squared ; + qudt:informativeReference "http://www.eng.famu.fsu.edu/~dommelen/quantum/style_a/elecmagfld.html"^^xsd:anyURI ; + qudt:symbol "J/T²" ; + qudt:ucumCode "J.T-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule per Square Tesla"@en . + +unit:J-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{joule-second}$ is a unit equal to a $joule$ multiplied by a second, used to measure action or angular momentum. + The joule-second is the unit used for Planck's constant. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:Action ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:iec61360Code "0112/2///62720#UAB151" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB151"^^xsd:anyURI ; + qudt:symbol "J·s" ; + qudt:ucumCode "J.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B18" ; + rdfs:isDefinedBy ; + rdfs:label "Joulesekunde"@de ; + rdfs:label "dżulosekunda"@pl ; + rdfs:label "joule per secondo"@it ; + rdfs:label "joule saat"@ms ; + rdfs:label "joule saniye"@tr ; + rdfs:label "joule second"@en ; + rdfs:label "joule sekunda"@cs ; + rdfs:label "joule sekunda"@sl ; + rdfs:label "joule-seconde"@fr ; + rdfs:label "joule-secundă"@ro ; + rdfs:label "joule-segundo"@pt ; + rdfs:label "julio segundo"@es ; + rdfs:label "джоуль-секунда"@ru ; + rdfs:label "جول ثانية"@ar ; + rdfs:label "ژول ثانیه"@fa ; + rdfs:label "जूल सैकण्ड"@hi ; + rdfs:label "ジュール秒"@ja ; + rdfs:label "焦耳秒"@zh . + +unit:J-SEC-PER-MOL + a qudt:Unit ; + dcterms:description "$\\textit{Joule Second per Mole}$ is a unit for 'Molar Angular Momentum' expressed as $J s mol^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$J s mol^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:MolarAngularMomentum ; + qudt:symbol "J·s/mol" ; + qudt:ucumCode "J.s.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "J.s/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Joule Second per Mole"@en . + +unit:K + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Kelvin}$ is the SI base unit of temperature, previously called the degree Kelvin. + One kelvin represents the same temperature difference as one degree Celsius. + In 1967 the General Conference on Weights and Measures defined the temperature of the triple point of water + (the temperature at which water exists simultaneously in the gaseous, liquid, and solid states) to be exactly 273.16 kelvins. + Since this temperature is also equal to 0.01 u00b0C, the temperature in kelvins is always equal to 273.15 plus the temperature in degrees Celsius. + The kelvin equals exactly 1.8 degrees Fahrenheit. + The unit is named for the British mathematician and physicist William Thomson (1824-1907), + later known as Lord Kelvin after he was named Baron Kelvin of Largs. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kelvin"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:CorrelatedColorTemperature ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:iec61360Code "0112/2///62720#UAA185" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kelvin?oldid=495075694"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA185"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:kelvin ; + qudt:symbol "K" ; + qudt:ucumCode "K"^^qudt:UCUMcs ; + qudt:udunitsCode "K" ; + qudt:uneceCommonCode "KEL" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin"@de ; + rdfs:label "kelvin"@cs ; + rdfs:label "kelvin"@en ; + rdfs:label "kelvin"@es ; + rdfs:label "kelvin"@fr ; + rdfs:label "kelvin"@hu ; + rdfs:label "kelvin"@it ; + rdfs:label "kelvin"@la ; + rdfs:label "kelvin"@ms ; + rdfs:label "kelvin"@pt ; + rdfs:label "kelvin"@ro ; + rdfs:label "kelvin"@sl ; + rdfs:label "kelvin"@tr ; + rdfs:label "kelwin"@pl ; + rdfs:label "κέλβιν"@el ; + rdfs:label "келвин"@bg ; + rdfs:label "кельвин"@ru ; + rdfs:label "קלווין"@he ; + rdfs:label "كلفن"@ar ; + rdfs:label "کلوین"@fa ; + rdfs:label "कैल्विन"@hi ; + rdfs:label "ケルビン"@ja ; + rdfs:label "开尔文"@zh . + +unit:K-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 86400.0 ; + qudt:conversionMultiplierSN 8.64E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:TimeTemperature ; + qudt:symbol "K·d" ; + qudt:ucumCode "K.d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin day"@en . + +unit:K-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LengthTemperature ; + qudt:symbol "K·m" ; + qudt:ucumCode "K.m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin metres"@en . + +unit:K-M-PER-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "K·m/s" ; + qudt:ucumCode "K.m.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin metres per second"@en . + +unit:K-M-PER-W + a qudt:Unit ; + dcterms:description "product of the SI base unit kelvin and the SI base unit metre divided by the derived SI unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:iec61360Code "0112/2///62720#UAB488" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB488"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI base unit kelvin and the SI base unit metre divided by the derived SI unit watt" ; + qudt:symbol "K·m/W" ; + qudt:ucumCode "K.m.W-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H35" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin Meter per Watt"@en-US ; + rdfs:label "Kelvin Metre per Watt"@en . + +unit:K-M2-PER-KiloGM-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "K·m²/(kg·s)" ; + qudt:ucumCode "K.m2.kg-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin square metres per kilogram second"@en . + +unit:K-PA-PER-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "K·Pa/s" ; + qudt:ucumCode "K.Pa.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin Pascals per second"@en . + +unit:K-PER-BAR + a qudt:Unit ; + dcterms:description "SI base unit kelvin divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA188" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA188"^^xsd:anyURI ; + qudt:symbol "K/bar" ; + qudt:ucumCode "K.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F61" ; + rdfs:isDefinedBy ; + rdfs:label "kelvin per bar" . + +unit:K-PER-HR + a qudt:Unit ; + dcterms:description "$\\textit{Kelvin per Hour}$ is a unit for 'Temperature Per Time' expressed as $K / h$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:expression "$K / h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA189" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA189"^^xsd:anyURI ; + qudt:symbol "K/h" ; + qudt:ucumCode "K.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F10" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Hour"@en . + +unit:K-PER-K + a qudt:Unit ; + dcterms:description "SI base unit kelvin divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureRatio ; + qudt:iec61360Code "0112/2///62720#UAA186" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA186"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kelvin divided by the SI base unit kelvin" ; + qudt:symbol "K/K" ; + qudt:ucumCode "K.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F02" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Kelvin"@en . + +unit:K-PER-M + a qudt:Unit ; + dcterms:description "A change of temperature on the Kelvin temperature scale in one SI unit of length."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureGradient ; + qudt:symbol "K/m" ; + qudt:ucumCode "K.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per metre"@en . + +unit:K-PER-MIN + a qudt:Unit ; + dcterms:description "$\\textit{Kelvin per Minute}$ is a unit for 'Temperature Per Time' expressed as $K / m$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01666667 ; + qudt:conversionMultiplierSN 1.666667E-2 ; + qudt:expression "$K / min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA191" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA191"^^xsd:anyURI ; + qudt:symbol "K/min" ; + qudt:ucumCode "K.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F11" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Minute"@en . + +unit:K-PER-PA + a qudt:Unit ; + dcterms:description "SI base unit kelvin divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB319" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB319"^^xsd:anyURI ; + qudt:symbol "K/Pa" ; + qudt:ucumCode "K.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N79" ; + rdfs:isDefinedBy ; + rdfs:label "kelvin per pascal" . + +unit:K-PER-SEC + a qudt:Unit ; + dcterms:description "$\\textit{Kelvin per Second}$ is a unit for 'Temperature Per Time' expressed as $K / s$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$K / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime ; + qudt:iec61360Code "0112/2///62720#UAA192" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA192"^^xsd:anyURI ; + qudt:symbol "K/s" ; + qudt:ucumCode "K.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "K/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F12" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Second"@en . + +unit:K-PER-SEC2 + a qudt:Unit ; + dcterms:description "$\\textit{Kelvin per Square Second}$ is a unit for 'Temperature Per Time Squared' expressed as $K / s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$K / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerTime_Squared ; + qudt:symbol "K/s²" ; + qudt:ucumCode "K.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "K/s^2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Square Second"@en . + +unit:K-PER-T + a qudt:Unit ; + dcterms:description "$\\textit{Kelvin per Tesla}$ is a unit for 'Temperature Per Magnetic Flux Density' expressed as $K T^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$K T^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ; + qudt:symbol "K/T" ; + qudt:ucumCode "K.T-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin per Tesla"@en . + +unit:K-PER-W + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "

Thermal resistance is a heat property and a measure of a temperature difference by which an object or material resists a heat flow (heat per time unit or thermal resistance). Thermal resistance is the reciprocal thermal conductance. Absolute thermal resistance is the temperature difference across a structure when a unit of heat energy flows through it in unit time. It is the reciprocal of thermal conductance. The SI units of thermal resistance are kelvins per watt or the equivalent degrees Celsius per watt (the two are the same since as intervals).

"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$K/W$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistance ; + qudt:iec61360Code "0112/2///62720#UAA187" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA187"^^xsd:anyURI ; + qudt:symbol "K/W" ; + qudt:ucumCode "K.W-1"^^qudt:UCUMcs ; + qudt:ucumCode "K/W"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B21" ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin je Watt"@de ; + rdfs:label "kelvin al watt"@it ; + rdfs:label "kelvin per watt"@en . + +unit:K-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TimeTemperature ; + qudt:symbol "K·s" ; + qudt:ucumCode "K.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kelvin second"@en . + +unit:K2 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H2T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "K²" ; + qudt:ucumCode "K2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Kelvin"@en . + +unit:KAT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:iec61360Code "0112/2///62720#UAB196" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Katal?oldid=486431865"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB196"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:katal ; + qudt:symbol "kat" ; + qudt:ucumCode "kat"^^qudt:UCUMcs ; + qudt:udunitsCode "kat" ; + qudt:uneceCommonCode "KAT" ; + rdfs:isDefinedBy ; + rdfs:label "Katal"@de ; + rdfs:label "katal"@cs ; + rdfs:label "katal"@en ; + rdfs:label "katal"@es ; + rdfs:label "katal"@fr ; + rdfs:label "katal"@hu ; + rdfs:label "katal"@it ; + rdfs:label "katal"@ms ; + rdfs:label "katal"@pl ; + rdfs:label "katal"@pt ; + rdfs:label "katal"@ro ; + rdfs:label "katal"@sl ; + rdfs:label "katal"@tr ; + rdfs:label "κατάλ"@el ; + rdfs:label "катал"@bg ; + rdfs:label "катал"@ru ; + rdfs:label "קטל"@he ; + rdfs:label "كاتال"@ar ; + rdfs:label "کاتال"@fa ; + rdfs:label "कटल"@hi ; + rdfs:label "カタール"@ja ; + rdfs:label "开特"@zh . + +unit:KAT-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KAT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. " ; + qudt:symbol "kat/L" ; + qudt:ucumCode "kat/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Katal per Liter"@en-US ; + rdfs:label "Katal per Litre"@en . + +unit:KAT-PER-M3 + a qudt:Unit ; + dcterms:description "the SI derived unit katal divided by the SI base unit metre to the power three" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KAT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:iec61360Code "0112/2///62720#UAB602" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB602"^^xsd:anyURI ; + qudt:symbol "kat/m³" ; + qudt:ucumCode "kat.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "katal per cubic metre" . + +unit:KAT-PER-MicroL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KAT ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. " ; + qudt:symbol "kat/μL" ; + qudt:ucumCode "kat/uL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Katal per Microliter"@en-US ; + rdfs:label "Katal per Microlitre"@en . + +unit:KIP_F + a qudt:Unit ; + dcterms:description "1000 pound-force"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 4448.222 ; + qudt:conversionMultiplierSN 4.448222E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kip"^^xsd:anyURI ; + qudt:factorUnitScalar 1000.0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kip?oldid=492552722"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "kip" ; + qudt:ucumCode "k[lbf_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M75" ; + rdfs:isDefinedBy ; + rdfs:label "Kip"@en . + +unit:KIP_F-PER-IN2 + a qudt:Unit ; + dcterms:description "\"Kip per Square Inch\" is a unit for 'Force Per Area' expressed as $kip/in^{2}$."^^qudt:LatexString ; + qudt:conversionMultiplier 6894757.89 ; + qudt:conversionMultiplierSN 6.89475789E6 ; + qudt:expression "$kip/in^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KIP_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB242" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB242"^^xsd:anyURI ; + qudt:symbol "kip/in²" ; + qudt:ucumCode "k[lbf_av].[in_i]-2"^^qudt:UCUMcs ; + qudt:udunitsCode "ksi" ; + qudt:uneceCommonCode "N20" ; + rdfs:isDefinedBy ; + rdfs:label "Kip per Square Inch"@en . + +unit:KN + a qudt:Unit ; + dcterms:description "The knot (pronounced 'not') is a unit of speed equal to one nautical mile (1.852 km) per hour, approximately 1.151 mph. The abbreviation $kn$ is preferred by the International Hydrographic Organization (IHO), which includes every major sea-faring nation; however, the abbreviations kt (singular) and kts (plural) are also widely used. However, use of the abbreviation kt for knot conflicts with the SI symbol for kilotonne. The knot is a non-SI unit accepted for use with the International System of Units (SI). Worldwide, the knot is used in meteorology, and in maritime and air navigation - for example, a vessel travelling at 1 knot along a meridian travels one minute of geographic latitude in one hour. Etymologically, the term knot derives from counting the number of knots in the line that unspooled from the reel of a chip log in a specific time."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5144444444444445 ; + qudt:conversionMultiplierSN 5.144444444444445E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Knot"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:MI_N-PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI_N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB110" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Knot?oldid=495066194"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB110"^^xsd:anyURI ; + qudt:symbol "kn" ; + qudt:ucumCode "[kn_i]"^^qudt:UCUMcs ; + qudt:udunitsCode "kt" ; + qudt:uneceCommonCode "KNT" ; + rdfs:isDefinedBy ; + rdfs:label "Knot"@en ; + skos:altLabel "kt" ; + skos:altLabel "kts" . + +unit:KN-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Knot per Second}$ is a unit for 'Linear Acceleration' expressed as $kt/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5144444444444445 ; + qudt:conversionMultiplierSN 5.144444444444445E-1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kt/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KN ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:symbol "kn/s" ; + qudt:ucumCode "[kn_i].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[kn_i]/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Knot per Second"@en . + +unit:KY + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kayser"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:expression "$cm^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kayser?oldid=458489166"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "K" ; + qudt:ucumCode "Ky"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kayser"@en . + +unit:KibiBIT + a qudt:Unit ; + dcterms:description "1,024-fold of the unit bit" ; + qudt:conversionMultiplier 709.782712893384 ; + qudt:conversionMultiplierSN 7.09782712893384E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB158" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB158"^^xsd:anyURI ; + qudt:prefix prefix:Kibi ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Kibit" ; + qudt:uneceCommonCode "C21" ; + rdfs:isDefinedBy ; + rdfs:label "kibibit" . + +unit:KibiBIT-PER-M + a qudt:Unit ; + dcterms:description "1024-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 709.78271289338399684324569237317632 ; + qudt:conversionMultiplierSN 7.0978271289338399684324569237317632E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KibiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA194" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA194"^^xsd:anyURI ; + qudt:symbol "Kibit/m" ; + qudt:ucumCode "Kibit.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E72" ; + rdfs:isDefinedBy ; + rdfs:label "kibibit per metre" . + +unit:KibiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1024-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 709.78271289338399684324569237317632 ; + qudt:conversionMultiplierSN 7.0978271289338399684324569237317632E2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KibiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA195" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA195"^^xsd:anyURI ; + qudt:symbol "Kibit/m²" ; + qudt:ucumCode "Kibit.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E73" ; + rdfs:isDefinedBy ; + rdfs:label "kibibit per square metre" . + +unit:KibiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1024-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 709.78271289338399684324569237317632 ; + qudt:conversionMultiplierSN 7.0978271289338399684324569237317632E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KibiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA196" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA196"^^xsd:anyURI ; + qudt:symbol "Kibit/m³" ; + qudt:ucumCode "Kibit.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E74" ; + rdfs:isDefinedBy ; + rdfs:label "kibibit per cubic metre" . + +unit:KibiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The kibibyte is a multiple of the unit byte for digital information equivalent to 1024 bytes."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5678.2617031470719747459655389854 ; + qudt:conversionMultiplierSN 5.6782617031470719747459655389854E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA197" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA197"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Kibi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "KiB" ; + qudt:uneceCommonCode "E64" ; + rdfs:isDefinedBy ; + rdfs:label "KibiByte"@en . + +unit:Kilo-FT3 + qudt:scalingOf unit:M3 . + +unit:KiloA + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA557" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA557"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:A ; + qudt:symbol "kA" ; + qudt:ucumCode "kA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B22" ; + rdfs:isDefinedBy ; + rdfs:label "kiloampere"@en . + +unit:KiloA-HR + a qudt:Unit ; + dcterms:description "product of the 1 000-fold of the SI base unit ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAB053" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB053"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the SI base unit ampere and the unit hour" ; + qudt:symbol "kA·h" ; + qudt:ucumCode "kA.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "TAH" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloampere Hour"@en . + +unit:KiloA-PER-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloA ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAD900" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD900"^^xsd:anyURI ; + qudt:symbol "kA/K" ; + qudt:ucumCode "kA.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kiloampere per kelvin" . + +unit:KiloA-PER-M + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit ampere divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloA ; + ] ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAA558" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA558"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit ampere divided by the SI base unit metre" ; + qudt:symbol "kA/m" ; + qudt:ucumCode "kA.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B24" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloampere per Meter"@en-US ; + rdfs:label "Kiloampere per Metre"@en . + +unit:KiloA-PER-M2 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloA ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:iec61360Code "0112/2///62720#UAA559" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA559"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "kA/m²" ; + qudt:ucumCode "kA.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B23" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloampere per Square Meter"@en-US ; + rdfs:label "Kiloampere per Square Metre"@en . + +unit:KiloBAR + a qudt:Unit ; + dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to $100,000 Pa = 1 bar \\approx 750.0616827 Torr$. Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100000000.0 ; + qudt:conversionMultiplierSN 1.0E8 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB088" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB088"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BAR ; + qudt:symbol "kbar" ; + qudt:ucumCode "kbar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KBA" ; + rdfs:isDefinedBy ; + rdfs:label "Kilobar"@en . + +unit:KiloBAUD + a qudt:Unit ; + dcterms:description "1,000-fold of the unit baud for the symbol rate in communications engineering and telecommunication" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DigitRate ; + qudt:iec61360Code "0112/2///62720#UAA560" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA560"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BAUD ; + qudt:symbol "kBd" ; + qudt:uneceCommonCode "K50" ; + rdfs:isDefinedBy ; + rdfs:label "kilobaud" . + +unit:KiloBIT + a qudt:Unit ; + dcterms:description "1,000-fold of the unit bit" ; + qudt:conversionMultiplier 693.1471805599452 ; + qudt:conversionMultiplierSN 6.931471805599452E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB159" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB159"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BIT ; + qudt:symbol "kbit" ; + qudt:uneceCommonCode "C37" ; + rdfs:isDefinedBy ; + rdfs:label "kilobit" . + +unit:KiloBIT-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A kilobit per second (kB/s) is a unit of data transfer rate equal to 1,000 bits per second."^^rdf:HTML ; + qudt:conversionMultiplier 693.14718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA586" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobit_per_second"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA586"^^xsd:anyURI ; + qudt:symbol "kbit/s" ; + qudt:ucumCode "kbit.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C74" ; + rdfs:isDefinedBy ; + rdfs:label "Kilobit per Second"@en . + +unit:KiloBQ + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit becquerel"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA561" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA561"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit becquerel" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BQ ; + qudt:symbol "kBq" ; + qudt:ucumCode "kBq"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2Q" ; + rdfs:isDefinedBy ; + rdfs:label "Kilobecquerel"@en . + +unit:KiloBQ-PER-KiloGM + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit becquerel divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBQ ; + ] ; + qudt:hasQuantityKind quantitykind:MassicActivity ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:iec61360Code "0112/2///62720#UAA562" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA562"^^xsd:anyURI ; + qudt:symbol "kBq/kg" ; + qudt:ucumCode "kBq.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B25" ; + rdfs:isDefinedBy ; + rdfs:label "kilobecquerel per kilogram" . + +unit:KiloBTU_IT + a qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1055055.85262 ; + qudt:conversionMultiplierSN 1.05505585262E6 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BTU_IT ; + qudt:symbol "kBtu{IT}" ; + qudt:ucumCode "k[Btu_IT]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo British Thermal Unit (International Definition)"@en . + +unit:KiloBTU_IT-PER-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{kBTU per Square Foot}$ is an Imperial unit for 'Energy Per Area' expressed as $kBtu/ft^2$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 11356526.7 ; + qudt:conversionMultiplierSN 1.13565267E7 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kBtu/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:plainTextDescription "kBTU per Square Foot is an Imperial unit for 'Energy Per Area." ; + qudt:symbol "kBtu{IT}/ft²" ; + qudt:ucumCode "k[Btu_IT].[ft_i]-2"^^qudt:UCUMcs ; + qudt:ucumCode "k[Btu_IT]/[ft_i]2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kBTU per Square Foot"@en . + +unit:KiloBTU_IT-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 293.07107 ; + qudt:conversionMultiplierSN 2.9307107E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kBtu/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:symbol "kBtu{IT}/h" ; + qudt:ucumCode "k[Btu_IT].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "k[Btu_IT]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo British Thermal Unit (International Definition) per Hour"@en . + +unit:KiloBTU_TH + a qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1054350.2645 ; + qudt:conversionMultiplierSN 1.0543502645E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BTU_TH ; + qudt:symbol "kBtu{th}" ; + qudt:ucumCode "k[Btu_th]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo British Thermal Unit (Thermochemical Definition)"@en . + +unit:KiloBTU_TH-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "unit of the heat energy according to the Imperial system of units divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 292.9 ; + qudt:conversionMultiplierSN 2.929E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBTU_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units divided by the unit hour" ; + qudt:symbol "kBtu{th}/h" ; + qudt:ucumCode "k[Btu_th].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "k[Btu_th]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo British Thermal Unit (thermochemical) per Hour"@en . + +unit:KiloBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The kilobyte is a multiple of the unit byte for digital information equivalent to 1000 bytes. Although the prefix kilo- means 1000, the term kilobyte and symbol kB have historically been used to refer to either 1024 (210) bytes or 1000 (103) bytes, dependent upon context, in the fields of computer science and information technology. This ambiguity is removed in QUDT, with KibiBYTE used to refer to 1024 bytes."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545.1774444795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Byte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB129" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Byte?oldid=493588918"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB129"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "kB" ; + qudt:ucumCode "kBy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2P" ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Byte"@en . + +unit:KiloBYTE-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A kilobyte per second (kByte/s) is a unit of data transfer rate equal to 1000 bytes per second or 8000 bits per second."^^rdf:HTML ; + qudt:conversionMultiplier 5545.1774444795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloBYTE ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAB306" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB306"^^xsd:anyURI ; + qudt:symbol "kB/s" ; + qudt:ucumCode "kBy.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P94" ; + rdfs:isDefinedBy ; + rdfs:label "Kilobyte per Second"@en . + +unit:KiloC + a qudt:DerivedUnit, qudt:Unit ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA563" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA563"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:C ; + qudt:symbol "kC" ; + qudt:ucumCode "kC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B26" ; + rdfs:isDefinedBy ; + rdfs:label "KiloCoulomb"@en . + +unit:KiloC-PER-M2 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:hasQuantityKind quantitykind:ElectricPolarization ; + qudt:iec61360Code "0112/2///62720#UAA564" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA564"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "kC/m²" ; + qudt:ucumCode "kC.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B28" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocoulomb per Square Meter"@en-US ; + rdfs:label "Kilocoulomb per Square Metre"@en . + +unit:KiloC-PER-M3 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAA565" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA565"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "kC/m³" ; + qudt:ucumCode "kC.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B27" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocoulomb per Cubic Meter"@en-US ; + rdfs:label "Kilocoulomb per Cubic Metre"@en . + +unit:KiloCAL + a qudt:Unit ; + dcterms:description """ + A $\\textit{Kilocalorie}$ is a unit for $\\textit{Energy And Work}$ expressed as $kcal$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Calorie"^^xsd:anyURI ; + qudt:exactMatch unit:KiloCAL_TH ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA590" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Calorie?oldid=494307622"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA590"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "kcal" ; + qudt:ucumCode "kcal"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K53" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie"@en . + +unit:KiloCAL-PER-CentiM-SEC-DEG_C + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 418400.0 ; + qudt:conversionMultiplierSN 4.184E5 ; + qudt:expression "$kilocal-per-cm-sec-degc$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:symbol "kcal/(cm·s·°C)" ; + qudt:ucumCode "kcal.cm-1.s-1.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Centimeter Second Degree Celsius"@en-US ; + rdfs:label "Kilocalorie per Centimetre Second Degree Celsius"@en . + +unit:KiloCAL-PER-CentiM2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilocalorie per Square Centimeter\" is a unit for 'Energy Per Area' expressed as $kcal/cm^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41840000.0 ; + qudt:conversionMultiplierSN 4.184E7 ; + qudt:expression "$kcal/cm^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:symbol "kcal/cm²" ; + qudt:ucumCode "kcal.cm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Square Centimeter"@en-US ; + rdfs:label "Kilocalorie per Square Centimetre"@en . + +unit:KiloCAL-PER-CentiM2-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilocalorie per Square Centimeter Minute\" is a unit for 'Power Per Area' expressed as $kcal/(cm^{2}-min)$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 697333.3333333333333333333333333335 ; + qudt:conversionMultiplierSN 6.973333333333333333333333333333335E5 ; + qudt:expression "$kcal/(cm^{2}-min)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:symbol "kcal/(cm²·min)" ; + qudt:ucumCode "kcal.cm-2.min-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Square Centimeter Minute"@en-US ; + rdfs:label "Kilocalorie per Square Centimetre Minute"@en . + +unit:KiloCAL-PER-CentiM2-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilocalorie per Square Centimeter Second\" is a unit for 'Power Per Area' expressed as $kcal/(cm^{2}-s)$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41840000.0 ; + qudt:conversionMultiplierSN 4.184E7 ; + qudt:expression "$kcal/(cm^{2}-s)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:symbol "kcal/(cm²·s)" ; + qudt:ucumCode "kcal.cm-2.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Square Centimeter Second"@en-US ; + rdfs:label "Kilocalorie per Square Centimetre Second"@en . + +unit:KiloCAL-PER-GM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilocalorie per Gram\" is a unit for 'Specific Energy' expressed as $kcal/gm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184000.0 ; + qudt:conversionMultiplierSN 4.184E6 ; + qudt:expression "$kcal/gm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:symbol "kcal/g" ; + qudt:ucumCode "kcal.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "kcal/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Gram"@en . + +unit:KiloCAL-PER-GM-DEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Calorie per Gram Degree Celsius}$ is a unit for 'Specific Heat Capacity' expressed as $kcal/(gm-degC)$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184000.0 ; + qudt:conversionMultiplierSN 4.184E6 ; + qudt:expression "$kcal/(gm-degC)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:symbol "kcal/(g·°C)" ; + qudt:ucumCode "cal.g-1.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Calorie per Gram Degree Celsius"@en . + +unit:KiloCAL-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + A $\\textit{Kilocalorie per Minute}$ is a unit for $\\textit{Heat Flow Rate}$ and $\\textit{Power}$, + expressed as $kcal/min$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 69.7333333 ; + qudt:conversionMultiplierSN 6.97333333E1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kcal/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:symbol "kcal/min" ; + qudt:ucumCode "kcal.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "kcal/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K54" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Minute"@en . + +unit:KiloCAL-PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The kilocalorie per mole is a derived unit of energy per Avogadro's number of particles. It is the quotient of a kilocalorie (1000 thermochemical gram calories) and a mole, mainly used in the United States. In SI units, it is equal to $4.184 kJ/mol$, or $6.9477 \\times 10 J per molecule$. At room temperature it is equal to 1.688 . Physical quantities measured in $kcal\\cdot mol$ are usually thermodynamical quantities; mostly free energies such as: Heat of vaporization Heat of fusion

."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:expression "$kcal/mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarEnergy ; + qudt:symbol "kcal/mol" ; + qudt:ucumCode "kcal.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "kcal/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Mole"@en . + +unit:KiloCAL-PER-MOL-DEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + A $\\textit{Kilocalorie per Mole Degree Celsius}$ is a unit for 'Molar Heat Capacity', + expressed as $kcal/(mol-degC)$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:expression "$kcal/(mol-degC)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarHeatCapacity ; + qudt:symbol "kcal/(mol·°C)" ; + qudt:ucumCode "kcal.mol-1.Cel-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Mole Degree Celsius"@en . + +unit:KiloCAL-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + A $\\textit{Kilocalorie per Second}$ is a unit for $\\textit{Heat Flow Rate}$ and $\\textit{Power}$, + expressed as $kcal/s$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kcal/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:symbol "kcal/s" ; + qudt:ucumCode "kcal.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "kcal/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K55" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie per Second"@en . + +unit:KiloCAL_IT + a qudt:Unit ; + dcterms:description "1000-fold of the unit calorie, which is used particularly for calorific values of food"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4186.8 ; + qudt:conversionMultiplierSN 4.1868E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA589" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA589"^^xsd:anyURI ; + qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:CAL_IT ; + qudt:symbol "kcal{IT}" ; + qudt:ucumCode "kcal_IT"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E14" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (international Table)"@en . + +unit:KiloCAL_IT-PER-GM-K + a qudt:Unit ; + dcterms:description "unit of the mass-related heat capacity as quotient 1,000-fold of the calorie (international table) divided by the product of the 0.001-fold of the SI base units kilogram and kelvin"^^qudt:LatexString ; + qudt:conversionMultiplier 4186800.0 ; + qudt:conversionMultiplierSN 4.1868E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassicHeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAB455" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB455"^^xsd:anyURI ; + qudt:symbol "kcal{IT}/(g·K)" ; + qudt:ucumCode "kcal_IT.g-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N65" ; + rdfs:isDefinedBy ; + rdfs:label "kilocalorie (international table) per gram kelvin" . + +unit:KiloCAL_IT-PER-HR-M-DEG_C + a qudt:Unit ; + dcterms:description "1 000-fold of the no longer approved unit international calorie for energy divided by the product of the SI base unit metre, the unit hour for time and the unit degree Celsius for temperature"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.163 ; + qudt:conversionMultiplierSN 1.163E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA588" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA588"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the no longer approved unit international calorie for energy divided by the product of the SI base unit metre, the unit hour for time and the unit degree Celsius for temperature" ; + qudt:symbol "kcal{IT}/(h·m·°C)" ; + qudt:ucumCode "kcal_IT.h-1.m-1.Cel-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K52" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (international Table) per Hour Meter Degree Celsius"@en-US ; + rdfs:label "Kilocalorie (international Table) per Hour Metre Degree Celsius"@en . + +unit:KiloCAL_Mean + a qudt:Unit ; + dcterms:description "1000-fold of the unit calorie, which is used particularly for calorific values of food"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4190.0 ; + qudt:conversionMultiplierSN 4.19E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA587" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA587"^^xsd:anyURI ; + qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ; + qudt:scalingOf unit:J ; + qudt:symbol "kcal{mean}" ; + qudt:ucumCode "kcal_m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K51" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (mean)"@en . + +unit:KiloCAL_TH + a qudt:Unit ; + dcterms:description "1000-fold of the unit calorie, which is used particularly for calorific values of food"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:exactMatch unit:KiloCAL ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA590" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA590"^^xsd:anyURI ; + qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:CAL_TH ; + qudt:symbol "kcal" ; + qudt:ucumCode "[Cal]"^^qudt:UCUMcs ; + qudt:ucumCode "kcal_th"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K53" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (thermochemical)"@en . + +unit:KiloCAL_TH-PER-HR + a qudt:Unit ; + dcterms:description "1 000-fold of the non-legal unit thermochemical calorie divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.162230555555556 ; + qudt:conversionMultiplierSN 1.162230555555556E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB184" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB184"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the non-legal unit thermochemical calorie divided by the unit hour" ; + qudt:symbol "kcal/h" ; + qudt:ucumCode "kcal_th.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E15" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (thermochemical) per Hour"@en . + +unit:KiloCAL_TH-PER-MIN + a qudt:Unit ; + dcterms:description "1000-fold of the unit calorie divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 69.73383333333334 ; + qudt:conversionMultiplierSN 6.973383333333334E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL_TH ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA591" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA591"^^xsd:anyURI ; + qudt:plainTextDescription "1000-fold of the unit calorie divided by the unit minute" ; + qudt:symbol "kcal/min" ; + qudt:ucumCode "kcal_th.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K54" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (thermochemical) per Minute"@en . + +unit:KiloCAL_TH-PER-SEC + a qudt:Unit ; + dcterms:description "1000-fold of the unit calorie divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4184.0 ; + qudt:conversionMultiplierSN 4.184E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloCAL_TH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA592" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA592"^^xsd:anyURI ; + qudt:plainTextDescription "1000-fold of the unit calorie divided by the SI base unit second" ; + qudt:symbol "kcal/s" ; + qudt:ucumCode "kcal_th.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K55" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocalorie (thermochemical) per Second"@en . + +unit:KiloCD + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit candela" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:iec61360Code "0112/2///62720#UAB365" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB365"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:CD ; + qudt:symbol "kCd" ; + qudt:uneceCommonCode "P33" ; + rdfs:isDefinedBy ; + rdfs:label "kilocandela" . + +unit:KiloCi + a qudt:Unit ; + dcterms:description "1,000-fold of the unit curie"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 37000000000000.0 ; + qudt:conversionMultiplierSN 3.7E13 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:hasQuantityKind quantitykind:DecayConstant ; + qudt:iec61360Code "0112/2///62720#UAB046" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB046"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit curie" ; + qudt:symbol "kCi" ; + qudt:ucumCode "kCi"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2R" ; + rdfs:isDefinedBy ; + rdfs:label "Kilocurie"@en . + +unit:KiloCubicFT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "1 000-fold of the unit cubic foot. "^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 28.316846592 ; + qudt:conversionMultiplierSN 2.8316846592E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kft^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:symbol "k(ft³)" ; + qudt:ucumCode "[k.cft_i]"^^qudt:UCUMcs ; + qudt:ucumCode "k[ft_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FC" ; + rdfs:isDefinedBy ; + rdfs:label "Thousand Cubic Foot"@en . + +unit:KiloEV + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilo Electron Volt\" is a unit for 'Energy And Work' expressed as $keV$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-16 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA593" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA593"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:EV ; + qudt:symbol "keV" ; + qudt:ucumCode "keV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B29" ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Electron Volt"@en . + +unit:KiloEV-PER-MicroM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilo Electron Volt per Micrometer\" is a unit for 'Linear Energy Transfer' expressed as $keV/microM$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-10 ; + qudt:expression "$keV/microM$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloEV ; + ] ; + qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ; + qudt:symbol "keV/μm" ; + qudt:ucumCode "keV.um-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Electron Volt per Micrometer"@en-US ; + rdfs:label "Kilo Electron Volt per Micrometre"@en . + +unit:KiloFARAD + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit farad" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAB384" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB384"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "kF" ; + qudt:uneceCommonCode "N90" ; + rdfs:isDefinedBy ; + rdfs:label "kilofarad" . + +unit:KiloGAUSS + a qudt:Unit ; + dcterms:description "1 000-fold of the CGS unit of the magnetic flux density B"^^rdf:HTML ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAB136" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB136"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the CGS unit of the magnetic flux density B" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:GAUSS ; + qudt:symbol "kGs" ; + qudt:ucumCode "kG"^^qudt:UCUMcs ; + qudt:uneceCommonCode "78" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogauss"@en . + +unit:KiloGM + a qudt:Unit ; + dcterms:description "The kilogram or kilogramme (SI symbol: kg), also known as the kilo, is the base unit of mass in the International System of Units and is defined as being equal to the mass of the International Prototype Kilogram (IPK), which is almost exactly equal to the mass of one liter of water. The avoirdupois (or international) pound, used in both the Imperial system and U.S. customary units, is defined as exactly 0.45359237 kg, making one kilogram approximately equal to 2.2046 avoirdupois pounds."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilogram"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:CO2Equivalent ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA594" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilogram?oldid=493633626"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA594"^^xsd:anyURI ; + qudt:plainTextDescription "The kilogram or kilogramme (SI symbol: kg), also known as the kilo, is the base unit of mass in the International System of Units and is defined as being equal to the mass of the International Prototype Kilogram (IPK), which is almost exactly equal to the mass of one liter of water. The avoirdupois (or international) pound, used in both the Imperial system and U.S. customary units, is defined as exactly 0.45359237 kg, making one kilogram approximately equal to 2.2046 avoirdupois pounds." ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:GM ; + qudt:siExactMatch si-unit:kilogram ; + qudt:symbol "kg" ; + qudt:ucumCode "kg"^^qudt:UCUMcs ; + qudt:udunitsCode "kg" ; + qudt:uneceCommonCode "KGM" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogramm"@de ; + rdfs:label "chiliogramma"@la ; + rdfs:label "chilogrammo"@it ; + rdfs:label "kilogram"@cs ; + rdfs:label "kilogram"@en ; + rdfs:label "kilogram"@ms ; + rdfs:label "kilogram"@pl ; + rdfs:label "kilogram"@ro ; + rdfs:label "kilogram"@sl ; + rdfs:label "kilogram"@tr ; + rdfs:label "kilogramm*"@hu ; + rdfs:label "kilogramme"@fr ; + rdfs:label "kilogramo"@es ; + rdfs:label "quilograma"@pt ; + rdfs:label "χιλιόγραμμο"@el ; + rdfs:label "килограм"@bg ; + rdfs:label "килограмм"@ru ; + rdfs:label "קילוגרם"@he ; + rdfs:label "كيلوغرام"@ar ; + rdfs:label "کیلوگرم"@fa ; + rdfs:label "किलोग्राम"@hi ; + rdfs:label "キログラム"@ja ; + rdfs:label "公斤"@zh . + +unit:KiloGM-CentiM-PER-SEC + a qudt:Unit ; + dcterms:description "product of the SI base unit kilogram and the 0.01-fold of the SI base unit metre divided by the SI base unit second" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Impulse ; + qudt:iec61360Code "0112/2///62720#UAB413" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB413"^^xsd:anyURI ; + qudt:symbol "kg·cm/s" ; + qudt:ucumCode "kg.cm.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M98" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram centimetre per second" . + +unit:KiloGM-CentiM2 + a qudt:Unit ; + dcterms:description "product of the SI base unit kilogram and the 0 0001fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:RotationalMass ; + qudt:iec61360Code "0112/2///62720#UAA600" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA600"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI base unit kilogram and the 0 0001fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "kg·cm²" ; + qudt:ucumCode "kg.cm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F18" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Square Centimeter"@en-US ; + rdfs:label "Kilogram Square Centimetre"@en . + +unit:KiloGM-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Kilogram Kelvin}$ is a unit for 'Mass Temperature' expressed as $kg-K$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$kg-K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassTemperature ; + qudt:symbol "K·kg" ; + qudt:ucumCode "kg.K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Kelvin"@en . + +unit:KiloGM-M + a qudt:Unit ; + dcterms:description "unit of the imbalance as a product of the SI base unit kilogram and the SI base unit metre" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unbalance ; + qudt:iec61360Code "0112/2///62720#UAB368" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB368"^^xsd:anyURI ; + qudt:symbol "kg·m" ; + qudt:ucumCode "kg.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M94" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram metre" . + +unit:KiloGM-M-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilogram Meter Per Second\" is a unit for 'Linear Momentum' expressed as $kg-m/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$kg-m/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:iec61360Code "0112/2///62720#UAA615" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA615"^^xsd:anyURI ; + qudt:symbol "kg·m/s" ; + qudt:ucumCode "kg.m.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg.m/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B31" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Meter per Second"@en-US ; + rdfs:label "Kilogramm mal Meter je Sekunde"@de ; + rdfs:label "chilogrammo per metro al secondo"@it ; + rdfs:label "kilogram meter na sekundo"@sl ; + rdfs:label "kilogram meter per saat"@ms ; + rdfs:label "kilogram metre per second"@en ; + rdfs:label "کیلوگرم متر بر ثانیه"@fa ; + rdfs:label "千克米每秒"@zh . + +unit:KiloGM-M-PER-SEC2 + a qudt:Unit ; + dcterms:description "product of the SI base unit kilogram and the SI base unit metre divided by the power of the SI base unit second by exponent 2" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:N ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB355" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB355"^^xsd:anyURI ; + qudt:symbol "kg·m/s²" ; + qudt:ucumCode "kg.m.s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M77" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram metre per second squared" . + +unit:KiloGM-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilogram Square Meter\" is a unit for 'Moment Of Inertia' expressed as $kg-m^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg-m2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:RotationalMass ; + qudt:iec61360Code "0112/2///62720#UAA622" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA622"^^xsd:anyURI ; + qudt:symbol "kg·m²" ; + qudt:ucumCode "kg.m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B32" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Square Meter"@en-US ; + rdfs:label "Kilogramm mal Quadratmeter"@de ; + rdfs:label "chilogrammo metro quadrato"@it ; + rdfs:label "kilogram meter persegi"@ms ; + rdfs:label "kilogram metrekare"@tr ; + rdfs:label "kilogram square metre"@en ; + rdfs:label "kilogram čtvereční metr"@cs ; + rdfs:label "kilogram-metru pătrat"@ro ; + rdfs:label "kilogramme-mètre carré"@fr ; + rdfs:label "kilogramo metro cuadrado"@es ; + rdfs:label "quilograma-metro quadrado"@pt ; + rdfs:label "килограмм-квадратный метр"@ru ; + rdfs:label "كيلوغرام متر مربع"@ar ; + rdfs:label "نیوتون متر مربع"@fa ; + rdfs:label "किलोग्राम वर्ग मीटर"@hi ; + rdfs:label "キログラム平方メートル"@ja ; + rdfs:label "千克平方米"@zh . + +unit:KiloGM-M2-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilogram Square Meter Per Second\" is a unit for 'Angular Momentum' expressed as $kg-m^2-s^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$kg-m2/sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:iec61360Code "0112/2///62720#UAA623" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA623"^^xsd:anyURI ; + qudt:symbol "kg·m²/s" ; + qudt:ucumCode "kg.m2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B33" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Square Meter per Second"@en-US ; + rdfs:label "Kilogram Square Metre per Second"@en . + +unit:KiloGM-MilliM2 + a qudt:Unit ; + dcterms:description "product of the SI base kilogram and the 0.001-fold of the power of the SI base metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:RotationalMass ; + qudt:iec61360Code "0112/2///62720#UAA627" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA627"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI base kilogram and the 0.001-fold of the power of the SI base metre with the exponent 2" ; + qudt:symbol "kg·mm²" ; + qudt:ucumCode "kg.mm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F19" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Square Millimeter"@en-US ; + rdfs:label "Kilogram Square Millimetre"@en . + +unit:KiloGM-PER-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA596" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA596"^^xsd:anyURI ; + qudt:symbol "kg/bar" ; + qudt:ucumCode "kg.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H53" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per bar" . + +unit:KiloGM-PER-CentiM2 + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAB174" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB174"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "kg/cm²" ; + qudt:ucumCode "kg.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D5" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Square Centimeter"@en-US ; + rdfs:label "Kilogram per Square Centimetre"@en . + +unit:KiloGM-PER-CentiM3 + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the 0.000 001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA597" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA597"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the 0.000 001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "kg/cm³" ; + qudt:ucumCode "kg.cm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G31" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Cubic Centimeter"@en-US ; + rdfs:label "Kilogram per Cubic Centimetre"@en . + +unit:KiloGM-PER-CentiM3-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA599" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA599"^^xsd:anyURI ; + qudt:symbol "kg/(cm³·bar)" ; + qudt:ucumCode "kg.cm-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G16" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic centimetre bar" . + +unit:KiloGM-PER-CentiM3-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA598" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA598"^^xsd:anyURI ; + qudt:symbol "kg/(cm³·K)" ; + qudt:ucumCode "kg.cm-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G38" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic centimetre kelvin" . + +unit:KiloGM-PER-DAY + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001157407 ; + qudt:conversionMultiplierSN 1.157407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA601" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA601"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the unit day" ; + qudt:symbol "kg/d" ; + qudt:ucumCode "kg.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F30" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Day"@en . + +unit:KiloGM-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-10 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA603" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA603"^^xsd:anyURI ; + qudt:symbol "kg/(d·bar)" ; + qudt:ucumCode "kg.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F66" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per day bar" . + +unit:KiloGM-PER-DAY-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA602" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA602"^^xsd:anyURI ; + qudt:symbol "kg/(d·K)" ; + qudt:ucumCode "kg.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F39" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per day kelvin" . + +unit:KiloGM-PER-DeciM3 + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA604" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA604"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "kg/dm³" ; + qudt:ucumCode "kg.dm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B34" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Cubic Decimeter"@en-US ; + rdfs:label "Kilogram per Cubic Decimetre"@en . + +unit:KiloGM-PER-DeciM3-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA606" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA606"^^xsd:anyURI ; + qudt:symbol "kg/(dm³·bar)" ; + qudt:ucumCode "kg.dm-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H55" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic decimetre bar" . + +unit:KiloGM-PER-DeciM3-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA605" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA605"^^xsd:anyURI ; + qudt:symbol "kg/(dm³·K)" ; + qudt:ucumCode "kg.dm-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H54" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic decimetre kelvin" . + +unit:KiloGM-PER-FT2 + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the square of the imperial foot"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 10.763910416709722 ; + qudt:conversionMultiplierSN 1.0763910416709722E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "SI base unit kilogram divided by the square of the imperial foot" ; + qudt:symbol "kg/ft²" ; + qudt:ucumCode "kg.ft-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Square Foot"@en . + +unit:KiloGM-PER-GigaJ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the SI base unit gigajoule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GigaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:plainTextDescription "SI base unit kilogram divided by the SI base unit gigajoule" ; + qudt:symbol "kg/GJ" ; + qudt:ucumCode "kg.GJ-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Gigajoule"@en . + +unit:KiloGM-PER-HA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram Per Hectare is a unit of mass per area. Kilogram Per Hectare (kg/ha) has a dimension of ML-2 where $M$ is mass, and $L$ is length. It can be converted to the corresponding standard SI unit kg/m2 by multiplying its value by a factor of 0.0001."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:expression "$kg/hare$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:symbol "kg/ha" ; + qudt:ucumCode "kg.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Hectare"@en . + +unit:KiloGM-PER-HA-YR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of areal density over time equivalent to 1 kg per hectare per year." ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000000316880878 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A measure of areal density over time equivalent to 1 kg per hectare per year." ; + qudt:symbol "kg/(ha·a)" ; + qudt:ucumCode "kg.har-1.year-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per hectare per year"@en . + +unit:KiloGM-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram Per Hour (kg/h) is a unit in the category of Mass flow rate. It is also known as kilogram/hour. Kilogram Per Hour (kg/h) has a dimension of MT-1 where $M$ is mass, and $T$ is time. It can be converted to the corresponding standard SI unit kg/s by multiplying its value by a factor of 0.000277777777778."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277777778 ; + qudt:conversionMultiplierSN 2.77777778E-4 ; + qudt:expression "$kg/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA607" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA607"^^xsd:anyURI ; + qudt:symbol "kg/h" ; + qudt:ucumCode "kg.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E93" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Hour"@en . + +unit:KiloGM-PER-HR-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-9 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA609" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA609"^^xsd:anyURI ; + qudt:symbol "kg/(h·bar)" ; + qudt:ucumCode "kg.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F67" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per hour bar" . + +unit:KiloGM-PER-HR-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA608" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA608"^^xsd:anyURI ; + qudt:symbol "kg/(h·K)" ; + qudt:ucumCode "kg.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F40" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per hour kelvin" . + +unit:KiloGM-PER-J + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the SI base unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:plainTextDescription "SI base unit kilogram divided by the SI base unit joule" ; + qudt:symbol "kg/J" ; + qudt:ucumCode "kg.J-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Joule"@en . + +unit:KiloGM-PER-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA595" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA595"^^xsd:anyURI ; + qudt:symbol "kg/K" ; + qudt:ucumCode "kg.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F15" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per kelvin" . + +unit:KiloGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA610" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA610"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "kg/kg" ; + qudt:ucumCode "kg.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "3H" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Kilogram"@en . + +unit:KiloGM-PER-KiloM + a qudt:Unit ; + dcterms:description "SI base kilogram divided by the 1,000-fold of the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMass ; + qudt:iec61360Code "0112/2///62720#UAB495" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB495"^^xsd:anyURI ; + qudt:symbol "kg/km" ; + qudt:ucumCode "kg.km-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M31" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per kilometre" . + +unit:KiloGM-PER-KiloM2 + a qudt:Unit ; + dcterms:description "One SI standard unit of mass over the square of one thousand standard unit of length."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:symbol "kg/km²" ; + qudt:ucumCode "kg.km-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per square kilometre"@en . + +unit:KiloGM-PER-KiloMOL + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the 1 000-fold of the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:iec61360Code "0112/2///62720#UAA611" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA611"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the 1 000-fold of the SI base unit mol" ; + qudt:symbol "kg/kmol" ; + qudt:ucumCode "kg.kmol-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/kmol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F24" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Kilomol"@en . + +unit:KiloGM-PER-L + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA612" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA612"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the unit litre" ; + qudt:symbol "kg/L" ; + qudt:ucumCode "kg.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B35" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Liter"@en-US ; + rdfs:label "Kilogram per Litre"@en . + +unit:KiloGM-PER-L-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit litre and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA614" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA614"^^xsd:anyURI ; + qudt:symbol "kg/(L·bar)" ; + qudt:ucumCode "kg.L-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G17" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per litre bar" . + +unit:KiloGM-PER-L-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit litre and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA613" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA613"^^xsd:anyURI ; + qudt:symbol "kg/(L·K)" ; + qudt:ucumCode "kg.L-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G39" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per litre kelvin" . + +unit:KiloGM-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram Per Meter (kg/m) is a unit in the category of Linear mass density. It is also known as kilogram/meter, kilogram/metre, kilograms per meter, kilogram per metre, kilograms per metre. This unit is commonly used in the SI unit system. Kilogram Per Meter (kg/m) has a dimension of ML-1 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearDensity ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAA616" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA616"^^xsd:anyURI ; + qudt:symbol "kg/m" ; + qudt:ucumCode "kg.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KL" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Meter"@en-US ; + rdfs:label "Kilogram per Metre"@en . + +unit:KiloGM-PER-M-DAY + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit day" ; + qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB431" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB431"^^xsd:anyURI ; + qudt:symbol "kg/(m·d)" ; + qudt:ucumCode "kg.m-1.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N39" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per metre day" . + +unit:KiloGM-PER-M-HR + a qudt:Unit ; + dcterms:description "One SI standard unit of mass over one SI standard unit of length over 3600 times one SI standard unit of time."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB432" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB432"^^xsd:anyURI ; + qudt:symbol "kg/(m·h)" ; + qudt:ucumCode "kg.m-1.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N40" ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per metre hour"@en . + +unit:KiloGM-PER-M-MIN + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit minute" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB430" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB430"^^xsd:anyURI ; + qudt:symbol "kg/(m·min)" ; + qudt:ucumCode "kg.m-1.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N38" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per metre minute" . + +unit:KiloGM-PER-M-SEC + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the SI base unit second" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB429" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB429"^^xsd:anyURI ; + qudt:symbol "kg/(m·s)" ; + qudt:ucumCode "kg.m-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N37" ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per metre second"@en . + +unit:KiloGM-PER-M-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ; + qudt:exactMatch unit:N-PER-M2 ; + qudt:exactMatch unit:PA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:siUnitsExpression "kg/m/s^2" ; + qudt:symbol "kg/(m·s²)" ; + qudt:ucumCode "kg.m-1.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per metre square second"@en . + +unit:KiloGM-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram Per Square Meter (kg/m2) is a unit in the category of Surface density. It is also known as kilograms per square meter, kilogram per square metre, kilograms per square metre, kilogram/square meter, kilogram/square metre. This unit is commonly used in the SI unit system. Kilogram Per Square Meter (kg/m2) has a dimension of ML-2 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:BodyMassIndex ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MeanMassRange ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:iec61360Code "0112/2///62720#UAA617" ; + qudt:iec61360Code "0112/2///62720#UAD513" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA617"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD513"^^xsd:anyURI ; + qudt:symbol "kg/m²" ; + qudt:ucumCode "kg.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "kg/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "28" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Square Meter"@en-US ; + rdfs:label "Kilogram per Square Metre"@en . + +unit:KiloGM-PER-M2-DAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of areal density over time equivalent to 1 kg per square meter per day." ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001157407407407410 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A measure of areal density over time equivalent to 1 kg per square meter per day." ; + qudt:symbol "kg/(m²·d)" ; + qudt:ucumCode "kg.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per square meter per day"@en-US ; + rdfs:label "kilogram per square metre per day"@en . + +unit:KiloGM-PER-M2-PA-SEC + a qudt:Unit ; + dcterms:description "unit for the ability of a material to allow the transition of the steam" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:S-PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:iec61360Code "0112/2///62720#UAB481" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB481"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ; + qudt:symbol "kg/(m²·Pa·s)" ; + qudt:ucumCode "kg.m-2.Pa-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q28" ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per square metre Pascal second"@en . + +unit:KiloGM-PER-M2-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:KiloGM-PER-SEC-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "kg/(m²·s)" ; + qudt:ucumCode "kg.m-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H56" ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per square metre second"@en . + +unit:KiloGM-PER-M2-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:PressureLossPerLength ; + qudt:symbol "kg/(m²·s²)" ; + qudt:ucumCode "kg.m-2.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Square Meter Square Second"@en-US ; + rdfs:label "Kilogram per Square Metre Square Second"@en . + +unit:KiloGM-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram per cubic metre is an SI derived unit of density, defined by mass in kilograms divided by volume in cubic metres. The official SI symbolic abbreviation is $kg \\cdot m^{-3}$, or equivalently either $kg/m^3$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$kg/m^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassConcentrationOfWater ; + qudt:hasQuantityKind quantitykind:MassConcentrationOfWaterVapour ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA619" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA619"^^xsd:anyURI ; + qudt:plainTextDescription "Kilogram per cubic metre is an SI derived unit of density, defined by mass in kilograms divided by volume in cubic metres. The official SI symbolic abbreviation is kg . m^-3, or equivalently either kg/m^3." ; + qudt:symbol "kg/m³" ; + qudt:ucumCode "kg.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "kg/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KMQ" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogramm je Kubikmeter"@de ; + rdfs:label "chilogrammo al metro cubo"@it ; + rdfs:label "kilogram bölü metre küp"@tr ; + rdfs:label "kilogram na kubični meter"@sl ; + rdfs:label "kilogram na metr krychlový"@cs ; + rdfs:label "kilogram na metr sześcienny"@pl ; + rdfs:label "kilogram pe metru cub"@ro ; + rdfs:label "kilogram per cubic meter"@en-US ; + rdfs:label "kilogram per cubic metre"@en ; + rdfs:label "kilogram per meter kubik"@ms ; + rdfs:label "kilogramme par mètre cube"@fr ; + rdfs:label "kilogramo por metro cúbico"@es ; + rdfs:label "quilograma por metro cúbico"@pt ; + rdfs:label "χιλιόγραμμο ανά κυβικό μέτρο"@el ; + rdfs:label "килограм на кубичен метър"@bg ; + rdfs:label "килограмм на кубический метр"@ru ; + rdfs:label "كيلوغرام لكل متر مكعب"@ar ; + rdfs:label "کیلوگرم بر متر مکعب"@fa ; + rdfs:label "किलोग्राम प्रति घन मीटर"@hi ; + rdfs:label "キログラム毎立方メートル"@ja ; + rdfs:label "千克每立方米"@zh . + +unit:KiloGM-PER-M3-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA621" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA621"^^xsd:anyURI ; + qudt:symbol "kg/(m³·bar)" ; + qudt:ucumCode "kg.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G18" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic metre bar" . + +unit:KiloGM-PER-M3-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA620" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA620"^^xsd:anyURI ; + qudt:symbol "kg/(m³·K)" ; + qudt:ucumCode "kg.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G40" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic metre kelvin" . + +unit:KiloGM-PER-M3-PA + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product of the power of the SI base unit metre with exponent 3 and the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAB310" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB310"^^xsd:anyURI ; + qudt:symbol "kg/(m³·Pa)" ; + qudt:ucumCode "kg.m-3.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M73" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per cubic metre pascal" . + +unit:KiloGM-PER-M3-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "kg/(m³·s)" ; + qudt:ucumCode "kg.m-3.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilograms per cubic metre second"@en . + +unit:KiloGM-PER-MIN + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01666667 ; + qudt:conversionMultiplierSN 1.666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA624" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA624"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the unit minute" ; + qudt:symbol "kg/min" ; + qudt:ucumCode "kg.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F31" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Minute"@en . + +unit:KiloGM-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-7 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA626" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA626"^^xsd:anyURI ; + qudt:symbol "kg/(min·bar)" ; + qudt:ucumCode "kg.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F68" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per minute bar" . + +unit:KiloGM-PER-MIN-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA625" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA625"^^xsd:anyURI ; + qudt:symbol "kg/(min·K)" ; + qudt:ucumCode "kg.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F41" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per minute kelvin" . + +unit:KiloGM-PER-MOL + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{}$, symbol $kg/mol$, is the base SI unit for molar mass. + In chemistry, the molar mass $M$ is defined as the mass of a given substance (chemical element or chemical compound) divided by its amount of substance. + It is a physical property of a given substance. + However, for historical reasons, molar masses are almost always expressed in $g/mol$. + As an example, the molar mass of water is approximately: $18.01528(33) \\; g/mol$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg mol^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarMass ; + qudt:iec61360Code "0112/2///62720#UAA628" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA628"^^xsd:anyURI ; + qudt:symbol "kg/mol" ; + qudt:ucumCode "kg.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D74" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Mol"@en . + +unit:KiloGM-PER-MegaBTU_IT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Kilogram per Mega BTU}$ is an Imperial unit for 'Mass Per Energy' expressed as $kg/MBtu$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000000947817 ; + qudt:conversionMultiplierSN 9.47817E-10 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$kg/MBtu$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaBTU_IT ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:plainTextDescription "Kilogram per Mega BTU is an Imperial Unit for 'Mass Per Energy." ; + qudt:symbol "kg/MBtu{IT}" ; + qudt:ucumCode "k[g].[MBtu_IT]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Mega BTU"@en . + +unit:KiloGM-PER-MilliM + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearDensity ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB070" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB070"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "kg/mm" ; + qudt:ucumCode "kg.mm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KW" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Millimeter"@en-US ; + rdfs:label "Kilogram per Millimetre"@en . + +unit:KiloGM-PER-PA + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB316" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB316"^^xsd:anyURI ; + qudt:symbol "kg/Pa" ; + qudt:ucumCode "kg.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M74" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per pascal" . + +unit:KiloGM-PER-PA-SEC-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VaporPermeability ; + qudt:hasQuantityKind quantitykind:WaterVaporDiffusionCoefficient ; + qudt:plainTextDescription "Common unit for the Water vapour diffusion coefficient" ; + qudt:symbol "kg/(Pa·s·m)" ; + qudt:ucumCode "kg.Pa-1.s-1.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogramm je Pascal Sekunde Meter"@de ; + rdfs:label "chilogrammo al pascal secondo metro"@it ; + rdfs:label "kilogram na pascal sekunda meter"@sl ; + rdfs:label "kilogram na pascal sekunda metr"@cs ; + rdfs:label "kilogram na paskalosekundaometr"@pl ; + rdfs:label "kilogram pe pascal-secundă-metru"@ro ; + rdfs:label "kilogram per pascal saat meter"@ms ; + rdfs:label "kilogram per pascal saniye metre"@tr ; + rdfs:label "kilogram per pascal second metre"@en ; + rdfs:label "kilogramme par pascal-seconde-mètre"@fr ; + rdfs:label "kilogramo por pascal segundo metro"@es ; + rdfs:label "quilograma por pascal segundo metro"@pt ; + rdfs:label "килограмм на паскаль-секунда-метр"@ru . + +unit:KiloGM-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilogram Per Second (kg/s) is a unit in the category of Mass flow rate. It is also known as kilogram/second, kilograms per second. This unit is commonly used in the SI unit system. Kilogram Per Second (kg/s) has a dimension of $MT^{-1}$ where $M$ is mass, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA629" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA629"^^xsd:anyURI ; + qudt:symbol "kg/s" ; + qudt:ucumCode "kg.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KGS" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Second"@en . + +unit:KiloGM-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA631" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA631"^^xsd:anyURI ; + qudt:symbol "kg/(s·bar)" ; + qudt:ucumCode "kg.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F69" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per second bar" . + +unit:KiloGM-PER-SEC-K + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA630" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA630"^^xsd:anyURI ; + qudt:symbol "kg/(s·K)" ; + qudt:ucumCode "kg.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F42" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per second kelvin" . + +unit:KiloGM-PER-SEC-M2 + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 2 and the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:KiloGM-PER-M2-SEC ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:iec61360Code "0112/2///62720#UAA618" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA618"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 2 and the SI base unit second" ; + qudt:symbol "kg/(s·m²)" ; + qudt:ucumCode "kg.(s.m2)-1"^^qudt:UCUMcs ; + qudt:ucumCode "kg.s-1.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "kg/(s.m2)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H56" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Second Square Meter"@en-US ; + rdfs:label "Kilogram per Second Square Metre"@en . + +unit:KiloGM-PER-SEC-PA + a qudt:Unit ; + dcterms:description "SI base unit kilogram divided by the product of the SI base unit second and the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB321" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB321"^^xsd:anyURI ; + qudt:symbol "kg/(s·Pa)" ; + qudt:ucumCode "kg.s-1.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M87" ; + rdfs:isDefinedBy ; + rdfs:label "kilogram per second pascal" . + +unit:KiloGM-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$kg-per-sec2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:latexSymbol "$kg \\cdot s^2$"^^qudt:LatexString ; + qudt:symbol "kg/s²" ; + qudt:ucumCode "kg.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "kg/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Square Second"@en . + +unit:KiloGM-PER-SEC3-K + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:plainTextDescription "Unit commonly used for the coefficient of heat transfer" ; + qudt:symbol "kg/(s³·K)" ; + qudt:ucumCode "kg.s-3.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogramm je Kubiksekunde Kelvin"@de ; + rdfs:label "chilogrammo al secondo cubo per kelvin"@it ; + rdfs:label "kilogram na krychlovýsekunda kelvin"@cs ; + rdfs:label "kilogram na kubični sekunda kelvin"@sl ; + rdfs:label "kilogram na sekunda sześciennyokelwin"@pl ; + rdfs:label "kilogram pe secundă cub-kelvin"@ro ; + rdfs:label "kilogram per cubic second kelvin"@en ; + rdfs:label "kilogram per saat kubik kelvin"@ms ; + rdfs:label "kilogram per saniyeküp kelvin"@tr ; + rdfs:label "kilogramme par seconde cube-kelvin"@fr ; + rdfs:label "kilogramo porsegundo cúbico kelvin"@es ; + rdfs:label "quilograma por segundo cúbico kelvin"@pt ; + rdfs:label "килограмм на кубический секунда-кельвин"@ru . + +unit:KiloGM-PER-YR + a qudt:Unit ; + dcterms:description "The SI base unit kilogram divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000003168808781 ; + qudt:conversionMultiplierSN 3.168808781E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:informativeReference "http://dd.eionet.europa.eu/vocabulary/wise/uom/kg.a-1"^^xsd:anyURI ; + qudt:plainTextDescription "kilogram divided by the unit year with 365 days" ; + qudt:symbol "kg/a" ; + qudt:ucumCode "kg.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram per Jaar"@nl ; + rdfs:label "Kilogram per Year"@en . + +unit:KiloGM-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$kilog-sec2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "kg·s²" ; + qudt:ucumCode "kg.s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Square Second"@en . + +unit:KiloGM2-PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M2H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "kg²/s²" ; + qudt:ucumCode "kg2.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Kilograms per square second"@en . + +unit:KiloGM_F + a qudt:Unit ; + dcterms:description "\"Kilogram Force\" is a unit for 'Force' expressed as $kgf$."^^qudt:LatexString ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilogram-force"^^xsd:anyURI ; + qudt:exactMatch unit:KiloPOND ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA632" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilogram-force?oldid=493375479"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA632"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:GM_F ; + qudt:symbol "kgf" ; + qudt:ucumCode "kgf"^^qudt:UCUMcs ; + qudt:udunitsCode "kgf" ; + qudt:uneceCommonCode "B37" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Force"@en . + +unit:KiloGM_F-M + a qudt:Unit ; + dcterms:description "product of the unit kilogram-force and the SI base unit metre"^^rdf:HTML ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA634" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA634"^^xsd:anyURI ; + qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre" ; + qudt:symbol "kgf·m" ; + qudt:ucumCode "kgf.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B38" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram_force Meter"@en-US ; + rdfs:label "Kilogram_force Metre"@en . + +unit:KiloGM_F-M-PER-CentiM2 + a qudt:Unit ; + dcterms:description "product of the unit kilogram-force and the SI base unit metre divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:conversionMultiplier 98066.5 ; + qudt:conversionMultiplierSN 9.80665E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB189" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB189"^^xsd:anyURI ; + qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "kgf·m/cm²" ; + qudt:ucumCode "kgf.m.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E44" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Force Meter per Square Centimeter"@en-US ; + rdfs:label "Kilogram Force Metre per Square Centimetre"@en . + +unit:KiloGM_F-M-PER-SEC + a qudt:Unit ; + dcterms:description "product of the SI base unit metre and the unit kilogram-force according to the Anglo-American and Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB154" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB154"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI base unit metre and the unit kilogram-force according to the Anglo-American and Imperial system of units divided by the SI base unit second" ; + qudt:symbol "kgf·m/s" ; + qudt:ucumCode "kgf.m.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B39" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram_force Meter per Second"@en-US ; + rdfs:label "Kilogram_force Metre per Second"@en . + +unit:KiloGM_F-PER-CentiM2 + a qudt:Unit ; + dcterms:description "\"Kilogram Force per Square Centimeter\" is a unit for 'Force Per Area' expressed as $kgf/cm^{2}$."^^qudt:LatexString ; + qudt:conversionMultiplier 98066.5 ; + qudt:conversionMultiplierSN 9.80665E4 ; + qudt:expression "$kgf/cm^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA633" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA633"^^xsd:anyURI ; + qudt:symbol "kgf/cm²" ; + qudt:ucumCode "kgf.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E42" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Force per Square Centimeter"@en-US ; + rdfs:label "Kilogram Force per Square Centimetre"@en . + +unit:KiloGM_F-PER-M2 + a qudt:Unit ; + dcterms:description "A non-SI-conforming unit of pressure"^^rdf:HTML ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA635" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA635"^^xsd:anyURI ; + qudt:plainTextDescription "A non-SI-conforming unit of pressure" ; + qudt:symbol "kgf/m²" ; + qudt:ucumCode "kgf.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B40" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Force per Square Meter"@en-US ; + rdfs:label "Kilogram Force per Square Metre"@en . + +unit:KiloGM_F-PER-MilliM2 + a qudt:Unit ; + dcterms:description "A non-SI-conforming unit of pressure"^^rdf:HTML ; + qudt:conversionMultiplier 9806650.0 ; + qudt:conversionMultiplierSN 9.80665E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA636" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA636"^^xsd:anyURI ; + qudt:plainTextDescription "A non-SI-conforming unit of pressure" ; + qudt:symbol "kgf/mm²" ; + qudt:ucumCode "kgf.mm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E41" ; + rdfs:isDefinedBy ; + rdfs:label "Kilogram Force per Square Millimeter"@en-US ; + rdfs:label "Kilogram Force per Square Millimetre"@en . + +unit:KiloGRAY + a qudt:Unit ; + dcterms:description "1,000-fold of the unit gray" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:hasQuantityKind quantitykind:Kerma ; + qudt:iec61360Code "0112/2///62720#UAB504" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB504"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:GRAY ; + qudt:symbol "kGy" ; + rdfs:isDefinedBy ; + rdfs:label "kilogray" . + +unit:KiloH + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit henry" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:iec61360Code "0112/2///62720#UAB386" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB386"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:H ; + qudt:symbol "kH" ; + qudt:uneceCommonCode "P24" ; + rdfs:isDefinedBy ; + rdfs:label "kilohenry" . + +unit:KiloHZ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Kilohertz\" is a C.G.S System unit for 'Frequency' expressed as $KHz$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA566" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA566"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:HZ ; + qudt:symbol "kHz" ; + qudt:ucumCode "kHz"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KHZ" ; + rdfs:isDefinedBy ; + rdfs:label "Kilohertz"@en . + +unit:KiloHZ-M + a qudt:Unit ; + dcterms:description "product of the 1 000-fold of the SI derived unit hertz and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloHZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ConductionSpeed ; + qudt:hasQuantityKind quantitykind:GroupSpeedOfSound ; + qudt:hasQuantityKind quantitykind:PhaseSpeedOfSound ; + qudt:hasQuantityKind quantitykind:SoundParticleVelocity ; + qudt:iec61360Code "0112/2///62720#UAA567" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA567"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the SI derived unit hertz and the SI base unit metre" ; + qudt:symbol "kHz·m" ; + qudt:ucumCode "kHz.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M17" ; + rdfs:isDefinedBy ; + rdfs:label "Kilohertz Meter"@en-US ; + rdfs:label "Kilohertz Metre"@en . + +unit:KiloJ + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA568" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA568"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit joule" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:J ; + qudt:symbol "kJ" ; + qudt:ucumCode "kJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KJO" ; + rdfs:isDefinedBy ; + rdfs:label "Kilojoule"@en . + +unit:KiloJ-PER-DAY + a qudt:Unit ; + dcterms:description "quotient from the 1,000-fold of the SI derived unit joule divided by the unit day" ; + qudt:conversionMultiplier 0.01157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB450" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB450"^^xsd:anyURI ; + qudt:symbol "kJ/d" ; + qudt:ucumCode "kJ.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P21" ; + rdfs:isDefinedBy ; + rdfs:label "kilojoule per day" . + +unit:KiloJ-PER-HR + a qudt:Unit ; + dcterms:description "quotient from the 1,000-fold of the SI derived unit joule divided by the unit hour" ; + qudt:conversionMultiplier 0.2777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB449" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB449"^^xsd:anyURI ; + qudt:symbol "kJ/h" ; + qudt:ucumCode "kJ.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P20" ; + rdfs:isDefinedBy ; + rdfs:label "kilojoule per hour" . + +unit:KiloJ-PER-K + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit joule divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAA569" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA569"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit kelvin" ; + qudt:symbol "kJ/K" ; + qudt:ucumCode "kJ.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "kJ/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B41" ; + rdfs:isDefinedBy ; + rdfs:label "Kilojoule per Kelvin"@en . + +unit:KiloJ-PER-KiloGM + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit joule divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAA570" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA570"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit kilogram" ; + qudt:symbol "kJ/kg" ; + qudt:ucumCode "kJ.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "kJ/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B42" ; + rdfs:isDefinedBy ; + rdfs:label "Kilojoule per Kilogram"@en . + +unit:KiloJ-PER-KiloGM-K + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit joule divided by the product of the SI base unit kilogram and the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEntropy ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantPressure ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtConstantVolume ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacityAtSaturation ; + qudt:iec61360Code "0112/2///62720#UAA571" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA571"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the product of the SI base unit kilogram and the SI base unit kelvin" ; + qudt:symbol "kJ/(K·kg)" ; + qudt:ucumCode "kJ.(kg.K)-1"^^qudt:UCUMcs ; + qudt:ucumCode "kJ.kg-1.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "kJ/(kg.K)"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B43" ; + rdfs:isDefinedBy ; + rdfs:label "Kilojoule per Kilogram Kelvin"@en . + +unit:KiloJ-PER-KiloV + a qudt:Unit ; + dcterms:description "Specification of the maximum of the energy absorption capability related to voltage rated value in kJ/kV, which could be emplaced in an arrester or parts of an arrester during a recovery test, without causing a thermal run away" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAD920" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD920"^^xsd:anyURI ; + qudt:symbol "kJ/kV" ; + qudt:ucumCode "kJ.kV-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilojoule per kilovolt" . + +unit:KiloJ-PER-MIN + a qudt:Unit ; + dcterms:description "quotient from the 1,000-fold of the SI derived unit joule divided by the unit minute" ; + qudt:conversionMultiplier 16.66666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB448" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB448"^^xsd:anyURI ; + qudt:symbol "kJ/min" ; + qudt:ucumCode "kJ.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P19" ; + rdfs:isDefinedBy ; + rdfs:label "kilojoule per minute" . + +unit:KiloJ-PER-MOL + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit joule divided by the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarEnergy ; + qudt:iec61360Code "0112/2///62720#UAA572" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA572"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit mol" ; + qudt:symbol "kJ/mol" ; + qudt:ucumCode "kJ.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "kJ/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B44" ; + rdfs:isDefinedBy ; + rdfs:label "Kilojoule per Mole"@en . + +unit:KiloJ-PER-SEC + a qudt:Unit ; + dcterms:description "quotient from the 1,000-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB447" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB447"^^xsd:anyURI ; + qudt:symbol "kJ/s" ; + qudt:ucumCode "kJ.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P18" ; + rdfs:isDefinedBy ; + rdfs:label "kilojoule per second" . + +unit:KiloL + a qudt:Unit ; + dcterms:description "1 000-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB114" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB114"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit litre" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:L ; + qudt:symbol "kL" ; + qudt:ucumCode "kL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K6" ; + rdfs:isDefinedBy ; + rdfs:label "Kilolitre"@en ; + rdfs:label "Kilolitre"@en-US . + +unit:KiloL-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume kilolitres divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAB121" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB121"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume kilolitres divided by the unit hour" ; + qudt:symbol "kL/h" ; + qudt:ucumCode "kL.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "kL/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4X" ; + rdfs:isDefinedBy ; + rdfs:label "Kilolitre per Hour"@en ; + rdfs:label "Kilolitre per Hour"@en-US . + +unit:KiloLB + a qudt:Unit ; + qudt:conversionMultiplier 453.59237 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:LB ; + rdfs:isDefinedBy ; + rdfs:label "KiloLB" . + +unit:KiloLB-PER-HR + a qudt:Unit ; + dcterms:description "1,000-fold of the unit of the mass avoirdupois pound according to the avoirdupois unit system divided by the unit hour" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloLB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAB391" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB391"^^xsd:anyURI ; + qudt:symbol "klb/h" ; + qudt:uneceCommonCode "M90" ; + rdfs:isDefinedBy ; + rdfs:label "kilopound per hour" . + +unit:KiloLB_F + a qudt:Unit ; + dcterms:description "1,000-fold of the unit of the force pound-force (lbf) according to the Anglo-American system of units" ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4448.222 ; + qudt:conversionMultiplierSN 4.448222E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB232" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB232"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:LB_F ; + qudt:symbol "klbf" ; + qudt:uneceCommonCode "M75" ; + rdfs:isDefinedBy ; + rdfs:label "KiloPound Force"@en . + +unit:KiloLB_F-FT-PER-A + a qudt:Unit ; + dcterms:description "product of the Anglo-American unit pound-force and foot divided by the SI base unit ampere"^^rdf:HTML ; + qudt:conversionMultiplier 1355.81800916358032544 ; + qudt:conversionMultiplierSN 1.35581800916358032544E3 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloLB_F ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAB483" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB483"^^xsd:anyURI ; + qudt:plainTextDescription "product of the Anglo-American unit pound-force and foot divided by the SI base unit ampere" ; + qudt:symbol "klbf·ft/A" ; + qudt:ucumCode "[lbf_av].[ft_i].A-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F22" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Foot per Ampere"@en . + +unit:KiloLB_F-FT-PER-LB + a qudt:Unit ; + dcterms:description "product of the Anglo-American unit pound-force and the Anglo-American unit foot divided by the Anglo-American unit pound (US) of mass"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2989.067 ; + qudt:conversionMultiplierSN 2.989067E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloLB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB484" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB484"^^xsd:anyURI ; + qudt:plainTextDescription "product of the Anglo-American unit pound-force and the Anglo-American unit foot divided by the Anglo-American unit pound (US) of mass" ; + qudt:symbol "klbf·ft/lbm" ; + qudt:ucumCode "[lbf_av].[ft_i].[lb_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G20" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Foot per Pound"@en . + +unit:KiloLB_F-PER-FT + a qudt:Unit ; + dcterms:description "unit of the length-related force"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 14593.904199475066 ; + qudt:conversionMultiplierSN 1.4593904199475066E4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloLB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB192" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB192"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the length-related force" ; + qudt:symbol "klbf/ft" ; + qudt:ucumCode "[klbf_av].[ft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F17" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Foot"@en . + +unit:KiloLB_F-PER-IN2 + a qudt:Unit ; + dcterms:description "1 000-fold of the unit for pressure psi as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894757.89 ; + qudt:conversionMultiplierSN 6.89475789E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloLB_F ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB138" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB138"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit for pressure psi as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:symbol "klbf/in²" ; + qudt:ucumCode "k[lbf_av].[sin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "84" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopound Force per Square Inch"@en . + +unit:KiloLM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The 1000-fold of the SI unit Lumen."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousFlux ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:LM ; + qudt:symbol "klm" ; + qudt:ucumCode "klm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilolumen"@de ; + rdfs:label "kilolumen"@en . + +unit:KiloM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A common metric unit of length or distance. One kilometer equals exactly 1000 meters, about 0.621 371 19 mile, 1093.6133 yards, or 3280.8399 feet. Oddly, higher multiples of the meter are rarely used; even the distances to the farthest galaxies are usually measured in kilometers. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilometre"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA637" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilometre?oldid=494821851"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA637"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:M ; + qudt:symbol "km" ; + qudt:ucumCode "km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KMT" ; + qudt:uneceCommonCode "KTM" ; + rdfs:isDefinedBy ; + rdfs:label "Kilometer"@en-US ; + rdfs:label "Kilometre"@en . + +unit:KiloM-PER-DAY + a qudt:Unit ; + dcterms:description "A change in location of a distance of one thousand metres in an elapsed time of one day (86400 seconds)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "km/d" ; + qudt:ucumCode "km.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilometres per day"@en . + +unit:KiloM-PER-HR + a qudt:Unit ; + dcterms:description "\"Kilometer per Hour\" is a C.G.S System unit for 'Linear Velocity' expressed as $km/h$."^^qudt:LatexString ; + qudt:altSymbol "kph" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.2777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777778E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilometres_per_hour"^^xsd:anyURI ; + qudt:expression "$km/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA638" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilometres_per_hour?oldid=487674812"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA638"^^xsd:anyURI ; + qudt:symbol "km/h" ; + qudt:ucumCode "km.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "km/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KMH" ; + rdfs:isDefinedBy ; + rdfs:label "Kilometer per Hour"@en-US ; + rdfs:label "Kilometre per Hour"@en . + +unit:KiloM-PER-SEC + a qudt:Unit ; + dcterms:description "\"Kilometer per Second\" is a C.G.S System unit for 'Linear Velocity' expressed as $km/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:expression "$km/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB392" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB392"^^xsd:anyURI ; + qudt:symbol "km/s" ; + qudt:ucumCode "km.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "km/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M62" ; + rdfs:isDefinedBy ; + rdfs:label "Kilometer per Second"@en-US ; + rdfs:label "Kilometre per Second"@en . + +unit:KiloM-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the product of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA735" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA735"^^xsd:anyURI ; + qudt:symbol "km/(s·bar)" ; + qudt:ucumCode "km.s-1.bar-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilometre per second bar" . + +unit:KiloM-PER-SEC2 + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit metre divided by the power of the SI base unit second by exponent 2" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB397" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB397"^^xsd:anyURI ; + qudt:symbol "km/s²" ; + qudt:ucumCode "km.s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M38" ; + rdfs:isDefinedBy ; + rdfs:label "kilometre per second squared" . + +unit:KiloM2 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:hasQuantityKind quantitykind:NuclearQuadrupoleMoment ; + qudt:iec61360Code "0112/2///62720#UAA639" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA639"^^xsd:anyURI ; + qudt:symbol "km²" ; + qudt:ucumCode "km2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KMK" ; + rdfs:isDefinedBy ; + rdfs:label "square kilometre" . + +unit:KiloM2-PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:GigaPA-CentiM3-PER-GM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificModulus ; + qudt:symbol "km²/s²" ; + qudt:ucumCode "km2.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "km2/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Kilometers per Square Second"@en-US ; + rdfs:label "Square kilometres per square second"@en . + +unit:KiloM3-PER-SEC2 + a qudt:Unit ; + dcterms:description "$\\textit{Cubic Kilometer per Square Second}$ is a unit for $\\textit{Standard Gravitational Parameter}$ expressed as $km^3/s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:expression "$km^3/s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:StandardGravitationalParameter ; + qudt:symbol "km³/s²" ; + qudt:ucumCode "km3.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "km3/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Kilometer per Square Second"@en-US ; + rdfs:label "Cubic Kilometre per Square Second"@en . + +unit:KiloMIL_Circ + a qudt:Unit ; + dcterms:description "unit of area, defined by a circle with a diameter of one thousand mil (one inch or 25.4 mm) based on the formula: area = π·(diameter/2)²" ; + qudt:conversionMultiplier 0.0000005067075 ; + qudt:conversionMultiplierSN 5.067075E-7 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAD931" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD931"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:MIL_Circ ; + qudt:symbol "kcmil" ; + rdfs:isDefinedBy ; + rdfs:label "thousands of circular mil" . + +unit:KiloMOL + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAA640" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA640"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit mol" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:MOL ; + qudt:symbol "kmol" ; + qudt:ucumCode "kmol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B45" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole"@en . + +unit:KiloMOL-PER-HR + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit mole divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-1 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:iec61360Code "0112/2///62720#UAA641" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA641"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time hour" ; + qudt:symbol "kmol/h" ; + qudt:ucumCode "kmol.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "kmol/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K58" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole per Hour"@en . + +unit:KiloMOL-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilomole Per Kilogram ($kmol/kg$) is a unit of Molality"^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$kmol/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:iec61360Code "0112/2///62720#UAB404" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB404"^^xsd:anyURI ; + qudt:symbol "kmol/kg" ; + qudt:ucumCode "kmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "kmol/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P47" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole per Kilogram"@en . + +unit:KiloMOL-PER-M3 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit mol divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:iec61360Code "0112/2///62720#UAA642" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA642"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit mol divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "kmol/m³" ; + qudt:ucumCode "kmol.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B46" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole per Cubic Meter"@en-US ; + rdfs:label "Kilomole per Cubic Metre"@en . + +unit:KiloMOL-PER-M3-BAR + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA644" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA644"^^xsd:anyURI ; + qudt:symbol "kmol/(m³·bar)" ; + qudt:ucumCode "kmol.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K60" ; + rdfs:isDefinedBy ; + rdfs:label "kilomole per cubic metre bar" . + +unit:KiloMOL-PER-M3-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA643" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA643"^^xsd:anyURI ; + qudt:symbol "kmol/(m³·K)" ; + qudt:ucumCode "kmol.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K59" ; + rdfs:isDefinedBy ; + rdfs:label "kilomole per cubic metre kelvin" . + +unit:KiloMOL-PER-MIN + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit mole divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 16.66666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E1 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA645" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA645"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time minute" ; + qudt:symbol "kmol/min" ; + qudt:ucumCode "kmol.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K61" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole per Minute"@en . + +unit:KiloMOL-PER-SEC + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit mol divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA646" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA646"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit mol divided by the SI base unit second" ; + qudt:symbol "kmol/s" ; + qudt:ucumCode "kmol.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "kmol/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E94" ; + rdfs:isDefinedBy ; + rdfs:label "Kilomole per Second"@en . + +unit:KiloN + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA573" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA573"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit newton" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:N ; + qudt:symbol "kN" ; + qudt:ucumCode "kN"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B47" ; + rdfs:isDefinedBy ; + rdfs:label "Kilonewton"@en . + +unit:KiloN-M + a qudt:Unit ; + dcterms:description "1 000-fold of the product of the SI derived unit newton and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA574" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA574"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the product of the SI derived unit newton and the SI base unit metre" ; + qudt:symbol "kN·m" ; + qudt:ucumCode "kN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B48" ; + rdfs:isDefinedBy ; + rdfs:label "Kilonewton Meter"@en-US ; + rdfs:label "Kilonewton Metre"@en . + +unit:KiloN-M-PER-DEG + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 57295.77957855229894302178227976183 ; + qudt:conversionMultiplierSN 5.729577957855229894302178227976183E4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasQuantityKind quantitykind:TorsionalSpringConstant ; + qudt:plainTextDescription "Unit for expressing the value of the torsional spring constant" ; + qudt:symbol "kN·m/°" ; + qudt:ucumCode "kN.m.deg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilonewton Metre per Degree"@en . + +unit:KiloN-M-PER-DEG-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 57295.77957855229894302178227976183 ; + qudt:conversionMultiplierSN 5.729577957855229894302178227976183E4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ModulusOfRotationalSubgradeReaction ; + qudt:plainTextDescription "A common unit for measuring the modulus of rotational subgrade reaction." ; + qudt:symbol "kN·m/(°·m)" ; + qudt:ucumCode "kN.m.deg-1.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilonewton metre per degree metre"@en . + +unit:KiloN-M-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerLength ; + qudt:plainTextDescription "Scaling of the base unit for expressing the rolling resistance, nM/m, by a factor of 1000" ; + qudt:symbol "kN·m/m" ; + qudt:ucumCode "kN.m.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilonewton Metre per metre"@en . + +unit:KiloN-M-PER-M2 + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB552" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB552"^^xsd:anyURI ; + qudt:symbol "kN·m/m²" ; + qudt:ucumCode "kN.m.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilonewton metre per square metre" . + +unit:KiloN-M2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasQuantityKind quantitykind:WarpingMoment ; + qudt:symbol "kN·m²" ; + qudt:ucumCode "kN.m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Newton Square Meter"@en-US ; + rdfs:label "Kilo Newton Square Metre"@en . + +unit:KiloN-PER-M + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit newton divided by the SI base unit metre" ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB364" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB364"^^xsd:anyURI ; + qudt:symbol "kN/m" ; + qudt:ucumCode "kN.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N31" ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Newton per metre" . + +unit:KiloN-PER-M2 + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit newton divided by the square of the SI base unit metre" ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:symbol "kN/m²" ; + qudt:ucumCode "kN.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Newton per square metre" . + +unit:KiloN-PER-M3 + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit newton divided by the cube of the SI base unit metre" ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificWeight ; + qudt:symbol "kN/m³" ; + qudt:ucumCode "kN.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilo Newton per cubic metre" . + +unit:KiloOHM + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA555" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA555"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit ohm" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:OHM ; + qudt:symbol "kΩ" ; + qudt:ucumCode "kOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B49" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloohm"@en . + +unit:KiloOHM-M + a qudt:Unit ; + dcterms:description "1,000-fold of the product of the SI derived unit ohm and the SI base unit metre" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA556" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA556"^^xsd:anyURI ; + qudt:symbol "kΩ·m" ; + qudt:ucumCode "kOhm.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B50" ; + rdfs:isDefinedBy ; + rdfs:label "kiloohm metre" . + +unit:KiloOHM-PER-BAR + a qudt:Unit ; + dcterms:description "1,000-fold of SI derived unit ohm per metrical non SI unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD880" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD880"^^xsd:anyURI ; + qudt:symbol "kΩ/bar" ; + qudt:ucumCode "kOhm.bar-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kiloohm per bar" . + +unit:KiloOHM-PER-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit ohm per SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD876" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD876"^^xsd:anyURI ; + qudt:symbol "kΩ/K" ; + qudt:ucumCode "kOhm.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kiloohm per kelvin" . + +unit:KiloOHM-PER-M + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit ohm divided by the SI base unit metre" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAB787" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB787"^^xsd:anyURI ; + qudt:symbol "kΩ/m" ; + qudt:ucumCode "kOhm.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kiloohm per metre" . + +unit:KiloPA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Kilopascal is a unit of pressure. 1 kPa is approximately the pressure exerted by a 10-g mass resting on a 1-cm2 area. 101.3 kPa = 1 atm. There are 1,000 pascals in 1 kilopascal."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal_%28unit%29"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA575" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA575"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:PA ; + qudt:symbol "kPa" ; + qudt:ucumCode "kPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KPA" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal"@en . + +unit:KiloPA-M2-PER-GM + a qudt:Unit ; + dcterms:description "sector-specific unit of the burst index as 1 000-fold of the derived unit for pressure pascal related to the substance, represented as a quotient from the 0.001-fold of the SI base unit kilogram divided by the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB130" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB130"^^xsd:anyURI ; + qudt:plainTextDescription "sector-specific unit of the burst index as 1 000-fold of the derived unit for pressure pascal related to the substance, represented as a quotient from the 0.001-fold of the SI base unit kilogram divided by the power of the SI base unit metre by exponent 2" ; + qudt:symbol "kPa·m²/g" ; + qudt:ucumCode "kPa.m2.g-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "33" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal Square Meter per Gram"@en-US ; + rdfs:label "Kilopascal Square Metre per Gram"@en . + +unit:KiloPA-PER-BAR + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloPA ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA577" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA577"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the unit bar" ; + qudt:symbol "kPa/bar" ; + qudt:ucumCode "kPa.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F03" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal per Bar"@en . + +unit:KiloPA-PER-K + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA576" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA576"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the SI base unit kelvin" ; + qudt:symbol "kPa/K" ; + qudt:ucumCode "kPa.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F83" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal per Kelvin"@en . + +unit:KiloPA-PER-M + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit pascal divided by the SI base unit metre" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB421" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB421"^^xsd:anyURI ; + qudt:symbol "kPa/m" ; + qudt:ucumCode "kPa.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P81" ; + rdfs:isDefinedBy ; + rdfs:label "kilopascal per metre" . + +unit:KiloPA-PER-MilliM + a qudt:Unit ; + dcterms:description "1 000-fold of the derived SI unit pascal divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloPA ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAB060" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB060"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the derived SI unit pascal divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "kPa/mm" ; + qudt:ucumCode "kPa.mm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "34" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal per Millimeter"@en-US ; + rdfs:label "Kilopascal per Millimetre"@en . + +unit:KiloPA_A + a qudt:ContextualUnit, qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Kilopascal Absolute}$ is a SI System unit for 'Force Per Area' expressed as $KPaA$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:scalingOf unit:PA ; + qudt:symbol "KPaA" ; + qudt:ucumCode "kPa{absolute}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilopascal Absolute"@en ; + skos:broader unit:KiloPA . + +unit:KiloPOND + a qudt:Unit ; + dcterms:description "illegal unit of the weight, defined as mass of 1 kg which receives a weight of 1 kp through gravitation at sea level, which equates to a force of 9,806 65 newton"^^rdf:HTML ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:exactMatch unit:KiloGM_F ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB059" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB059"^^xsd:anyURI ; + qudt:plainTextDescription "illegal unit of the weight, defined as mass of 1 kg which receives a weight of 1 kp through gravitation at sea level, which equates to a force of 9,806 65 newton" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:POND ; + qudt:symbol "kp" ; + qudt:uneceCommonCode "B51" ; + rdfs:isDefinedBy ; + rdfs:label "Kilopond"@en . + +unit:KiloR + a qudt:Unit ; + dcterms:description "1 000-fold of the unit roentgen"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.258 ; + qudt:conversionMultiplierSN 2.58E-1 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAB057" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB057"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit roentgen" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:R ; + qudt:symbol "kR" ; + qudt:ucumCode "kR"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KR" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloroentgen"@en . + +unit:KiloS + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit siemens"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAA578" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA578"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit siemens" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:S ; + qudt:symbol "kS" ; + qudt:ucumCode "kS"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B53" ; + rdfs:isDefinedBy ; + rdfs:label "Kilosiemens"@en . + +unit:KiloS-PER-M + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA579" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA579"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit siemens divided by the SI base unit metre" ; + qudt:symbol "kS/m" ; + qudt:ucumCode "kS.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B54" ; + rdfs:isDefinedBy ; + rdfs:label "Kilosiemens per Meter"@en-US ; + rdfs:label "Kilosiemens per Metre"@en . + +unit:KiloSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Killosecond\" is an Imperial unit for 'Time' expressed as $ks$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Millisecond"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA647" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Millisecond?oldid=495102042"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA647"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:SEC ; + qudt:symbol "ks" ; + qudt:ucumCode "ks"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B52" ; + rdfs:isDefinedBy ; + rdfs:label "kilosecond"@en . + +unit:KiloT + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit tesla" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticField ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAB385" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB385"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:T ; + qudt:symbol "kT" ; + qudt:uneceCommonCode "P13" ; + rdfs:isDefinedBy ; + rdfs:label "kilotesla" . + +unit:KiloTONNE + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:KiloTON_Metric ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:TONNE ; + qudt:symbol "kt" ; + qudt:uneceCommonCode "KTN" ; + rdfs:isDefinedBy ; + rdfs:label "KiloTonne"@en . + +unit:KiloTONNE-PER-YR + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI base unit kilogram divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.03168808781 ; + qudt:conversionMultiplierSN 3.168808781E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloTONNE ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:informativeReference "http://dd.eionet.europa.eu/vocabulary/wise/uom/1000t.a-1"^^xsd:anyURI ; + qudt:plainTextDescription "1000 metric tonne divided by the unit year with 365 days" ; + qudt:symbol "kt/a" ; + qudt:ucumCode "kt.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "KiloTon per Jaar"@nl ; + rdfs:label "KiloTonne per Year"@en . + +unit:KiloTON_Metric + a qudt:Unit ; + dcterms:description "1 000 000-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:KiloTONNE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB080" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB080"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:TON_Metric ; + qudt:symbol "kt" ; + qudt:ucumCode "kt"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KTN" ; + rdfs:isDefinedBy ; + rdfs:label "Metric KiloTON"@en . + +unit:KiloV + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit volt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAA580" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA580"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit volt" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:V ; + qudt:symbol "kV" ; + qudt:ucumCode "kV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KVT" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt"@en . + +unit:KiloV-A + a qudt:Unit ; + dcterms:description "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ; + dcterms:isReplacedBy unit:KiloVA ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:iec61360Code "0112/2///62720#UAA581" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA581"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere" ; + qudt:symbol "kV·A" ; + qudt:ucumCode "kV.A"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KVA" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere"@en . + +unit:KiloV-A-HR + a qudt:Unit ; + dcterms:description "product of the 1 000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:KiloVA-HR ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB160" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB160"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the unit for apparent by ampere and the unit hour" ; + qudt:symbol "kV·A·h" ; + qudt:ucumCode "kV.A.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C79" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Hour"@en . + +unit:KiloV-A-PER-K + a qudt:Unit ; + dcterms:description "product of the 1,000-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:KiloVA-PER-K ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD908" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD908"^^xsd:anyURI ; + qudt:symbol "kV·A/K" ; + qudt:ucumCode "kV.A.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilovolt ampere per kelvin" . + +unit:KiloV-A_Reactive + a qudt:Unit ; + dcterms:description "1 000-fold of the unit var"^^rdf:HTML ; + dcterms:isReplacedBy unit:KiloVAR ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAA648" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA648"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit var" ; + qudt:symbol "kV·A{Reactive}" ; + qudt:ucumCode "kV.A{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KVR" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Reactive"@en . + +unit:KiloV-A_Reactive-HR + a qudt:Unit ; + dcterms:description "product of the 1,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:KiloVAR-HR ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB195" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB195"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "kV·A{Reactive}·h" ; + qudt:ucumCode "kV.A.h{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K3" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Reactive Hour"@en . + +unit:KiloV-A_Reactive-PER-K + a qudt:Unit ; + dcterms:description "1,000-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:KiloVAR-PER-K ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD904" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD904"^^xsd:anyURI ; + qudt:symbol "kvar/K" ; + rdfs:isDefinedBy ; + rdfs:label "kilovolt ampere reactive per kelvin" . + +unit:KiloV-PER-M + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA582" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA582"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit volt divided by the SI base unit metre" ; + qudt:symbol "kV/m" ; + qudt:ucumCode "kV.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B55" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt per Meter"@en-US ; + rdfs:label "Kilovolt per Metre"@en . + +unit:KiloVA + a qudt:Unit ; + dcterms:description "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:iec61360Code "0112/2///62720#UAA581" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA581"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:VA ; + qudt:symbol "kVA" ; + qudt:ucumCode "kVA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KVA" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere"@en . + +unit:KiloVA-HR + a qudt:Unit ; + dcterms:description "product of the 1 000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloVA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB160" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB160"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the unit for apparent by ampere and the unit hour" ; + qudt:symbol "kVA·h" ; + qudt:ucumCode "kVA.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C79" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Hour"@en . + +unit:KiloVA-PER-K + a qudt:Unit ; + dcterms:description "product of the 1,000-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloVA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD908" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD908"^^xsd:anyURI ; + qudt:symbol "kVA/K" ; + qudt:ucumCode "kVA.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "kilovolt ampere per kelvin" . + +unit:KiloVAR + a qudt:Unit ; + dcterms:description "1 000-fold of the unit var"^^rdf:HTML ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAA648" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA648"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the unit var" ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:VAR ; + qudt:symbol "kVA{Reactive}" ; + qudt:ucumCode "kVA{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KVR" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Reactive"@en . + +unit:KiloVAR-HR + a qudt:Unit ; + dcterms:description "product of the 1,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloVAR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB195" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB195"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1 000-fold of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "kVA{Reactive}·h" ; + qudt:ucumCode "kVA.h{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K3" ; + rdfs:isDefinedBy ; + rdfs:label "Kilovolt Ampere Reactive Hour"@en . + +unit:KiloVAR-PER-K + a qudt:Unit ; + dcterms:description "1,000-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloVAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD904" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD904"^^xsd:anyURI ; + qudt:symbol "kVA{Reactive}/K" ; + rdfs:isDefinedBy ; + rdfs:label "kilovolt ampere reactive per kelvin" . + +unit:KiloW + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Kilowatt}$ is a derived unit of power in the International System of Units (SI). + The unit, defined as 1,000 joule per second, measures the rate of energy conversion or transfer. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Watt"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA583" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Watt?oldid=494906356"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA583"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:W ; + qudt:symbol "kW" ; + qudt:ucumCode "kW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KWT" ; + rdfs:isDefinedBy ; + rdfs:label "Kilowatt"@en . + +unit:KiloW-HR + a qudt:Unit ; + dcterms:description "The kilowatt hour, or kilowatt-hour, (symbol $kW \\cdot h$, $kW h$ or $kWh$) is a unit of energy equal to 1000 watt hours or 3.6 megajoules. For constant power, energy in watt hours is the product of power in watts and time in hours. The kilowatt hour is most commonly known as a billing unit for energy delivered to consumers by electric utilities."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kilowatt_hour"^^xsd:anyURI ; + qudt:expression "$kW-h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA584" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kilowatt_hour?oldid=494927235"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA584"^^xsd:anyURI ; + qudt:symbol "kW·h" ; + qudt:ucumCode "kW.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KWH" ; + rdfs:isDefinedBy ; + rdfs:label "Kilowatthour"@en . + +unit:KiloW-HR-PER-M2 + a qudt:Unit ; + dcterms:description "A unit of energy per unit area, equivalent to 3 600 000 joules per square metre."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:plainTextDescription "A unit of energy per unit area, equivalent to 3 600 000 joules per square metre." ; + qudt:symbol "kW·h/m²" ; + qudt:ucumCode "kW.h.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilowatt hour per square metre"@en . + +unit:KiloW-PER-M-DEG_C + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit watt divided by the product of the SI base unit metre and the unit for temperature degree Celsius" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB459" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB459"^^xsd:anyURI ; + qudt:symbol "kW/(m·°C)" ; + qudt:ucumCode "kW.m-1.Cel-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N82" ; + rdfs:isDefinedBy ; + rdfs:label "kilowatt per metre degree Celsius" . + +unit:KiloW-PER-M-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit watt divided by the product of the SI base unit metre and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB458" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB458"^^xsd:anyURI ; + qudt:symbol "kW/(m·K)" ; + qudt:ucumCode "kW.m-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N81" ; + rdfs:isDefinedBy ; + rdfs:label "kilowatt per metre kelvin" . + +unit:KiloW-PER-M2 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit watt divided by the square of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:plainTextDescription "1 000-fold of the SI derived unit watt divided by the square of the SI base unit metre" ; + qudt:symbol "kW/m²" ; + qudt:ucumCode "kW.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Kilowatt Per Square Meter"@en-US ; + rdfs:label "Kilowatt Per Square Metre"@en . + +unit:KiloW-PER-M2-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit watt divided by the product of the power of the SI base unit metre by exponent 2 and the SI base unit kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:hasQuantityKind quantitykind:CombinedNonEvaporativeHeatTransferCoefficient ; + qudt:hasQuantityKind quantitykind:SurfaceCoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAB456" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB456"^^xsd:anyURI ; + qudt:symbol "kW/(m²·K)" ; + qudt:ucumCode "kW.m-2.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N78" ; + rdfs:isDefinedBy ; + rdfs:label "kilowatt per square metre kelvin" . + +unit:KiloWB + a qudt:Unit ; + dcterms:description "1,000-fold of the SI derived unit weber" ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAB358" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB358"^^xsd:anyURI ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:WB ; + qudt:symbol "kWb" ; + qudt:uneceCommonCode "P11" ; + rdfs:isDefinedBy ; + rdfs:label "KiloWeber"@en . + +unit:KiloWB-PER-M + a qudt:Unit ; + dcterms:description "1 000-fold of the SI derived unit weber divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloWB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticVectorPotential ; + qudt:iec61360Code "0112/2///62720#UAA585" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA585"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI derived unit weber divided by the SI base unit metre" ; + qudt:symbol "kWb/m" ; + qudt:ucumCode "kWb.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B56" ; + rdfs:isDefinedBy ; + rdfs:label "Kiloweber per Meter"@en-US ; + rdfs:label "Kiloweber per Metre"@en . + +unit:KiloYR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 31557600000.0 ; + qudt:conversionMultiplierSN 3.15576E10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:prefix prefix:Kilo ; + qudt:scalingOf unit:YR ; + qudt:symbol "1000 a" ; + rdfs:isDefinedBy ; + rdfs:label "KiloYear"@en . + +unit:L + a qudt:Unit ; + dcterms:description "The $litre$ (American spelling: $\\textit{liter}$; SI symbol $l$ or $L$) is a non-SI metric system unit of volume equal to $1 \\textit{cubic decimetre}$ ($dm^3$), 1,000 cubic centimetres ($cm^3$) or $1/1000 \\textit{cubic metre}$. If the lower case \"L\" is used as the symbol, it is sometimes rendered as a cursive \"l\" to help distinguish it from the capital \"I\", although this usage has no official approval by any international bureau."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Litre"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DeciM3 ; + ] ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA649" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Litre?oldid=494846400"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA649"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:litre ; + qudt:symbol "L" ; + qudt:ucumCode "L"^^qudt:UCUMcs ; + qudt:ucumCode "l"^^qudt:UCUMcs ; + qudt:udunitsCode "L" ; + qudt:uneceCommonCode "LTR" ; + rdfs:isDefinedBy ; + rdfs:label "Liter"@en-US ; + rdfs:label "Litre"@en ; + skos:altLabel "litre" . + +unit:L-PER-BAR + a qudt:Unit ; + dcterms:description "unit litre divided by the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA651" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA651"^^xsd:anyURI ; + qudt:symbol "L/bar" ; + qudt:ucumCode "L.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G95" ; + rdfs:isDefinedBy ; + rdfs:label "litre per bar" . + +unit:L-PER-DAY + a qudt:Unit ; + dcterms:description "unit litre divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001157407 ; + qudt:conversionMultiplierSN 1.157407E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA652" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA652"^^xsd:anyURI ; + qudt:plainTextDescription "unit litre divided by the unit day" ; + qudt:symbol "L/d" ; + qudt:ucumCode "L.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "LD" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Day"@en-US ; + rdfs:label "Litre per Day"@en . + +unit:L-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-13 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA654" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA654"^^xsd:anyURI ; + qudt:symbol "L/(d·bar)" ; + qudt:ucumCode "L.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G82" ; + rdfs:isDefinedBy ; + rdfs:label "litre per day bar" . + +unit:L-PER-DAY-K + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA653" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA653"^^xsd:anyURI ; + qudt:symbol "L/(d·K)" ; + qudt:ucumCode "L.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G65" ; + rdfs:isDefinedBy ; + rdfs:label "litre per day kelvin" . + +unit:L-PER-HR + a qudt:Unit ; + dcterms:description "Unit litre divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777778 ; + qudt:conversionMultiplierSN 2.777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA655" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA655"^^xsd:anyURI ; + qudt:plainTextDescription "Unit litre divided by the unit hour" ; + qudt:symbol "L/h" ; + qudt:ucumCode "L.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E32" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Hour"@en-US ; + rdfs:label "Litre per Hour"@en . + +unit:L-PER-HR-BAR + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-12 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA657" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA657"^^xsd:anyURI ; + qudt:symbol "L/(h·bar)" ; + qudt:ucumCode "L.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G83" ; + rdfs:isDefinedBy ; + rdfs:label "litre per hour bar" . + +unit:L-PER-HR-K + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA656" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA656"^^xsd:anyURI ; + qudt:symbol "L/(h·K)" ; + qudt:ucumCode "L.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G66" ; + rdfs:isDefinedBy ; + rdfs:label "litre per hour kelvin" . + +unit:L-PER-K + a qudt:Unit ; + dcterms:description "unit litre divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA650" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA650"^^xsd:anyURI ; + qudt:plainTextDescription "unit litre divided by the SI base unit kelvin" ; + qudt:symbol "L/K" ; + qudt:ucumCode "L.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G28" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Kelvin"@en-US ; + rdfs:label "Litre per Kelvin"@en . + +unit:L-PER-KiloGM + a qudt:Unit ; + dcterms:description "unit of the volume litre divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB380" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB380"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume litre divided by the SI base unit kilogram" ; + qudt:symbol "L/kg" ; + qudt:ucumCode "L.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H83" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Kilogram"@en-US ; + rdfs:label "Litre per Kilogram"@en . + +unit:L-PER-L + a qudt:Unit ; + dcterms:description "volume ratio consisting of the unit litre divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA658" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA658"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio consisting of the unit litre divided by the unit litre" ; + qudt:symbol "L/L" ; + qudt:ucumCode "L.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K62" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Liter"@en-US ; + rdfs:label "Litre per Litre"@en . + +unit:L-PER-MIN + a qudt:Unit ; + dcterms:description "unit litre divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001666667 ; + qudt:conversionMultiplierSN 1.666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA659" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA659"^^xsd:anyURI ; + qudt:plainTextDescription "unit litre divided by the unit minute" ; + qudt:symbol "L/min" ; + qudt:ucumCode "L.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L2" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Minute"@en-US ; + rdfs:label "Litre per Minute"@en . + +unit:L-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-10 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA661" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA661"^^xsd:anyURI ; + qudt:symbol "L/(min·bar)" ; + qudt:ucumCode "L.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G84" ; + rdfs:isDefinedBy ; + rdfs:label "litre per minute bar" . + +unit:L-PER-MIN-K + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA660" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA660"^^xsd:anyURI ; + qudt:symbol "L/(min·K)" ; + qudt:ucumCode "L.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G67" ; + rdfs:isDefinedBy ; + rdfs:label "litre per minute kelvin" . + +unit:L-PER-MOL + a qudt:Unit ; + dcterms:description "unit litre divided by the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:MolarRefractivity ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:iec61360Code "0112/2///62720#UAA662" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA662"^^xsd:anyURI ; + qudt:plainTextDescription "unit litre divided by the SI base unit mol" ; + qudt:symbol "L/mol" ; + qudt:ucumCode "L.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B58" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Mole"@en-US ; + rdfs:label "Litre per Mole"@en . + +unit:L-PER-MOL-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit mol and the SI base unit second"^^qudt:LatexString ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate ; + qudt:hasQuantityKind quantitykind:SecondOrderReactionRateConstant ; + qudt:iec61360Code "0112/2///62720#UAD915" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD915"^^xsd:anyURI ; + qudt:symbol "L/(mol·s)" ; + qudt:ucumCode "L.mol-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "litre per mol second" . + +unit:L-PER-MicroMOL + a qudt:Unit ; + dcterms:description "The inverse of a molar concentration."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:MolarRefractivity ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:symbol "L/μmol" ; + qudt:ucumCode "L.umol-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/umol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Litres per micromole"@en . + +unit:L-PER-SEC + a qudt:Unit ; + dcterms:description "unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA664" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA664"^^xsd:anyURI ; + qudt:plainTextDescription "unit litre divided by the SI base unit second" ; + qudt:symbol "L/s" ; + qudt:ucumCode "L.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "L/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G51" ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Second"@en-US ; + rdfs:label "Litre per Second"@en . + +unit:L-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA666" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA666"^^xsd:anyURI ; + qudt:symbol "L/(s·bar)" ; + qudt:ucumCode "L.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G85" ; + rdfs:isDefinedBy ; + rdfs:label "litre per second bar" . + +unit:L-PER-SEC-K + a qudt:Unit ; + dcterms:description "unit litre divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA665" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA665"^^xsd:anyURI ; + qudt:symbol "L/(s·K)" ; + qudt:ucumCode "L.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G68" ; + rdfs:isDefinedBy ; + rdfs:label "litre per second kelvin" . + +unit:L-PER-SEC-M2 + a qudt:Unit ; + dcterms:description "Ventilation rate in Litres per second divided by the floor area"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VentilationRatePerFloorArea ; + qudt:plainTextDescription "Ventilation rate in Litres per second divided by the floor area" ; + qudt:symbol "L/(s·m²)" ; + qudt:ucumCode "L.s-1.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Liter per Second Square Meter"@en-US ; + rdfs:label "Litre per Second Square Metre"@en . + +unit:LA + a qudt:Unit ; + dcterms:description "The lambert (symbol $L$, $la$ or $Lb$) is a non-SI unit of luminance. A related unit of luminance, the foot-lambert, is used in the lighting, cinema and flight simulation industries. The SI unit is the candela per square metre ($cd/m^2$)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.31830988618 ; + qudt:conversionMultiplierSN 3.1830988618E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lambert"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:factorUnitScalar 0.31830988618 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAB259" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lambert?oldid=494078267"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB259"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "L" ; + qudt:ucumCode "Lmb"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P30" ; + rdfs:isDefinedBy ; + rdfs:label "Lambert"@en . + +unit:LANGLEY + a qudt:Unit ; + dcterms:description "[CGS] unit of the areal-related energy transmission (as a measure of the incendent quantity of heat of solar radiation on the earth's surface)" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:EnergyFluence ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:RadiantFluence ; + qudt:iec61360Code "0112/2///62720#UAB296" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB296"^^xsd:anyURI ; + qudt:symbol "Ly" ; + qudt:uneceCommonCode "P40" ; + rdfs:isDefinedBy ; + rdfs:label "langley" . + +unit:LA_FT + a qudt:Unit ; + dcterms:description "\"Foot Lambert\" is a C.G.S System unit for 'Luminance' expressed as $ft-L$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3.4262591 ; + qudt:conversionMultiplierSN 3.4262591E0 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$ft-L$"^^qudt:LatexString ; + qudt:factorUnitScalar 0.31830988618 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:symbol "ft-L" ; + qudt:ucumCode "[ft-Lmb]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P29" ; + rdfs:isDefinedBy ; + rdfs:label "Foot Lambert"@en . + +unit:LB + a qudt:Unit ; + dcterms:description "A pound of mass, based on the international standard definition of the pound of mass as exactly 0.45359237 kg."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.45359237 ; + qudt:conversionMultiplierSN 4.5359237E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:LB_M ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA669" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA669"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "lbm" ; + qudt:ucumCode "[lb_av]"^^qudt:UCUMcs ; + qudt:udunitsCode "lb" ; + qudt:uneceCommonCode "LBR" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass"@en . + +unit:LB-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Pound Degree Fahrenheit}$ is an Imperial unit for 'Mass Temperature' expressed as $lb-degF$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.251995761111111131270772 ; + qudt:conversionMultiplierSN 2.51995761111111131270772E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassTemperature ; + qudt:symbol "lbm·°F" ; + qudt:ucumCode "[lb_av].[degF]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Degree Fahrenheit"@en . + +unit:LB-DEG_R + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Pound Degree Rankine}$ is an Imperial unit for 'Mass Temperature' expressed as $lb-degR$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.251995761111111131270772 ; + qudt:conversionMultiplierSN 2.51995761111111131270772E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$lb-degR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassTemperature ; + qudt:symbol "lbm·°R" ; + qudt:ucumCode "[lb_av].[degR]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Degree Rankine"@en . + +unit:LB-FT-PER-SEC + a qudt:Unit ; + dcterms:description "product of the avoirdupois pound according to the avoirdupois unit system and the unit foot according to the Anglo-American and Imperial system of units divided by the SI base unit second" ; + qudt:conversionMultiplier 0.138254954376 ; + qudt:conversionMultiplierSN 1.38254954376E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Impulse ; + qudt:iec61360Code "0112/2///62720#UAB415" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB415"^^xsd:anyURI ; + qudt:symbol "lbm·ft/s" ; + qudt:ucumCode "[lb_av].[ft_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N10" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) foot per second" . + +unit:LB-FT2 + a qudt:Unit ; + dcterms:description "product of the unit pound according to the avoirdupois system of units and the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.04214011 ; + qudt:conversionMultiplierSN 4.214011E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:RotationalMass ; + qudt:iec61360Code "0112/2///62720#UAA671" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA671"^^xsd:anyURI ; + qudt:plainTextDescription "product of the unit pound according to the avoirdupois system of units and the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:symbol "lbm·ft²" ; + qudt:ucumCode "[lb_av].[sft_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K65" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass (avoirdupois) Square Foot"@en . + +unit:LB-FT2-PER-GAL_UK-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 2.083872775779299082282838578347267334173116064268442332389984612088964920341275968 ; + qudt:conversionMultiplierSN 2.083872775779299082282838578347267334173116064268442332389984612088964920341275968E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD856" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD856"^^xsd:anyURI ; + qudt:symbol "lbm·ft²/(gal{UK}·lbf·s)" ; + qudt:ucumCode "[lb_av].[ft_i]2.[gal_br]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square foot per gallon(UK) pound-force second" . + +unit:LB-FT2-PER-GAL_US-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 2.502626854833744493086617821084779253127869007556187848462093242975047573738776 ; + qudt:conversionMultiplierSN 2.502626854833744493086617821084779253127869007556187848462093242975047573738776E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD852" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD852"^^xsd:anyURI ; + qudt:symbol "lbm·ft²/(gal{US}·lbf·s)" ; + qudt:ucumCode "[lb_av].[ft_i]2.[gal_us]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square foot per gallon (US) pound-force second" . + +unit:LB-FT2-PER-IN3-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 578.1068034665949779030087166705840311562207088517638054327176207240543226740952704 ; + qudt:conversionMultiplierSN 5.781068034665949779030087166705840311562207088517638054327176207240543226740952704E2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD848" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD848"^^xsd:anyURI ; + qudt:symbol "lbm·ft²/(in³·lbf·s)" ; + qudt:ucumCode "[lb_av].[ft_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square foot per cubic inch pound-force second" . + +unit:LB-HR-PER-FT3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour" ; + qudt:conversionMultiplier 12684849.650195333239499933867654124396741790589536829728291114929411437703588 ; + qudt:conversionMultiplierSN 1.2684849650195333239499933867654124396741790589536829728291114929411437703588E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC846" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC846"^^xsd:anyURI ; + qudt:symbol "lbm·h/(ft³·gal{UK})" ; + qudt:ucumCode "[lb_av].h.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic foot gallon (UK)" . + +unit:LB-HR-PER-FT3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour" ; + qudt:conversionMultiplier 15233869.2424423705674072721585852518715359857332296007155378683289047293035 ; + qudt:conversionMultiplierSN 1.52338692424423705674072721585852518715359857332296007155378683289047293035E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC845" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC845"^^xsd:anyURI ; + qudt:symbol "lbm·h/(ft³·gal{US})" ; + qudt:ucumCode "[lb_av].h.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic foot gallon (US)" . + +unit:LB-HR-PER-FT3-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 3519023795.0041876010710798686331933264909830700172939821848834749863198205064 ; + qudt:conversionMultiplierSN 3.5190237950041876010710798686331933264909830700172939821848834749863198205064E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC847" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC847"^^xsd:anyURI ; + qudt:symbol "lbm·h/(ft³·in³)" ; + qudt:ucumCode "[lb_av].h.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic foot cubic inch" . + +unit:LB-HR-PER-FT3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 75424.89272556986456342335109381841563144898750316539709471380407341560228312 ; + qudt:conversionMultiplierSN 7.542489272556986456342335109381841563144898750316539709471380407341560228312E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC849" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC849"^^xsd:anyURI ; + qudt:symbol "lbm·h/(ft³·yd³)" ; + qudt:ucumCode "[lb_av].h.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic foot cubic yard" . + +unit:LB-HR-PER-FT6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 2036472.103590386343212430479533097669052636 ; + qudt:conversionMultiplierSN 2.036472103590386343212430479533097669052636E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC848" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC848"^^xsd:anyURI ; + qudt:symbol "lbm·h/ft⁶" ; + qudt:ucumCode "[lb_av].h.[ft_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per power of foot with the exponent 6" . + +unit:LB-HR-PER-GAL_UK-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 12684849.650195333239499933867654124396741790589536829728291114929411437703588 ; + qudt:conversionMultiplierSN 1.2684849650195333239499933867654124396741790589536829728291114929411437703588E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC863" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC863"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{UK}·ft³)" ; + qudt:ucumCode "[lb_av].h.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (UK) cubic foot" . + +unit:LB-HR-PER-GAL_UK-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 21919420195.537535837855885723306325290905285174268871988102623940310297574504 ; + qudt:conversionMultiplierSN 2.1919420195537535837855885723306325290905285174268871988102623940310297574504E10 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC862" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC862"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{UK}·in³)" ; + qudt:ucumCode "[lb_av].h.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (UK) cubic inch" . + +unit:LB-HR-PER-GAL_UK-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 469809.2463035308607222197728760784685045453775881112182401022569369923571832 ; + qudt:conversionMultiplierSN 4.698092463035308607222197728760784685045453775881112182401022569369923571832E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC864" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC864"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{UK}·yd³)" ; + qudt:ucumCode "[lb_av].h.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (UK) cubic yard" . + +unit:LB-HR-PER-GAL_UK2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per unit for time hour" ; + qudt:conversionMultiplier 79011841.29376367695695378272856609314407416 ; + qudt:conversionMultiplierSN 7.901184129376367695695378272856609314407416E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC861" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC861"^^xsd:anyURI ; + qudt:symbol "lbm·h/gal{UK}²" ; + qudt:ucumCode "[lb_av].h.[gal_br]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per square gallon (UK)" . + +unit:LB-HR-PER-GAL_US-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 15233869.2424423705674072721585852518715359857332296007155378683289047293035 ; + qudt:conversionMultiplierSN 1.52338692424423705674072721585852518715359857332296007155378683289047293035E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC858" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC858"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{US}·ft³)" ; + qudt:ucumCode "[lb_av].h.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (US) cubic foot" . + +unit:LB-HR-PER-GAL_US-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 26324126050.940416340479766290035313232433541445579466838922411497037639403 ; + qudt:conversionMultiplierSN 2.6324126050940416340479766290035313232433541445579466838922411497037639403E10 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC857" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC857"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{US}·in³)" ; + qudt:ucumCode "[lb_av].h.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (US) cubic inch" . + +unit:LB-HR-PER-GAL_US-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 564217.3793497174284224915614290831470197693437031035772642345900475911449 ; + qudt:conversionMultiplierSN 5.642173793497174284224915614290831470197693437031035772642345900475911449E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC859" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC859"^^xsd:anyURI ; + qudt:symbol "lbm·h/(gal{US}·yd³)" ; + qudt:ucumCode "[lb_av].h.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per gallon (US) cubic yard" . + +unit:LB-HR-PER-GAL_US2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per unit for time hour" ; + qudt:conversionMultiplier 113957255.63177669411463102290058577675823928 ; + qudt:conversionMultiplierSN 1.1395725563177669411463102290058577675823928E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC855" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC855"^^xsd:anyURI ; + qudt:symbol "lbm·h/gal{US}²" ; + qudt:ucumCode "[lb_av].h.[gal_us]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per square gallon (US)" . + +unit:LB-HR-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 3519023795.0041876010710798686331933264909830700172939821848834749863198205064 ; + qudt:conversionMultiplierSN 3.5190237950041876010710798686331933264909830700172939821848834749863198205064E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC853" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC853"^^xsd:anyURI ; + qudt:symbol "lbm·h/(in³·ft³)" ; + qudt:ucumCode "[lb_av].h.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic inch cubic foot" . + +unit:LB-HR-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour" ; + qudt:conversionMultiplier 21919420195.537535837855885723306325290905285174268871988102623940310297574504 ; + qudt:conversionMultiplierSN 2.1919420195537535837855885723306325290905285174268871988102623940310297574504E10 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC851" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC851"^^xsd:anyURI ; + qudt:symbol "lbm·h/(in³·gal{UK})" ; + qudt:ucumCode "[lb_av].h.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic inch gallon (UK)" . + +unit:LB-HR-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour" ; + qudt:conversionMultiplier 26324126050.940416340479766290035313232433541445579466838922411497037639403 ; + qudt:conversionMultiplierSN 2.6324126050940416340479766290035313232433541445579466838922411497037639403E10 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC850" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC850"^^xsd:anyURI ; + qudt:symbol "lbm·h/(in³·gal{US})" ; + qudt:ucumCode "[lb_av].h.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic inch gallon (US)" . + +unit:LB-HR-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 130334214.62978472596559555069011821230105450971546345289972840848652177795696 ; + qudt:conversionMultiplierSN 1.3033421462978472596559555069011821230105450971546345289972840848652177795696E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC854" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC854"^^xsd:anyURI ; + qudt:symbol "lbm·h/(in³·yd³)" ; + qudt:ucumCode "[lb_av].h.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per cubic inch cubic yard" . + +unit:LB-HR-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 6080873117767.236174650826012998158007635932 ; + qudt:conversionMultiplierSN 6.080873117767236174650826012998158007635932E12 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC852" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC852"^^xsd:anyURI ; + qudt:symbol "lbm·h/in⁶" ; + qudt:ucumCode "[lb_av].h.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound hour per power of inch with the exponent 6" . + +unit:LB-IN + a qudt:Unit ; + dcterms:description "unit of the unbalance (product of avoirdupois pound according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.011521246198 ; + qudt:conversionMultiplierSN 1.1521246198E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMass ; + qudt:iec61360Code "0112/2///62720#UAB194" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB194"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the unbalance (product of avoirdupois pound according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units)" ; + qudt:symbol "lbm·in" ; + qudt:ucumCode "[lb_av].[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "IA" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass (avoirdupois) Inch"@en . + +unit:LB-IN-PER-SEC + a qudt:Unit ; + dcterms:description "product of the avoirdupois pound according to the avoirdupois unit system and the unit inch according to the Anglo-American and Imperial system of units divided by the SI base unit second" ; + qudt:conversionMultiplier 0.011521246198 ; + qudt:conversionMultiplierSN 1.1521246198E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Impulse ; + qudt:iec61360Code "0112/2///62720#UAB416" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB416"^^xsd:anyURI ; + qudt:symbol "lbm·in/s" ; + qudt:ucumCode "[lb_av].[in_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N11" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) inch per second" . + +unit:LB-IN2 + a qudt:Unit ; + dcterms:description "product of the unit pound according to the avoirdupois system of units and the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0002926397 ; + qudt:conversionMultiplierSN 2.926397E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfInertia ; + qudt:hasQuantityKind quantitykind:RotationalMass ; + qudt:iec61360Code "0112/2///62720#UAA672" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA672"^^xsd:anyURI ; + qudt:plainTextDescription "product of the unit pound according to the avoirdupois system of units and the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:symbol "lbm·in²" ; + qudt:ucumCode "[lb_av].[sin_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F20" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass (avoirdupois) Square Inch"@en . + +unit:LB-IN2-PER-FT3-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.0023232815854335253420099051435128282339616138505378234106449231456072737790266052 ; + qudt:conversionMultiplierSN 2.3232815854335253420099051435128282339616138505378234106449231456072737790266052E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD845" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD845"^^xsd:anyURI ; + qudt:symbol "lbm·in²/(ft³·lbf·s)" ; + qudt:ucumCode "[lb_av].[in_i]2.[ft_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square inch per cubic foot pound-force second" . + +unit:LB-IN2-PER-GAL_UK-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.014471338720689576960297490127411578709535528224086405086041559806173367502369972 ; + qudt:conversionMultiplierSN 1.4471338720689576960297490127411578709535528224086405086041559806173367502369972E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD857" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD857"^^xsd:anyURI ; + qudt:symbol "lbm·in²/(gal{UK}·lbf·s)" ; + qudt:ucumCode "[lb_av].[in_i]2.[gal_br]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square inch per gallon(UK) pound-force second" . + +unit:LB-IN2-PER-GAL_US-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.0173793531585676700908792904241998559244990903302513045032089808539933859287415 ; + qudt:conversionMultiplierSN 1.73793531585676700908792904241998559244990903302513045032089808539933859287415E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD853" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD853"^^xsd:anyURI ; + qudt:symbol "lbm·in²/(gal{US}·lbf·s)" ; + qudt:ucumCode "[lb_av].[in_i]2.[gal_us]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square inch per gallon (US) pound-force second" . + +unit:LB-IN2-PER-IN3-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 4.0146305796291317909931160879901668830293104781372486488383168105837105741256616 ; + qudt:conversionMultiplierSN 4.0146305796291317909931160879901668830293104781372486488383168105837105741256616E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD849" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD849"^^xsd:anyURI ; + qudt:symbol "lbm·in²/(in³·lbf·s)" ; + qudt:ucumCode "[lb_av].[in_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound square inch per cubic inch pound-force second" . + +unit:LB-MIN-PER-FT3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute" ; + qudt:conversionMultiplier 211414.1608365888873249988977942354066123631764922804954715185821568572950598 ; + qudt:conversionMultiplierSN 2.114141608365888873249988977942354066123631764922804954715185821568572950598E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC871" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC871"^^xsd:anyURI ; + qudt:symbol "lbm·min/(ft³·gal{UK})" ; + qudt:ucumCode "[lb_av].min.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic foot gallon (UK)" . + +unit:LB-MIN-PER-FT3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute" ; + qudt:conversionMultiplier 253897.820707372842790121202643087531192266428887160011925631138815078821725 ; + qudt:conversionMultiplierSN 2.53897820707372842790121202643087531192266428887160011925631138815078821725E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC870" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC870"^^xsd:anyURI ; + qudt:symbol "lbm·min/(ft³·gal{US})" ; + qudt:ucumCode "[lb_av].min.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic foot gallon (US)" . + +unit:LB-MIN-PER-FT3-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 58650396.58340312668451799781055322210818305116695489970308139124977199700844 ; + qudt:conversionMultiplierSN 5.865039658340312668451799781055322210818305116695489970308139124977199700844E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC872" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC872"^^xsd:anyURI ; + qudt:symbol "lbm·min/(ft³·in³)" ; + qudt:ucumCode "[lb_av].min.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic foot cubic inch" . + +unit:LB-MIN-PER-FT3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 1257.081545426164409390389184896973593857483125052756618245230067890260038052 ; + qudt:conversionMultiplierSN 1.257081545426164409390389184896973593857483125052756618245230067890260038052E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC874" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC874"^^xsd:anyURI ; + qudt:symbol "lbm·min/(ft³·yd³)" ; + qudt:ucumCode "[lb_av].min.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic foot cubic yard" . + +unit:LB-MIN-PER-FT6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 33941.2017265064390535405079922182944842106 ; + qudt:conversionMultiplierSN 3.39412017265064390535405079922182944842106E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC873" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC873"^^xsd:anyURI ; + qudt:symbol "lbm·min/ft⁶" ; + qudt:ucumCode "[lb_av].min.[ft_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per power of foot with the exponent 6" . + +unit:LB-MIN-PER-GAL_UK-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 211414.1608365888873249988977942354066123631764922804954715185821568572950598 ; + qudt:conversionMultiplierSN 2.114141608365888873249988977942354066123631764922804954715185821568572950598E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC888" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC888"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{UK}·ft³)" ; + qudt:ucumCode "[lb_av].min.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (UK) cubic foot" . + +unit:LB-MIN-PER-GAL_UK-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 365323669.9256255972975980953884387548484214195711478664683770656718382929084 ; + qudt:conversionMultiplierSN 3.653236699256255972975980953884387548484214195711478664683770656718382929084E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC887" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC887"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{UK}·in³)" ; + qudt:ucumCode "[lb_av].min.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (UK) cubic inch" . + +unit:LB-MIN-PER-GAL_UK-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 7830.15410505884767870366288126797447507575629313518697066837094894987261972 ; + qudt:conversionMultiplierSN 7.83015410505884767870366288126797447507575629313518697066837094894987261972E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC889" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC889"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{UK}·yd³)" ; + qudt:ucumCode "[lb_av].min.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (UK) cubic yard" . + +unit:LB-MIN-PER-GAL_UK2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per unit for time minute" ; + qudt:conversionMultiplier 1316864.021562727949282563045476101552401236 ; + qudt:conversionMultiplierSN 1.316864021562727949282563045476101552401236E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC886" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC886"^^xsd:anyURI ; + qudt:symbol "lbm·min/gal{UK}²" ; + qudt:ucumCode "[lb_av].min.[gal_br]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per square gallon (UK)" . + +unit:LB-MIN-PER-GAL_US-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 253897.820707372842790121202643087531192266428887160011925631138815078821725 ; + qudt:conversionMultiplierSN 2.53897820707372842790121202643087531192266428887160011925631138815078821725E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC883" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC883"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{US}·ft³)" ; + qudt:ucumCode "[lb_av].min.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (US) cubic foot" . + +unit:LB-MIN-PER-GAL_US-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 438735434.18234027234132943816725522054055902409299111398204019161729399005 ; + qudt:conversionMultiplierSN 4.3873543418234027234132943816725522054055902409299111398204019161729399005E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC882" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC882"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{US}·in³)" ; + qudt:ucumCode "[lb_av].min.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (US) cubic inch" . + +unit:LB-MIN-PER-GAL_US-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 9403.622989161957140374859357151385783662822395051726287737243167459852415 ; + qudt:conversionMultiplierSN 9.403622989161957140374859357151385783662822395051726287737243167459852415E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC884" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC884"^^xsd:anyURI ; + qudt:symbol "lbm·min/(gal{US}·yd³)" ; + qudt:ucumCode "[lb_av].min.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per gallon (US) cubic yard" . + +unit:LB-MIN-PER-GAL_US2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per unit for time minute" ; + qudt:conversionMultiplier 1899287.593862944901910517048343096279303988 ; + qudt:conversionMultiplierSN 1.899287593862944901910517048343096279303988E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC880" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC880"^^xsd:anyURI ; + qudt:symbol "lbm·min/gal{US}²" ; + qudt:ucumCode "[lb_av].min.[gal_us]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per square gallon (US)" . + +unit:LB-MIN-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 58650396.58340312668451799781055322210818305116695489970308139124977199700844 ; + qudt:conversionMultiplierSN 5.865039658340312668451799781055322210818305116695489970308139124977199700844E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC878" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC878"^^xsd:anyURI ; + qudt:symbol "lbm·min/(in³·ft³)" ; + qudt:ucumCode "[lb_av].min.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic inch cubic foot" . + +unit:LB-MIN-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute" ; + qudt:conversionMultiplier 365323669.9256255972975980953884387548484214195711478664683770656718382929084 ; + qudt:conversionMultiplierSN 3.653236699256255972975980953884387548484214195711478664683770656718382929084E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC876" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC876"^^xsd:anyURI ; + qudt:symbol "lbm·min/(in³·gal{UK})" ; + qudt:ucumCode "[lb_av].min.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic inch gallon (UK)" . + +unit:LB-MIN-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute" ; + qudt:conversionMultiplier 438735434.18234027234132943816725522054055902409299111398204019161729399005 ; + qudt:conversionMultiplierSN 4.3873543418234027234132943816725522054055902409299111398204019161729399005E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC875" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC875"^^xsd:anyURI ; + qudt:symbol "lbm·min/(in³·gal{US})" ; + qudt:ucumCode "[lb_av].min.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic inch gallon (US)" . + +unit:LB-MIN-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 2172236.910496412099426592511501970205017575161924390881662140141442029632616 ; + qudt:conversionMultiplierSN 2.172236910496412099426592511501970205017575161924390881662140141442029632616E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC879" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC879"^^xsd:anyURI ; + qudt:symbol "lbm·min/(in³·yd³)" ; + qudt:ucumCode "[lb_av].min.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per cubic inch cubic yard" . + +unit:LB-MIN-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 101347885296.1206029108471002166359667939322 ; + qudt:conversionMultiplierSN 1.013478852961206029108471002166359667939322E11 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC877" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC877"^^xsd:anyURI ; + qudt:symbol "lbm·min/in⁶" ; + qudt:ucumCode "[lb_av].min.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound minute per power of inch with the exponent 6" . + +unit:LB-PER-AC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "mass per area as pounds of mass (based on the international standard definition of the pound of mass as exactly 0.45359237 kg) divided by area as acres (a unit of area in a number of different systems, including the imperial and U.S. customary systems. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres." ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000112085 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:AC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "mass per area as pounds of mass (based on the international standard definition of the pound of mass as exactly 0.45359237 kg) divided by area as acres (a unit of area in a number of different systems, including the imperial and U.S. customary systems. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres." ; + qudt:symbol "lbm/acre" ; + qudt:ucumCode "lb.[acr_br]-1"^^qudt:UCUMcs ; + qudt:ucumCode "lb/[acr_br]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound per acre"@en . + +unit:LB-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000005249912 ; + qudt:conversionMultiplierSN 5.249912E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA673" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA673"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit for time day" ; + qudt:symbol "lbm/d" ; + qudt:ucumCode "[lb_av].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K66" ; + rdfs:isDefinedBy ; + rdfs:label "Pound (avoirdupois) per Day"@en . + +unit:LB-PER-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.8164663 ; + qudt:conversionMultiplierSN 8.164663E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA668" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA668"^^xsd:anyURI ; + qudt:symbol "lbm/°F" ; + qudt:ucumCode "[lb_av].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K64" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per degree Fahrenheit" . + +unit:LB-PER-FT + a qudt:Unit ; + dcterms:description "\"Pound per Foot\" is an Imperial unit for 'Mass Per Length' expressed as $lb/ft$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.4881639435695537 ; + qudt:conversionMultiplierSN 1.4881639435695537E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/ft$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAA670" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA670"^^xsd:anyURI ; + qudt:symbol "lbm/ft" ; + qudt:ucumCode "[lb_av].[ft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P2" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Foot"@en . + +unit:LB-PER-FT-DAY + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity according to the Anglo-American unit system" ; + qudt:conversionMultiplier 0.00001722411971724020608535044230582288 ; + qudt:conversionMultiplierSN 1.722411971724020608535044230582288E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB436" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB436"^^xsd:anyURI ; + qudt:symbol "lbm/(ft·d)" ; + qudt:ucumCode "[lb_av].[ft_i]-1.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N44" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per foot day" . + +unit:LB-PER-FT-HR + a qudt:Unit ; + dcterms:description "\"Pound per Foot Hour\" is an Imperial unit for 'Dynamic Viscosity' expressed as $lb/(ft-h)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0004133788732137649 ; + qudt:conversionMultiplierSN 4.133788732137649E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/(ft-h)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA674" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA674"^^xsd:anyURI ; + qudt:symbol "lbm/(ft·h)" ; + qudt:ucumCode "[lb_av].[ft_i]-1.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K67" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Foot Hour"@en . + +unit:LB-PER-FT-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.33455254830242764924942634066584721521501158056064094672437823938052751208 ; + qudt:conversionMultiplierSN 3.3455254830242764924942634066584721521501158056064094672437823938052751208E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD844" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD844"^^xsd:anyURI ; + qudt:symbol "lbm/(ft·lbf·s)" ; + qudt:ucumCode "[lb_av].[ft_i]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound per foot pound-force second" . + +unit:LB-PER-FT-MIN + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity according to the Anglo-American unit system" ; + qudt:conversionMultiplier 0.02480273239282589676290463692038495 ; + qudt:conversionMultiplierSN 2.480273239282589676290463692038495E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB435" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB435"^^xsd:anyURI ; + qudt:symbol "lbm/(ft·min)" ; + qudt:ucumCode "[lb_av].[ft_i]-1.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N43" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per foot minute" . + +unit:LB-PER-FT-SEC + a qudt:Unit ; + dcterms:description "\"Pound per Foot Second\" is an Imperial unit for 'Dynamic Viscosity' expressed as $lb/(ft-s)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.4881639435695537 ; + qudt:conversionMultiplierSN 1.4881639435695537E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/(ft-s)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA675" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA675"^^xsd:anyURI ; + qudt:symbol "lbm/(ft·s)" ; + qudt:ucumCode "[lb_av].[ft_i]-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K68" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Foot Second"@en . + +unit:LB-PER-FT2 + a qudt:Unit ; + dcterms:description "unit for areal-related mass as a unit pound according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.882428 ; + qudt:conversionMultiplierSN 4.882428E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAB262" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB262"^^xsd:anyURI ; + qudt:plainTextDescription "unit for areal-related mass as a unit pound according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:symbol "lbm/ft²" ; + qudt:ucumCode "[lb_av].[ft_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FP" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass (avoirdupois) per Square Foot"@en . + +unit:LB-PER-FT3 + a qudt:Unit ; + dcterms:description "\"Pound per Cubic Foot\" is an Imperial unit for 'Density' expressed as $lb/ft^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 16.018463373960138 ; + qudt:conversionMultiplierSN 1.6018463373960138E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/ft^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA676" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA676"^^xsd:anyURI ; + qudt:symbol "lbm/ft³" ; + qudt:ucumCode "[lb_av].[cft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "87" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Cubic Foot"@en . + +unit:LB-PER-FT3-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit pound (avoirdupois) for mass according to the avoirdupois system of units divided by the product of the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 28.83323 ; + qudt:conversionMultiplierSN 2.883323E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA677" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA677"^^xsd:anyURI ; + qudt:symbol "lbm/(ft³·°F)" ; + qudt:ucumCode "[lb_av].[ft_i]-3.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K69" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per cubic foot degree Fahrenheit" . + +unit:LB-PER-FT3-PSI + a qudt:Unit ; + dcterms:description "traditional unit pound (avoirdupois) for mass according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.002323281585433525342009905143512828 ; + qudt:conversionMultiplierSN 2.323281585433525342009905143512828E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA678" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA678"^^xsd:anyURI ; + qudt:symbol "lbm/(ft³·psi)" ; + qudt:ucumCode "[lb_av].[ft_i]-3.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K70" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per cubic foot psi" . + +unit:LB-PER-GAL + a qudt:Unit ; + dcterms:description "\"Pound per Gallon\" is an Imperial unit for 'Density' expressed as $lb/gal$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 99.7763727 ; + qudt:conversionMultiplierSN 9.97763727E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:LB-PER-GAL_UK ; + qudt:expression "$lb/gal$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "lb/gal" ; + qudt:ucumCode "[lb_av].[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Gallon"@en . + +unit:LB-PER-GAL_UK + a qudt:Unit ; + dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit gallon (UK) according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 99.7763727 ; + qudt:conversionMultiplierSN 9.97763727E1 ; + qudt:exactMatch unit:LB-PER-GAL ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA679" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA679"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit gallon (UK) according to the Imperial system of units" ; + qudt:symbol "lbm/gal{UK}" ; + qudt:ucumCode "[lb_av].[gal_br]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K71" ; + rdfs:isDefinedBy ; + rdfs:label "Pound (avoirdupois) per Gallon (UK)"@en . + +unit:LB-PER-GAL_US + a qudt:Unit ; + dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system divided by the unit gallon (US, liq.) according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 119.8264273168966285439132558055142 ; + qudt:conversionMultiplierSN 1.198264273168966285439132558055142E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA680" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA680"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system divided by the unit gallon (US, liq.) according to the Anglo-American system of units" ; + qudt:symbol "lbm/gal{US}" ; + qudt:ucumCode "[lb_av].[gal_us]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GE" ; + rdfs:isDefinedBy ; + rdfs:label "Pound (avoirdupois) per Gallon (US)"@en . + +unit:LB-PER-HR + a qudt:Unit ; + dcterms:description "Pound per hour is a mass flow unit. It is abbreviated as PPH or more conventionally as lb/h. Fuel flow for engines is usually expressed using this unit, it is particularly useful when dealing with gases or liquids as volume flow varies more with temperature and pressure. $1 lb/h = 0.4535927 kg/h = 126.00 mg/s$. Minimum fuel intake on a jumbojet can be as low as 150 lb/h when idling, however this is not enough to sustain flight."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00012599788055555556 ; + qudt:conversionMultiplierSN 1.2599788055555556E-4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_per_hour"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$PPH$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA682" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_per_hour?oldid=328571072"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA682"^^xsd:anyURI ; + qudt:symbol "lbm/h" ; + qudt:ucumCode "[lb_av].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4U" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Hour"@en . + +unit:LB-PER-HR-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the unit for time hour and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.000226796184999999981856305200000001530118261466666665215171082666666787624632 ; + qudt:conversionMultiplierSN 2.26796184999999981856305200000001530118261466666665215171082666666787624632E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA683" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA683"^^xsd:anyURI ; + qudt:symbol "lbm/(h·°F)" ; + qudt:ucumCode "[lb_av].h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K73" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per hour degree Fahrenheit" . + +unit:LB-PER-HR-PSI + a qudt:Unit ; + dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the unit for time hour divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.0000000182744467346499108120663380259234724368282387719928649653070420738776779898 ; + qudt:conversionMultiplierSN 1.82744467346499108120663380259234724368282387719928649653070420738776779898E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ThrusterPowerToThrustEfficiency ; + qudt:iec61360Code "0112/2///62720#UAA684" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA684"^^xsd:anyURI ; + qudt:symbol "lbm/(h·psi)" ; + qudt:ucumCode "[lb_av].h-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K74" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per hour psi" . + +unit:LB-PER-IN + a qudt:Unit ; + dcterms:description "\"Pound per Inch\" is an Imperial unit for 'Mass Per Length' expressed as $lb/in$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 17.857967322834646 ; + qudt:conversionMultiplierSN 1.7857967322834646E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB071" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB071"^^xsd:anyURI ; + qudt:symbol "lbm/in" ; + qudt:ucumCode "[lb_av].[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "PO" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Inch"@en . + +unit:LB-PER-IN2 + a qudt:Unit ; + dcterms:description "unit of the areal-related mass as avoirdupois pound according to the avoirdupois system of units related to the area square inch according to the Anglo-American and Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 703.06957963916 ; + qudt:conversionMultiplierSN 7.0306957963916E2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MeanMassRange ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:iec61360Code "0112/2///62720#UAB137" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB137"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the areal-related mass as avoirdupois pound according to the avoirdupois system of units related to the area square inch according to the Anglo-American and Imperial system of units" ; + qudt:symbol "lbm/in²" ; + qudt:ucumCode "[lb_av].[sin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "80" ; + rdfs:isDefinedBy ; + rdfs:label "Pound (avoirdupois) per Square Inch"@en . + +unit:LB-PER-IN3 + a qudt:Unit ; + dcterms:description "\"Pound per Cubic Inch\" is an Imperial unit for 'Density' expressed as $lb/in^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 27679.904710203125 ; + qudt:conversionMultiplierSN 2.7679904710203125E4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/in^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA685" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA685"^^xsd:anyURI ; + qudt:symbol "lbm/in³" ; + qudt:ucumCode "[lb_av].[cin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "LA" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Cubic Inch"@en . + +unit:LB-PER-IN3-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the product of the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 49823.84 ; + qudt:conversionMultiplierSN 4.982384E4 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA686" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA686"^^xsd:anyURI ; + qudt:symbol "lbm/(in³·°F)" ; + qudt:ucumCode "[lb_av].[in_i]-3.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K75" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per cubic inch degree Fahrenheit" . + +unit:LB-PER-IN3-PSI + a qudt:Unit ; + dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the power of the unit inch with the exponent 3 according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 4.014630579629131790993116087990167 ; + qudt:conversionMultiplierSN 4.014630579629131790993116087990167E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA687" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA687"^^xsd:anyURI ; + qudt:symbol "lbm/(in³·psi)" ; + qudt:ucumCode "[lb_av].[in_i]-3.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K76" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per cubic inch psi" . + +unit:LB-PER-LB + a qudt:Unit ; + dcterms:description "proportion of the mass consisting of the avoirdupois pound according to the avoirdupois unit system divided by the avoirdupois pound according to the avoirdupois unit system" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAB388" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB388"^^xsd:anyURI ; + qudt:symbol "lbm/lbm" ; + qudt:ucumCode "[lb_av].[lb_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M91" ; + rdfs:isDefinedBy ; + rdfs:label "pound per pound" . + +unit:LB-PER-M3 + a qudt:Unit ; + dcterms:description "\"Pound per Cubic Meter\" is a unit for 'Density' expressed as $lb/m^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.45359237 ; + qudt:conversionMultiplierSN 4.5359237E-1 ; + qudt:expression "$lb/m^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "lbm/m³" ; + qudt:ucumCode "[lb_av].m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Cubic Meter"@en-US ; + rdfs:label "Pound per Cubic Metre"@en . + +unit:LB-PER-MIN + a qudt:Unit ; + dcterms:description "\"Pound per Minute\" is an Imperial unit for 'Mass Per Time' expressed as $lb/min$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.007559872833333333 ; + qudt:conversionMultiplierSN 7.559872833333333E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA689" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA689"^^xsd:anyURI ; + qudt:symbol "lbm/min" ; + qudt:ucumCode "[lb_av].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K78" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Minute"@en . + +unit:LB-PER-MIN-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the unit for time minute and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.0136077710999999989113783120000000934400282199999997822756624000000181436948 ; + qudt:conversionMultiplierSN 1.36077710999999989113783120000000934400282199999997822756624000000181436948E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA690" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA690"^^xsd:anyURI ; + qudt:symbol "lbm/(min·°F)" ; + qudt:ucumCode "[lb_av].min-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K79" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per minute degree Fahrenheit" . + +unit:LB-PER-MIN-PSI + a qudt:Unit ; + dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units and the unit minute for time divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.00000109646680407899464872398028155540847778571081579892974479605631108165169847 ; + qudt:conversionMultiplierSN 1.09646680407899464872398028155540847778571081579892974479605631108165169847E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:ThrusterPowerToThrustEfficiency ; + qudt:iec61360Code "0112/2///62720#UAA691" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA691"^^xsd:anyURI ; + qudt:symbol "lbm/(min·psi)" ; + qudt:ucumCode "[lb_av].min-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K80" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per minute psi" . + +unit:LB-PER-PSI + a qudt:Unit ; + dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.000065788008244739678923438816893324495509541 ; + qudt:conversionMultiplierSN 6.5788008244739678923438816893324495509541E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA688" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA688"^^xsd:anyURI ; + qudt:symbol "lbm/psi" ; + qudt:ucumCode "[lb_av].[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K77" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per psi" . + +unit:LB-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the SI base unit for time second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.4535924 ; + qudt:conversionMultiplierSN 4.535924E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA692" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA692"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the SI base unit for time second" ; + qudt:symbol "lbm/s" ; + qudt:ucumCode "[lb_av].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K81" ; + rdfs:isDefinedBy ; + rdfs:label "Pound (avoirdupois) per Second"@en . + +unit:LB-PER-SEC-DEG_F + a qudt:Unit ; + dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.8164663 ; + qudt:conversionMultiplierSN 8.164663E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA693" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA693"^^xsd:anyURI ; + qudt:symbol "lbm/(s·°F)" ; + qudt:ucumCode "[lb_av].s-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K82" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per second degree Fahrenheit" . + +unit:LB-PER-SEC-PSI + a qudt:Unit ; + dcterms:description "quotient of the traditional unit avoirdupois pound for mass according the avoirdupois system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.000065788008244739678923438816893324495509541 ; + qudt:conversionMultiplierSN 6.5788008244739678923438816893324495509541E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ThrusterPowerToThrustEfficiency ; + qudt:iec61360Code "0112/2///62720#UAA694" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA694"^^xsd:anyURI ; + qudt:symbol "lbm/(s·psi)" ; + qudt:ucumCode "[lb_av].s-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K83" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per second psi" . + +unit:LB-PER-YD + a qudt:Unit ; + dcterms:description "unit for linear mass according to avoirdupois system of units" ; + qudt:conversionMultiplier 0.496054647856517935258092738407699 ; + qudt:conversionMultiplierSN 4.96054647856517935258092738407699E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMass ; + qudt:iec61360Code "0112/2///62720#UAB245" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB245"^^xsd:anyURI ; + qudt:symbol "lbm/yd" ; + qudt:ucumCode "[lb_av].[yd_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M84" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per yard" . + +unit:LB-PER-YD2 + a qudt:Unit ; + dcterms:description "unit for areal-related mass as a unit pound according to the avoirdupois unit system divided by the power of the unit yard according to the Anglo-American and Imperial system of units with exponent 2" ; + qudt:conversionMultiplier 0.5424919595981167270976517261676497 ; + qudt:conversionMultiplierSN 5.424919595981167270976517261676497E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:BodyMassIndex ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MeanMassRange ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:iec61360Code "0112/2///62720#UAB390" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB390"^^xsd:anyURI ; + qudt:symbol "lbm/yd²" ; + qudt:ucumCode "[lb_av].[yd_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N25" ; + rdfs:isDefinedBy ; + rdfs:label "pound (avoirdupois) per square yard" . + +unit:LB-PER-YD3 + a qudt:Unit ; + dcterms:description "\"Pound per Cubic Yard\" is an Imperial unit for 'Density' expressed as $lb/yd^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5932764212577829 ; + qudt:conversionMultiplierSN 5.932764212577829E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lb/yd^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA695" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA695"^^xsd:anyURI ; + qudt:symbol "lbm/yd³" ; + qudt:ucumCode "[lb_av].[cyd_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K84" ; + rdfs:isDefinedBy ; + rdfs:label "Pound per Cubic Yard"@en . + +unit:LB-SEC-PER-FT3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit SI base unit second" ; + qudt:conversionMultiplier 3523.56934727648145541664829657059011020605294153800825785864303594762158433 ; + qudt:conversionMultiplierSN 3.52356934727648145541664829657059011020605294153800825785864303594762158433E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD804" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD804"^^xsd:anyURI ; + qudt:symbol "lbm·s/(ft³·gal{UK})" ; + qudt:ucumCode "[lb_av].s.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic foot gallon (UK)" . + +unit:LB-SEC-PER-FT3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second" ; + qudt:conversionMultiplier 4231.63034512288071316868671071812551987110714811933353209385231358464702875 ; + qudt:conversionMultiplierSN 4.23163034512288071316868671071812551987110714811933353209385231358464702875E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD803" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD803"^^xsd:anyURI ; + qudt:symbol "lbm·s/(ft³·gal{US})" ; + qudt:ucumCode "[lb_av].s.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic foot gallon (US)" . + +unit:LB-SEC-PER-FT3-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 977506.609723385444741966630175887035136384186115914995051356520829533283474 ; + qudt:conversionMultiplierSN 9.77506609723385444741966630175887035136384186115914995051356520829533283474E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD805" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD805"^^xsd:anyURI ; + qudt:symbol "lbm·s/(ft³·in³)" ; + qudt:ucumCode "[lb_av].s.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic foot cubic inch" . + +unit:LB-SEC-PER-FT3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 20.9513590904360734898398197482828932309580520842126103040871677981710006342 ; + qudt:conversionMultiplierSN 2.09513590904360734898398197482828932309580520842126103040871677981710006342E1 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD807" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD807"^^xsd:anyURI ; + qudt:symbol "lbm·s/(ft³·yd³)" ; + qudt:ucumCode "[lb_av].s.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic foot cubic yard" . + +unit:LB-SEC-PER-FT6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 565.68669544177398422567513320363824140351 ; + qudt:conversionMultiplierSN 5.6568669544177398422567513320363824140351E2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD806" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD806"^^xsd:anyURI ; + qudt:symbol "lbm·s/ft⁶" ; + qudt:ucumCode "[lb_av].s.[ft_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per power of foot with the exponent 6" . + +unit:LB-SEC-PER-GAL_UK-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 3523.56934727648145541664829657059011020605294153800825785864303594762158433 ; + qudt:conversionMultiplierSN 3.52356934727648145541664829657059011020605294153800825785864303594762158433E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD821" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD821"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{UK}·ft³)" ; + qudt:ucumCode "[lb_av].s.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (UK) cubic foot" . + +unit:LB-SEC-PER-GAL_UK-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 6088727.83209375995495996825647397924747369032618579777447295109453063821514 ; + qudt:conversionMultiplierSN 6.08872783209375995495996825647397924747369032618579777447295109453063821514E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD820" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD820"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{UK}·in³)" ; + qudt:ucumCode "[lb_av].s.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (UK) cubic inch" . + +unit:LB-SEC-PER-GAL_UK-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 130.502568417647461311727714687799574584595938218919782844472849149164543662 ; + qudt:conversionMultiplierSN 1.30502568417647461311727714687799574584595938218919782844472849149164543662E2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD822" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD822"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{UK}·yd³)" ; + qudt:ucumCode "[lb_av].s.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (UK) cubic yard" . + +unit:LB-SEC-PER-GAL_UK2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per SI base unit second" ; + qudt:conversionMultiplier 21947.7336927121324880427174246016925400206 ; + qudt:conversionMultiplierSN 2.19477336927121324880427174246016925400206E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD819" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD819"^^xsd:anyURI ; + qudt:symbol "lbm·s/gal{UK}²" ; + qudt:ucumCode "[lb_av].s.[gal_br]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per square gallon (UK)" . + +unit:LB-SEC-PER-GAL_US-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 4231.63034512288071316868671071812551987110714811933353209385231358464702875 ; + qudt:conversionMultiplierSN 4.23163034512288071316868671071812551987110714811933353209385231358464702875E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD816" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD816"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{US}·ft³)" ; + qudt:ucumCode "[lb_av].s.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (US) cubic foot" . + +unit:LB-SEC-PER-GAL_US-IN3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 7312257.2363723378723554906361209203423426504015498518997006698602882331675 ; + qudt:conversionMultiplierSN 7.3122572363723378723554906361209203423426504015498518997006698602882331675E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD815" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD815"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{US}·in³)" ; + qudt:ucumCode "[lb_av].s.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (US) cubic inch" . + +unit:LB-SEC-PER-GAL_US-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 156.72704981936595233958098928585642972771370658419543812895405279099754025 ; + qudt:conversionMultiplierSN 1.5672704981936595233958098928585642972771370658419543812895405279099754025E2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD817" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD817"^^xsd:anyURI ; + qudt:symbol "lbm·s/(gal{US}·yd³)" ; + qudt:ucumCode "[lb_av].s.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per gallon (US) cubic yard" . + +unit:LB-SEC-PER-GAL_US2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per SI base unit second" ; + qudt:conversionMultiplier 31654.7932310490816985086174723849379883998 ; + qudt:conversionMultiplierSN 3.16547932310490816985086174723849379883998E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD813" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD813"^^xsd:anyURI ; + qudt:symbol "lbm·s/gal{US}²" ; + qudt:ucumCode "[lb_av].s.[gal_us]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per square gallon (US)" . + +unit:LB-SEC-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 977506.609723385444741966630175887035136384186115914995051356520829533283474 ; + qudt:conversionMultiplierSN 9.77506609723385444741966630175887035136384186115914995051356520829533283474E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD811" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD811"^^xsd:anyURI ; + qudt:symbol "lbm·s/(in³·ft³)" ; + qudt:ucumCode "[lb_av].s.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic inch cubic foot" . + +unit:LB-SEC-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per SI base unit second" ; + qudt:conversionMultiplier 6088727.83209375995495996825647397924747369032618579777447295109453063821514 ; + qudt:conversionMultiplierSN 6.08872783209375995495996825647397924747369032618579777447295109453063821514E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD809" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD809"^^xsd:anyURI ; + qudt:symbol "lbm·s/(in³·gal{UK})" ; + qudt:ucumCode "[lb_av].s.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic inch gallon (UK)" . + +unit:LB-SEC-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second" ; + qudt:conversionMultiplier 7312257.2363723378723554906361209203423426504015498518997006698602882331675 ; + qudt:conversionMultiplierSN 7.3122572363723378723554906361209203423426504015498518997006698602882331675E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD808" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD808"^^xsd:anyURI ; + qudt:symbol "lbm·s/(in³·gal{US})" ; + qudt:ucumCode "[lb_av].s.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic inch gallon (US)" . + +unit:LB-SEC-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 36203.9485082735349904432085250328367502929193654065146943690023573671605436 ; + qudt:conversionMultiplierSN 3.62039485082735349904432085250328367502929193654065146943690023573671605436E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD812" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD812"^^xsd:anyURI ; + qudt:symbol "lbm·s/(in³·yd³)" ; + qudt:ucumCode "[lb_av].s.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per cubic inch cubic yard" . + +unit:LB-SEC-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1689131421.60201004851411833694393277989887 ; + qudt:conversionMultiplierSN 1.68913142160201004851411833694393277989887E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD810" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD810"^^xsd:anyURI ; + qudt:symbol "lbm·s/in⁶" ; + qudt:ucumCode "[lb_av].s.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "pound second per power of inch with the exponent 6" . + +unit:LB_F + a qudt:Unit ; + dcterms:description "\"Pound Force\" is an Imperial unit for 'Force' expressed as $lbf$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4.448222 ; + qudt:conversionMultiplierSN 4.448222E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pound-force"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA696" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pound-force?oldid=453191483"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA696"^^xsd:anyURI ; + qudt:symbol "lbf" ; + qudt:ucumCode "[lbf_av]"^^qudt:UCUMcs ; + qudt:udunitsCode "lbf" ; + qudt:uneceCommonCode "C78" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force"@en . + +unit:LB_F-FT + a qudt:Unit ; + dcterms:description "\"Pound Force Foot\" is an Imperial unit for 'Torque' expressed as $lbf-ft$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.35581807 ; + qudt:conversionMultiplierSN 1.35581807E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf-ft$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA697" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA697"^^xsd:anyURI ; + qudt:symbol "lbf·ft" ; + qudt:ucumCode "[lbf_av].[ft_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M92" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Foot"@en . + +unit:LB_F-FT-PER-IN + a qudt:Unit ; + dcterms:description "unit for length-related rotational moment according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 53.3786617780937136 ; + qudt:conversionMultiplierSN 5.33786617780937136E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:LinearTorque ; + qudt:iec61360Code "0112/2///62720#UAB292" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB292"^^xsd:anyURI ; + qudt:symbol "lbf·ft/in" ; + qudt:ucumCode "[lbf_av].[ft_i].[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P89" ; + rdfs:isDefinedBy ; + rdfs:label "pound-force foot per inch" . + +unit:LB_F-IN + a qudt:Unit ; + dcterms:description "\"Pound Force Inch\" is an Imperial unit for 'Torque' expressed as $lbf-in$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.112984839 ; + qudt:conversionMultiplierSN 1.12984839E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf-in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA699" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA699"^^xsd:anyURI ; + qudt:symbol "lbf·in" ; + qudt:ucumCode "[lbf_av].[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F21" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Inch"@en . + +unit:LB_F-IN-PER-IN + a qudt:Unit ; + dcterms:description "unit for length-related rotational moment according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 4.4482218148411428 ; + qudt:conversionMultiplierSN 4.4482218148411428E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearTorque ; + qudt:iec61360Code "0112/2///62720#UAB293" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB293"^^xsd:anyURI ; + qudt:symbol "lbf·in/in" ; + qudt:ucumCode "[lbf_av].[in_i].[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P90" ; + rdfs:isDefinedBy ; + rdfs:label "pound-force inch per inch" . + +unit:LB_F-PER-FT + a qudt:Unit ; + dcterms:description "\"Pound Force per Foot\" is an Imperial unit for 'Force Per Length' expressed as $lbf/ft$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 14.5939042 ; + qudt:conversionMultiplierSN 1.45939042E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf/ft$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:symbol "lbf/ft" ; + qudt:ucumCode "[lbf_av].[ft_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Foot"@en . + +unit:LB_F-PER-FT2 + a qudt:Unit ; + dcterms:description "Pounds or Pounds Force per Square Foot is a British (Imperial) and American pressure unit which is directly related to the psi pressure unit by a factor of 144 (1 sq ft = 12 in x 12 in = 144 sq in). 1 Pound per Square Foot equals 47.8803 Pascals. The psf pressure unit is mostly for lower pressure applications such as specifying building structures to withstand a certain wind force or rating a building floor for maximum weight load."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 47.8802631 ; + qudt:conversionMultiplierSN 4.78802631E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA698" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA698"^^xsd:anyURI ; + qudt:symbol "lbf/ft²" ; + qudt:ucumCode "[lbf_av].[sft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K85" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Square Foot"@en . + +unit:LB_F-PER-IN + a qudt:Unit ; + dcterms:description "\"Pound Force per Inch\" is an Imperial unit for 'Force Per Length' expressed as $lbf/in$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 175.12685 ; + qudt:conversionMultiplierSN 1.7512685E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf/in$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA700" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA700"^^xsd:anyURI ; + qudt:symbol "lbf/in" ; + qudt:ucumCode "[lbf_av].[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F48" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Inch"@en . + +unit:LB_F-PER-IN2 + a qudt:Unit ; + dcterms:description "\"Pound Force per Square Inch\" is an Imperial unit for 'Force Per Area' expressed as $psia$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894.75789 ; + qudt:conversionMultiplierSN 6.89475789E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pounds_per_square_inch"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:PSI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA701" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pounds_per_square_inch?oldid=485678341"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA701"^^xsd:anyURI ; + qudt:symbol "lbf/in²" ; + qudt:ucumCode "[lbf_av].[sin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "PS" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Square Inch"@en . + +unit:LB_F-PER-IN2-DEG_F + a qudt:Unit ; + dcterms:description "composed unit for pressure (pound-force per square inch) divided by the unit degree Fahrenheit for temperature"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 12410.56 ; + qudt:conversionMultiplierSN 1.241056E4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAA702" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA702"^^xsd:anyURI ; + qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the unit degree Fahrenheit for temperature" ; + qudt:symbol "lbf/(in²·°F)" ; + qudt:ucumCode "[lbf_av].[sin_i]-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K86" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Square Inch Degree Fahrenheit"@en . + +unit:LB_F-PER-IN2-SEC + a qudt:Unit ; + dcterms:description "\"Pound Force per Square Inch Second\" is a unit for 'Force Per Area Time' expressed as $lbf / in^{2}-s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894.75789 ; + qudt:conversionMultiplierSN 6.89475789E3 ; + qudt:expression "$lbf / in^{2}-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "lbf/(in²·s)" ; + qudt:ucumCode "[lbf_av].[sin_i]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Square Inch Second"@en . + +unit:LB_F-PER-LB + a qudt:Unit ; + dcterms:description "\"Pound Force per Pound\" is an Imperial unit for 'Thrust To Mass Ratio' expressed as $lbf/lb$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 9.80665085 ; + qudt:conversionMultiplierSN 9.80665085E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf/lb$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:ThrustToMassRatio ; + qudt:symbol "lbf/lbm" ; + qudt:ucumCode "[lbf_av].[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force per Pound"@en . + +unit:LB_F-PER-YD + a qudt:Unit ; + dcterms:description "unit of force per unit length based on the Anglo-American system of units" ; + qudt:conversionMultiplier 4.864634530666166666666666666666666 ; + qudt:conversionMultiplierSN 4.864634530666166666666666666666666E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB454" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB454"^^xsd:anyURI ; + qudt:symbol "lbf/yd" ; + qudt:ucumCode "[lbf_av].[yd_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N33" ; + rdfs:isDefinedBy ; + rdfs:label "pound-force per yard" . + +unit:LB_F-SEC-PER-FT2 + a qudt:Unit ; + dcterms:description "\"Pound Force Second per Square Foot\" is an Imperial unit for 'Dynamic Viscosity' expressed as $lbf-s/ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 47.8802631 ; + qudt:conversionMultiplierSN 4.78802631E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf-s/ft^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA707" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA707"^^xsd:anyURI ; + qudt:symbol "lbf·s/ft²" ; + qudt:ucumCode "[lbf_av].s.[sft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K91" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Second per Square Foot"@en . + +unit:LB_F-SEC-PER-IN2 + a qudt:Unit ; + dcterms:description "\"Pound Force Second per Square Inch\" is an Imperial unit for 'Dynamic Viscosity' expressed as $lbf-s/in^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894.75789 ; + qudt:conversionMultiplierSN 6.89475789E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$lbf-s/in^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA708" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA708"^^xsd:anyURI ; + qudt:symbol "lbf·s/in²" ; + qudt:ucumCode "[lbf_av].s.[sin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K92" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Force Second per Square Inch"@en . + +unit:LB_M + a qudt:Unit ; + dcterms:description "A pound of mass, based on the international standard definition of the pound of mass as exactly 0.45359237 kg."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.45359237 ; + qudt:conversionMultiplierSN 4.5359237E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:LB ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "lbm" ; + qudt:ucumCode "[lb_av]"^^qudt:UCUMcs ; + qudt:udunitsCode "lb" ; + qudt:uneceCommonCode "LBR" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mass"@en . + +unit:LB_T + a qudt:Unit ; + dcterms:description "An obsolete unit of mass; the Troy Pound has been defined as exactly 5760 grains, or 0.3732417216 kg. A Troy Ounce is 1/12th of a Troy Pound."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.3732417216 ; + qudt:conversionMultiplierSN 3.732417216E-1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB197" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB197"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "lbt" ; + qudt:ucumCode "[lb_tr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "LBT" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Troy"@en . + +unit:LM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit for measuring the flux of light being produced by a light source or received by a surface. The intensity of a light source is measured in candelas. One lumen represents the total flux of light emitted, equal to the intensity in candelas multiplied by the solid angle in steradians into which the light is emitted. A full sphere has a solid angle of $4\\cdot\\pi$ steradians. A light source that uniformly radiates one candela in all directions has a total luminous flux of $1 cd\\cdot 4 \\pi sr = 4 \\pi cd \\cdot sr \\approx 12.57 \\; \\text{lumens}$. \"Lumen\" is a Latin word for light."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lumen"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CD ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousFlux ; + qudt:iec61360Code "0112/2///62720#UAA718" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA718"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Lumen_(unit)"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:lumen ; + qudt:siUnitsExpression "cd.sr" ; + qudt:symbol "lm" ; + qudt:ucumCode "lm"^^qudt:UCUMcs ; + qudt:udunitsCode "LM" ; + qudt:uneceCommonCode "LUM" ; + rdfs:isDefinedBy ; + rdfs:label "Lumen"@de ; + rdfs:label "lumen"@cs ; + rdfs:label "lumen"@en ; + rdfs:label "lumen"@es ; + rdfs:label "lumen"@fr ; + rdfs:label "lumen"@hu ; + rdfs:label "lumen"@it ; + rdfs:label "lumen"@la ; + rdfs:label "lumen"@ms ; + rdfs:label "lumen"@pl ; + rdfs:label "lumen"@pt ; + rdfs:label "lumen"@ro ; + rdfs:label "lumen"@sl ; + rdfs:label "lümen"@tr ; + rdfs:label "λούμεν"@el ; + rdfs:label "лумен"@bg ; + rdfs:label "лумен"@ru ; + rdfs:label "לומן"@he ; + rdfs:label "لومن"@ar ; + rdfs:label "لومن"@fa ; + rdfs:label "ल्यूमैन"@hi ; + rdfs:label "ルーメン"@ja ; + rdfs:label "流明"@zh . + +unit:LM-HR + a qudt:Unit ; + dcterms:description "product of the SI derived unit lumen and the unit hour" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousEnergy ; + qudt:iec61360Code "0112/2///62720#UAA720" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA720"^^xsd:anyURI ; + qudt:symbol "lm·h" ; + qudt:ucumCode "lm.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B59" ; + rdfs:isDefinedBy ; + rdfs:label "lumen hour" . + +unit:LM-PER-FT2 + a qudt:Unit ; + dcterms:description "SI derived unit lumen divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:conversionMultiplier 10.7639104167097223083335055559 ; + qudt:conversionMultiplierSN 1.07639104167097223083335055559E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAB254" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB254"^^xsd:anyURI ; + qudt:symbol "lm/ft²" ; + qudt:ucumCode "lm.[ft_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P25" ; + rdfs:isDefinedBy ; + rdfs:label "lumen per square foot" . + +unit:LM-PER-M2 + a qudt:Unit ; + dcterms:description "SI derived unit lumen divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAA721" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA721"^^xsd:anyURI ; + qudt:symbol "lm/m²" ; + qudt:ucumCode "lm.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B60" ; + rdfs:isDefinedBy ; + rdfs:label "lumen per square metre" . + +unit:LM-PER-W + a qudt:Unit ; + dcterms:description "A measurement of luminous efficacy, which is the light output in lumens using one watt of electricity."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$lm-per-w$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousEfficacy ; + qudt:iec61360Code "0112/2///62720#UAA719" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA719"^^xsd:anyURI ; + qudt:symbol "lm/W" ; + qudt:ucumCode "lm.W-1"^^qudt:UCUMcs ; + qudt:ucumCode "lm/W"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B61" ; + rdfs:isDefinedBy ; + rdfs:label "Lumen per Watt"@en . + +unit:LM-SEC + a qudt:Unit ; + dcterms:description "In photometry, the lumen second is the SI derived unit of luminous energy. It is based on the lumen, the SI unit of luminous flux, and the second, the SI base unit of time. The lumen second is sometimes called the talbot (symbol T). An older name for the lumen second was the lumberg."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$lm s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousEnergy ; + qudt:iec61360Code "0112/2///62720#UAA722" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA722"^^xsd:anyURI ; + qudt:symbol "lm·s" ; + qudt:ucumCode "lm.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B62" ; + rdfs:isDefinedBy ; + rdfs:label "lumen second"@en ; + skos:altLabel "lumberg" ; + skos:altLabel "talbot" . + +unit:LUX + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit for measuring the illumination (illuminance) of a surface. One lux is defined as an illumination of one lumen per square meter or 0.0001 phot. In considering the various light units, it's useful to think about light originating at a point and shining upon a surface. The intensity of the light source is measured in candelas; the total light flux in transit is measured in lumens (1 lumen = 1 candelau00b7steradian); and the amount of light received per unit of surface area is measured in lux (1 lux = 1 lumen/square meter). One lux is equal to approximately 0.09290 foot candle."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lux"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ; + qudt:iec61360Code "0112/2///62720#UAA723" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lux?oldid=494700274"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA723"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:lux ; + qudt:siUnitsExpression "lm/m^2" ; + qudt:symbol "lx" ; + qudt:ucumCode "lx"^^qudt:UCUMcs ; + qudt:udunitsCode "lx" ; + qudt:uneceCommonCode "LUX" ; + rdfs:isDefinedBy ; + rdfs:label "Lux"@de ; + rdfs:label "luks"@pl ; + rdfs:label "luks"@sl ; + rdfs:label "lux"@cs ; + rdfs:label "lux"@el ; + rdfs:label "lux"@en ; + rdfs:label "lux"@es ; + rdfs:label "lux"@fr ; + rdfs:label "lux"@hu ; + rdfs:label "lux"@it ; + rdfs:label "lux"@ms ; + rdfs:label "lux"@pt ; + rdfs:label "lux"@ro ; + rdfs:label "lüks"@tr ; + rdfs:label "лукс"@bg ; + rdfs:label "люкс"@ru ; + rdfs:label "לוקס"@he ; + rdfs:label "لكس"@ar ; + rdfs:label "لوکس"@fa ; + rdfs:label "लक्स"@hi ; + rdfs:label "ルクス"@ja ; + rdfs:label "勒克斯"@zh . + +unit:LUX-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit for measuring the illumination (illuminance) of a surface. One lux is defined as an illumination of one lumen per square meter or 0.0001 phot. In considering the various light units, it's useful to think about light originating at a point and shining upon a surface. The intensity of the light source is measured in candelas; the total light flux in transit is measured in lumens (1 lumen = 1 candelau00b7steradian); and the amount of light received per unit of surface area is measured in lux (1 lux = 1 lumen/square meter). One lux is equal to approximately 0.09290 foot candle."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lux"^^xsd:anyURI ; + qudt:expression "$lx h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LUX ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousExposure ; + qudt:iec61360Code "0112/2///62720#UAA724" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lux?oldid=494700274"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA724"^^xsd:anyURI ; + qudt:siUnitsExpression "lm-h/m^2" ; + qudt:symbol "lx·h" ; + qudt:ucumCode "lx.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B63" ; + rdfs:isDefinedBy ; + rdfs:label "Lux Hour"@en . + +unit:LUX-SEC + a qudt:Unit ; + dcterms:description "product of the SI derived unit lux and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LUX ; + ] ; + qudt:hasQuantityKind quantitykind:LuminousExposure ; + qudt:iec61360Code "0112/2///62720#UAA725" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA725"^^xsd:anyURI ; + qudt:symbol "lx·s" ; + qudt:ucumCode "lx.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B64" ; + rdfs:isDefinedBy ; + rdfs:label "lux second" . + +unit:LY + a qudt:Unit ; + dcterms:description "A unit of length defining the distance, in meters, that light travels in a vacuum in one year."^^rdf:HTML ; + qudt:conversionMultiplier 9460730472580800.0 ; + qudt:conversionMultiplierSN 9.4607304725808E15 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Light-year"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB069" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Light-year?oldid=495083584"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB069"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M ; + qudt:symbol "ly" ; + qudt:ucumCode "[ly]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B57" ; + rdfs:isDefinedBy ; + rdfs:label "Light Year"@en . + +unit:LunarMass + a qudt:Unit ; + qudt:conversionMultiplier 73460000000000000000000.0 ; + qudt:conversionMultiplierSN 7.346E22 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Moon"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moon?oldid=494566371"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "M☾" ; + rdfs:isDefinedBy ; + rdfs:label "Lunar mass"@en . + +unit:M + a qudt:Unit ; + dcterms:description "The metric and SI base unit of distance. The 17th General Conference on Weights and Measures in 1983 defined the meter as that distance that makes the speed of light in a vacuum equal to exactly 299 792 458 meters per second. The speed of light in a vacuum, $c$, is one of the fundamental constants of nature. The meter is equal to approximately 1.093 613 3 yards, 3.280 840 feet, or 39.370 079 inches."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Metre"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElevationRelativeToNAP ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA726" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Metre?oldid=495145797"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA726"^^xsd:anyURI ; + qudt:omUnit ; + qudt:plainTextDescription "The metric and SI base unit of distance. The meter is equal to approximately 1.093 613 3 yards, 3.280 840 feet, or 39.370 079 inches." ; + qudt:siExactMatch si-unit:metre ; + qudt:symbol "m" ; + qudt:ucumCode "m"^^qudt:UCUMcs ; + qudt:udunitsCode "m" ; + qudt:uneceCommonCode "MTR" ; + rdfs:isDefinedBy ; + rdfs:label "Meter"@de ; + rdfs:label "Meter"@en-US ; + rdfs:label "meter"@ms ; + rdfs:label "meter"@sl ; + rdfs:label "metr"@cs ; + rdfs:label "metr"@pl ; + rdfs:label "metre"@en ; + rdfs:label "metre"@tr ; + rdfs:label "metro"@es ; + rdfs:label "metro"@it ; + rdfs:label "metro"@pt ; + rdfs:label "metru"@ro ; + rdfs:label "metrum"@la ; + rdfs:label "mètre"@fr ; + rdfs:label "méter"@hu ; + rdfs:label "μέτρο"@el ; + rdfs:label "метр"@ru ; + rdfs:label "метър"@bg ; + rdfs:label "מטר"@he ; + rdfs:label "متر"@ar ; + rdfs:label "متر"@fa ; + rdfs:label "मीटर"@hi ; + rdfs:label "メートル"@ja ; + rdfs:label "米"@zh . + +unit:M-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Meter Kelvin}$ is a unit for 'Length Temperature' expressed as $m K$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:LengthTemperature ; + qudt:iec61360Code "0112/2///62720#UAB170" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB170"^^xsd:anyURI ; + qudt:symbol "m·K" ; + qudt:ucumCode "m.K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D18" ; + rdfs:isDefinedBy ; + rdfs:label "Meter Kelvin"@en-US ; + rdfs:label "Meter mal Kelvin"@de ; + rdfs:label "meter kelvin"@ms ; + rdfs:label "metre kelvin"@en ; + rdfs:label "metro per kelvin"@it ; + rdfs:label "متر کلوین"@fa ; + rdfs:label "米开尔文"@zh . + +unit:M-K-PER-W + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Meter Kelvin per Watt}$ is a unit for 'Thermal Resistivity' expressed as $K-m/W$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$K-m/W$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalResistivity ; + qudt:symbol "m·K/W" ; + qudt:ucumCode "m.K.W-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H35" ; + rdfs:isDefinedBy ; + rdfs:label "Meter Kelvin per Watt"@en-US ; + rdfs:label "Metre Kelvin per Watt"@en . + +unit:M-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "product of SI base units metre and kilogram given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m-kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMass ; + qudt:iec61360Code "0112/2///62720#UAD674" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD674"^^xsd:anyURI ; + qudt:symbol "m·kg" ; + qudt:ucumCode "m.kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Meter Kilogram"@en-US ; + rdfs:label "Metre Kilogram"@en . + +unit:M-PA-PER-SEC + a qudt:Unit ; + dcterms:description "product of the SI base unit metre and the SI derived unit pascal divided by the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAD914" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD914"^^xsd:anyURI ; + qudt:symbol "m·Pa/s" ; + qudt:ucumCode "m.Pa.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "metre pascal per second" . + +unit:M-PER-BAR + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA731" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA731"^^xsd:anyURI ; + qudt:symbol "m/bar" ; + qudt:ucumCode "m.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G05" ; + rdfs:isDefinedBy ; + rdfs:label "metre per bar" . + +unit:M-PER-DAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Meter Per Day (m/day) is a unit in the category of Velocity. It is also known as meter/day, meters per day, metre per day, metres per day. Meter Per Day (m/day) has a dimension of L*T-1 where L is length, and T is time. It can be converted to the corresponding standard SI unit m/s by multiplying its value by a factor of 0.00001157407407407407"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001157407407407407 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "\\(m/day\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "m/d" ; + qudt:ucumCode "m.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "m/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Day"@en-US ; + rdfs:label "Metre per Day"@en . + +unit:M-PER-DEG_C-M + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the product of the unit degree Celsius and the SI base unit metre" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB461" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB461"^^xsd:anyURI ; + qudt:symbol "m/(°C·m)" ; + qudt:ucumCode "m.Cel-1.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N83" ; + rdfs:isDefinedBy ; + rdfs:label "metre per degree Celcius metre" . + +unit:M-PER-FARAD + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m-per-f$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FARAD ; + ] ; + qudt:hasQuantityKind quantitykind:InversePermittivity ; + qudt:symbol "m/F" ; + qudt:ucumCode "m.F-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Farad"@en-US ; + rdfs:label "Metre per Farad"@en . + +unit:M-PER-HA + a qudt:Unit ; + dcterms:description "A rate of change of SI standard unit length per hectare (squared hectometer) area."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:symbol "m/ha" ; + qudt:ucumCode "m.hm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Metres per hectare"@en . + +unit:M-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Metre per hour is a metric unit of both speed (scalar) and velocity (Vector (geometry)). Its symbol is m/h or mu00b7h-1 (not to be confused with the imperial unit symbol mph. By definition, an object travelling at a speed of 1 m/h for an hour would move 1 metre."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277777778 ; + qudt:conversionMultiplierSN 2.77777778E-4 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$m/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB328" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB328"^^xsd:anyURI ; + qudt:symbol "m/h" ; + qudt:ucumCode "m.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "m/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M60" ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Hour"@en-US ; + rdfs:label "Metre per Hour"@en . + +unit:M-PER-K + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m-per-k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA728" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA728"^^xsd:anyURI ; + qudt:symbol "m/K" ; + qudt:ucumCode "m/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F52" ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Kelvin"@en-US ; + rdfs:label "Metre per Kelvin"@en . + +unit:M-PER-M2 + a qudt:Unit ; + dcterms:description "A rate of change of SI standard unit length per squared meter area."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:symbol "m/m²" ; + qudt:ucumCode "m.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Meters per square meter"@en-US ; + rdfs:label "Metres per square metre"@en . + +unit:M-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Meter Per Minute (m/min) is a unit in the category of Velocity. It is also known as meter/minute, meters per minute, metre per minute, metres per minute. Meter Per Minute (m/min) has a dimension of LT-1 where $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit m/s by multiplying its value by a factor of 0.016666666666"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0166666667 ; + qudt:conversionMultiplierSN 1.66666667E-2 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$m/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA732" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA732"^^xsd:anyURI ; + qudt:symbol "m/min" ; + qudt:ucumCode "m.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "m/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2X" ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Minute"@en-US ; + rdfs:label "Metre per Minute"@en . + +unit:M-PER-PA + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB315" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB315"^^xsd:anyURI ; + qudt:symbol "m/Pa" ; + qudt:ucumCode "m.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M53" ; + rdfs:isDefinedBy ; + rdfs:label "metre per pascal" . + +unit:M-PER-RAD + a qudt:Unit ; + dcterms:description "unit of the translation factor for implementation from rotation to linear move according" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:Rotary-TranslatoryMotionConversion ; + qudt:iec61360Code "0112/2///62720#UAB482" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB482"^^xsd:anyURI ; + qudt:symbol "m/rad" ; + qudt:ucumCode "m.rad-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M55" ; + rdfs:isDefinedBy ; + rdfs:label "metre per radian" . + +unit:M-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """Metre per second is an SI derived unit of both speed (scalar) and velocity (vector quantity which specifies both magnitude and a specific direction), defined by distance in metres divided by time in seconds. +The official SI symbolic abbreviation is mu00b7s-1, or equivalently either m/s."""^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA733" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA733"^^xsd:anyURI ; + qudt:symbol "m/s" ; + qudt:ucumCode "m.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "m/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MTS" ; + rdfs:isDefinedBy ; + rdfs:label "Meter je Sekunde"@de ; + rdfs:label "Meter per Second"@en-US ; + rdfs:label "meter na sekundo"@sl ; + rdfs:label "meter per saat"@ms ; + rdfs:label "metr na sekundę"@pl ; + rdfs:label "metr za sekundu"@cs ; + rdfs:label "metra per secundum"@la ; + rdfs:label "metre bölü saniye"@tr ; + rdfs:label "metre per second"@en ; + rdfs:label "metro al secondo"@it ; + rdfs:label "metro por segundo"@es ; + rdfs:label "metro por segundo"@pt ; + rdfs:label "metru pe secundă"@ro ; + rdfs:label "mètre par seconde"@fr ; + rdfs:label "μέτρο ανά δευτερόλεπτο"@el ; + rdfs:label "метр в секунду"@ru ; + rdfs:label "метър в секунда"@bg ; + rdfs:label "מטרים לשנייה"@he ; + rdfs:label "متر بر ثانیه"@fa ; + rdfs:label "متر في الثانية"@ar ; + rdfs:label "मीटर प्रति सैकिण्ड"@hi ; + rdfs:label "メートル毎秒"@ja ; + rdfs:label "米每秒"@zh . + +unit:M-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "SI base unit meter divided by the product of SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB313" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB313"^^xsd:anyURI ; + qudt:symbol "m/(s·bar)" ; + qudt:ucumCode "m.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L13" ; + rdfs:isDefinedBy ; + rdfs:label "metre per second bar" . + +unit:M-PER-SEC-K + a qudt:Unit ; + dcterms:description "SI base units metre divided by the product of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC009" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC009"^^xsd:anyURI ; + qudt:symbol "m/(s·K)" ; + qudt:ucumCode "m.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L12" ; + rdfs:isDefinedBy ; + rdfs:label "metre per second kelvin" . + +unit:M-PER-SEC-PA + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the product of the SI base unit second and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA734" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA734"^^xsd:anyURI ; + qudt:symbol "m/(s·Pa)" ; + qudt:ucumCode "m.s-1.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M59" ; + rdfs:isDefinedBy ; + rdfs:label "metre per second pascal" . + +unit:M-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The $\\textit{meter per Square second}$ is the unit of acceleration in the International System of Units (SI). As a derived unit it is composed from the SI base units of length, the metre, and the standard unit of time, the second. Its symbol is written in several forms as $m/s^2$, or $m s^{-2}$. As acceleration, the unit is interpreted physically as change in velocity or speed per time interval, that is, $\\textit{metre per second per second}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m/s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAA736" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA736"^^xsd:anyURI ; + qudt:symbol "m/s²" ; + qudt:ucumCode "m.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "m/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MSK" ; + rdfs:isDefinedBy ; + rdfs:label "Meter per Square Second"@en-US ; + rdfs:label "Metre per Square Second"@en . + +unit:M-PER-V-SEC + a qudt:Unit ; + dcterms:description "SI base unit metre divided by the product of the SI derived unit volt and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticReluctivity ; + qudt:iec61360Code "0112/2///62720#UAD917" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD917"^^xsd:anyURI ; + qudt:symbol "m/(V·s)" ; + qudt:ucumCode "m.V-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H58" ; + rdfs:isDefinedBy ; + rdfs:label "metre per volt second" . + +unit:M-PER-YR + a qudt:Unit ; + dcterms:description "A rate of change of SI standard unit length over a period of an average calendar year (365.25 days)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000316880878140289 ; + qudt:conversionMultiplierSN 3.16880878140289E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "m/a" ; + qudt:ucumCode "m.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Metre per year"@en . + +unit:M-SEC + a qudt:Unit ; + dcterms:description "product of SI base units metre and second to the power of minus one given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD686" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD686"^^xsd:anyURI ; + qudt:symbol "m·s" ; + qudt:ucumCode "m.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "metre second" . + +unit:M-SEC2 + a qudt:Unit ; + dcterms:description "product of SI base units metre and second to the power of two given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD683" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD683"^^xsd:anyURI ; + qudt:symbol "m·s²" ; + qudt:ucumCode "m.s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "metre second squared" . + +unit:M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The S I unit of area is the square metre."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Square_metre"^^xsd:anyURI ; + qudt:expression "$sq-m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:hasQuantityKind quantitykind:NuclearQuadrupoleMoment ; + qudt:iec61360Code "0112/2///62720#UAA744" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Square_metre?oldid=490945508"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA744"^^xsd:anyURI ; + qudt:symbol "m²" ; + qudt:ucumCode "m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MTK" ; + rdfs:isDefinedBy ; + rdfs:label "Quadratmeter"@de ; + rdfs:label "Square Meter"@en-US ; + rdfs:label "kvadratni meter"@sl ; + rdfs:label "meter persegi"@ms ; + rdfs:label "metr kwadratowy"@pl ; + rdfs:label "metrekare"@tr ; + rdfs:label "metro cuadrado"@es ; + rdfs:label "metro quadrado"@pt ; + rdfs:label "metro quadrato"@it ; + rdfs:label "metru pătrat"@ro ; + rdfs:label "metrum quadratum"@la ; + rdfs:label "mètre carré"@fr ; + rdfs:label "négyzetméter"@hu ; + rdfs:label "square metre"@en ; + rdfs:label "čtvereční metr"@cs ; + rdfs:label "τετραγωνικό μέτρο"@el ; + rdfs:label "квадратен метър"@bg ; + rdfs:label "квадратный метр"@ru ; + rdfs:label "מטר רבוע"@he ; + rdfs:label "متر مربع"@ar ; + rdfs:label "متر مربع"@fa ; + rdfs:label "वर्ग मीटर"@hi ; + rdfs:label "平方メートル"@ja ; + rdfs:label "平方米"@zh . + +unit:M2-HR-DEG_C-PER-KiloCAL_IT + a qudt:Unit ; + dcterms:description "product of the power of the SI base unit metre with the exponent 2, of the unit hour for time and the unit degree Celsius for temperature divided by the 1000-fold of the out of use unit for energy international calorie"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.859845 ; + qudt:conversionMultiplierSN 8.59845E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloCAL_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:iec61360Code "0112/2///62720#UAA749" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA749"^^xsd:anyURI ; + qudt:plainTextDescription "product of the power of the SI base unit metre with the exponent 2, of the unit hour for time and the unit degree Celsius for temperature divided by the 1000-fold of the out of use unit for energy international calorie" ; + qudt:symbol "m²·h·°C/kcal{IT}" ; + qudt:ucumCode "m2.h.Cel/kcal_IT"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L14" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter Hour Degree Celsius per Kilocalorie (international Table)"@en-US ; + rdfs:label "Square Metre Hour Degree Celsius per Kilocalorie (international Table)"@en . + +unit:M2-HZ + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:symbol "m²·Hz" ; + qudt:ucumCode "m2.Hz"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres Hertz"@en . + +unit:M2-HZ2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²·Hz²" ; + qudt:ucumCode "m2.Hz2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Metres square Hertz"@en . + +unit:M2-HZ3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²·Hz³" ; + qudt:ucumCode "m2.Hz3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres cubic Hertz"@en . + +unit:M2-HZ4 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²·Hz⁴" ; + qudt:ucumCode "m2.Hz4"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres Hertz^4"@en . + +unit:M2-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Meter Kelvin}$ is a unit for 'Area Temperature' expressed as $m^{2}-K$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{2}-K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTemperature ; + qudt:symbol "m²·K" ; + qudt:ucumCode "m2.K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter Kelvin"@en-US ; + rdfs:label "Square Metre Kelvin"@en . + +unit:M2-K-PER-W + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Square Meter Kelvin per Watt}$ is a unit for 'Thermal Insulance' expressed as $(K^{2})m/W$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$(K^{2})m/W$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H1T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalInsulance ; + qudt:iec61360Code "0112/2///62720#UAA746" ; + qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA746"^^xsd:anyURI ; + qudt:symbol "m²·K/W" ; + qudt:ucumCode "m2.K.W-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D19" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter Kelvin per Watt"@en-US ; + rdfs:label "Square Metre Kelvin per Watt"@en . + +unit:M2-PER-GM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificSurfaceArea ; + qudt:symbol "m²/g" ; + qudt:ucumCode "m2.g-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres per gram"@en . + +unit:M2-PER-GM_DRY + a qudt:ContextualUnit, qudt:Unit ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM_DRY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ; + qudt:symbol "m²/g{dry sediment}" ; + qudt:ucumCode "m2.g-1{dry}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres per gram of dry sediment"@en ; + skos:broader unit:M2-PER-GM . + +unit:M2-PER-HA + a qudt:Unit ; + dcterms:description "Square metres per hectare."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaRatio ; + qudt:plainTextDescription "Square metres per hectare." ; + qudt:symbol "m²/ha" ; + qudt:ucumCode "m2.har-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "square meters per hectare"@en-US ; + rdfs:label "square metres per hectare"@en . + +unit:M2-PER-HA-YR + a qudt:Unit ; + qudt:conversionMultiplier 0.000000000003168808781402895 ; + qudt:conversionMultiplierSN 3.168808781402895e-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 2 divided by the unit hectare and by the unit year" ; + qudt:symbol "m²/(ha·a)" ; + qudt:ucumCode "m2.har-1.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Hectare Year"@en-US ; + rdfs:label "Square Metre per Hectare Year"@en . + +unit:M2-PER-HZ + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²/Hz" ; + qudt:ucumCode "m2.Hz-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres per Hertz"@en . + +unit:M2-PER-HZ-DEG + a qudt:Unit ; + qudt:conversionMultiplier 57.2957795130823 ; + qudt:conversionMultiplierSN 5.72957795130823E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²/(Hz·°)" ; + qudt:ucumCode "m2.Hz-1.deg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres per Hertz degree"@en . + +unit:M2-PER-HZ2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:HZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²/Hz²" ; + qudt:ucumCode "m2.Hz-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metres per square Hertz"@en . + +unit:M2-PER-J + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:expression "$m^2/j$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralCrossSection ; + qudt:iec61360Code "0112/2///62720#UAA745" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA745"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/J" ; + qudt:ucumCode "m2.J-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D20" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Joule"@en-US ; + rdfs:label "Square Metre per Joule"@en . + +unit:M2-PER-K + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m2-per-k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaThermalExpansion ; + qudt:symbol "m²/K" ; + qudt:ucumCode "m2.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Kelvin"@en-US ; + rdfs:label "Square Metre per Kelvin"@en . + +unit:M2-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + Square Meter Per Kilogram (m2/kg) is a unit in the category of Specific Area. + It is also known as square meters per kilogram, square metre per kilogram, square metres per kilogram, + square meter/kilogram, square metre/kilogram. + This unit is commonly used in the SI unit system. + Square Meter Per Kilogram (m2/kg) has a dimension of M-1L2 where $M$ is mass, and $L$ is length. + This unit is the standard SI unit in this category. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^2/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:MassEnergyTransferCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificSurfaceArea ; + qudt:iec61360Code "0112/2///62720#UAA750" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA750"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/kg" ; + qudt:ucumCode "m2.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D21" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Kilogram"@en-US ; + rdfs:label "Square Metre per Kilogram"@en . + +unit:M2-PER-KiloW + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloW ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerPower ; + qudt:plainTextDescription "A common unit for measuring area per power" ; + qudt:symbol "m²/kW" ; + qudt:ucumCode "m2.kW-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "square metre per Kilowatt"@en . + +unit:M2-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerLength ; + qudt:plainTextDescription "square metre divided by metre: plain text description in English" ; + qudt:symbol "m²/m" ; + qudt:ucumCode "m2.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Quadratmeter je Meter"@de ; + rdfs:label "kvadratni meter na meter"@sl ; + rdfs:label "meter persegi per meter"@ms ; + rdfs:label "metr kwadratowy na metr"@pl ; + rdfs:label "metrekare per metre"@tr ; + rdfs:label "metro cuadrado pormetro"@es ; + rdfs:label "metro quadrado por metro"@pt ; + rdfs:label "metro quadrato al metro"@it ; + rdfs:label "metru pătrat pe metru"@ro ; + rdfs:label "mètre carré par mètre"@fr ; + rdfs:label "square metre per metre"@en ; + rdfs:label "čtvereční metr na metr"@cs ; + rdfs:label "квадратный метр на метр"@ru . + +unit:M2-PER-M2 + a qudt:Unit ; + dcterms:description "A square metre unit of area per square metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaRatio ; + qudt:plainTextDescription "A square metre unit of area per square metre" ; + qudt:qkdvDenominator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L2I0M0H0T0D0 ; + qudt:symbol "m²/m²" ; + qudt:ucumCode "m2.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "square meter per square meter"@en-US ; + rdfs:label "square metre per square metre"@en . + +unit:M2-PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Square Meter Per Mole (m2/mol) is a unit in the category of Specific Area. It is also known as square meters per mole, square metre per per, square metres per per, square meter/per, square metre/per. This unit is commonly used in the SI unit system. Square Meter Per Mole (m2/mol) has a dimension of M-1L2 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^2/mol$"^^qudt:LatexString ; + qudt:expression "$m^{2}/mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:MolarAttenuationCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA751" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA751"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/mol" ; + qudt:ucumCode "m2.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "m2/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D22" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Mole"@en-US ; + rdfs:label "Square Metre per Mole"@en . + +unit:M2-PER-N + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 2 divided by the derived SI unit newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:iec61360Code "0112/2///62720#UAB492" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB492"^^xsd:anyURI ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 2 divided by the derived SI unit newton" ; + qudt:symbol "m²/N" ; + qudt:ucumCode "m2.N-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H59" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Newton"@en-US ; + rdfs:label "Square Metre per Newton"@en . + +unit:M2-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Square Metres per Second}$ is the SI derived unit of angular momentum, defined by distance + or displacement in metres multiplied by distance again in metres and divided by time in seconds. + The unit is written in symbols as $m^2/s$ or $m^22s^{-1}$. + It may be better understood when phrased as $\\textit{metres per second times metres}$, i.e. the momentum + of an object with respect to a position. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{2} s^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:hasQuantityKind quantitykind:DiffusionCoefficient ; + qudt:hasQuantityKind quantitykind:NeutronDiffusionCoefficient ; + qudt:hasQuantityKind quantitykind:ThermalDiffusionRatioCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA752" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA752"^^xsd:anyURI ; + qudt:symbol "m²/s" ; + qudt:ucumCode "m2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "m2/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "S4" ; + rdfs:isDefinedBy ; + rdfs:label "Quadratmeter je Sekunde"@de ; + rdfs:label "Square Meter per Second"@en-US ; + rdfs:label "kvadratni meter na sekundo"@sl ; + rdfs:label "meter persegi per saat"@ms ; + rdfs:label "metr kwadratowy na sekundę"@pl ; + rdfs:label "metrekare bölü saniye"@tr ; + rdfs:label "metro cuadrado por segundo"@es ; + rdfs:label "metro quadrado por segundo"@pt ; + rdfs:label "metro quadrato al secondo"@it ; + rdfs:label "metru pătrat pe secundă"@ro ; + rdfs:label "mètre carré par seconde"@fr ; + rdfs:label "square metre per second"@en ; + rdfs:label "čtvereční metr za sekundu"@cs ; + rdfs:label "квадратный метр в секунду"@ru ; + rdfs:label "متر مربع بر ثانیه"@fa ; + rdfs:label "متر مربع في الثانية"@ar ; + rdfs:label "वर्ग मीटर प्रति सैकिण्ड"@hi ; + rdfs:label "平方メートル毎秒"@ja ; + rdfs:label "平方米每秒"@zh . + +unit:M2-PER-SEC-BAR + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Square Metre per Second Bar}$ typically refers to a measure of fluid permeability in the + context of materials science or engineering. + It is the volume of fluid (in square metres) that can pass through a material in one second under a pressure difference of one bar. + This unit is particularly important in fields such as petrophysics, hydrogeology, and materials engineering, + where understanding the flow of fluids through porous media is crucial. + A $Bar$ is not an SI unit but is a unit of pressure that is widely used in various scientific and engineering contexts. + A bar is equal to $100,000\\ pascals$, (symbol $Pa$), approximately equal to the atmospheric pressure on Earth at sea level. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB493" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB493"^^xsd:anyURI ; + qudt:symbol "m²/(s·bar)" ; + qudt:ucumCode "m2.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G41" ; + rdfs:isDefinedBy ; + rdfs:label "square metre per second bar" . + +unit:M2-PER-SEC-K + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Square Metre per Second Kelvin}$ is a heat transfer coefficient that is area-dependent + and varies with time and temperature difference. + Heat transfer is typically defined in terms of watts per square meter per kelvin ($W/m^{2}K$), + representing the rate of heat transfer across a surface per unit area per unit temperature difference. + """^^qudt:LatexString ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA753" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA753"^^xsd:anyURI ; + qudt:symbol "m²/(s·K)" ; + qudt:ucumCode "m2.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G09" ; + rdfs:isDefinedBy ; + rdfs:label "square metre per second kelvin" . + +unit:M2-PER-SEC-PA + a qudt:Unit ; + dcterms:description """ + The unit $\\textit{Square Metre per Second Pascal}$, symbol $m^{2}/s\\cdot Pa$, is a measure of permeability, which describes the ability + of a material to allow fluids to pass through it under a pressure gradient. + It's particularly relevant in fields like hydrogeology, petroleum engineering, and civil engineering, + where understanding fluid flow through porous materials is essential. + """^^qudt:LatexString ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB460" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB460"^^xsd:anyURI ; + qudt:symbol "m²/(s·Pa)" ; + qudt:ucumCode "m2.s-1.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M82" ; + rdfs:isDefinedBy ; + rdfs:label "square metre per second pascal" . + +unit:M2-PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificModulus ; + qudt:iec61360Code "0112/2///62720#UAD501" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD501"^^xsd:anyURI ; + qudt:symbol "m²/s²" ; + qudt:ucumCode "m2.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "m2/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Meters per Square Second"@en-US ; + rdfs:label "Square metres per square second"@en . + +unit:M2-PER-SEC2-K + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ; + qudt:plainTextDescription "Unit for expressing the specific heat capacity." ; + qudt:symbol "m²/(s²·K)" ; + qudt:ucumCode "m2.s2-1.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "square metre per square second kelvin"@en . + +unit:M2-PER-SR + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:expression "$m^2/sr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AngularCrossSection ; + qudt:iec61360Code "0112/2///62720#UAA755" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Steradian?oldid=494317847"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA755"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/sr" ; + qudt:ucumCode "m2.sr-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D24" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Steradian"@en-US ; + rdfs:label "Square Metre per Steradian"@en . + +unit:M2-PER-SR-J + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:expression "$m^2/sr-j$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralAngularCrossSection ; + qudt:iec61360Code "0112/2///62720#UAA756" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA756"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/(sr·J)" ; + qudt:ucumCode "m2.sr-1.J-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D25" ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter per Steradian Joule"@en-US ; + rdfs:label "Square Metre per Steradian Joule"@en . + +unit:M2-PER-V-SEC + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^2/v-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Mobility ; + qudt:iec61360Code "0112/2///62720#UAA748" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA748"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "m²/(V·s)" ; + qudt:ucumCode "m2.V-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D26" ; + rdfs:isDefinedBy ; + rdfs:label "Quadratmeter je Volt und Sekunde"@de ; + rdfs:label "Square Meter per Volt Second"@en-US ; + rdfs:label "metro quadrato al volt e al secondo"@it ; + rdfs:label "square metre per volt second"@en . + +unit:M2-PER-W + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerPower ; + qudt:plainTextDescription "A common unit for measuring area per power" ; + qudt:symbol "m²/W" ; + qudt:ucumCode "m2.W-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Quadratmeter je Watt"@de ; + rdfs:label "kvadratni meter na watt"@sl ; + rdfs:label "meter persegi per watt"@ms ; + rdfs:label "metr kwadratowy na wat"@pl ; + rdfs:label "metrekare per watt"@tr ; + rdfs:label "metro cuadrado porvatio"@es ; + rdfs:label "metro quadrado por watt"@pt ; + rdfs:label "metro quadrato al watt"@it ; + rdfs:label "metru pătrat pe watt"@ro ; + rdfs:label "mètre carré par watt"@fr ; + rdfs:label "square metre per watt"@en ; + rdfs:label "čtvereční metr na watt"@cs ; + rdfs:label "квадратный метр на ватт"@ru . + +unit:M2-SEC-PER-RAD + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m²·s/rad" ; + qudt:ucumCode "m2.s.rad-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square metre seconds per radian"@en . + +unit:M2-SR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Square Meter Steradian\" is a unit for 'Area Angle' expressed as $m^{2}-sr$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{2}-sr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaAngle ; + qudt:symbol "m²·sr" ; + qudt:ucumCode "m2.sr"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Meter Steradian"@en-US ; + rdfs:label "Square Metre Steradian"@en . + +unit:M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of volume, equal to 1.0e6 cm3, 1000 liters, 35.3147 ft3, or 1.30795 yd3. A cubic meter holds about 264.17 U.S. liquid gallons or 219.99 British Imperial gallons."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cubic_metre"^^xsd:anyURI ; + qudt:expression "$m^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SectionModulus ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA757" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cubic_metre?oldid=490956678"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA757"^^xsd:anyURI ; + qudt:symbol "m³" ; + qudt:ucumCode "m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MTQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter"@en-US ; + rdfs:label "Kubikmeter"@de ; + rdfs:label "cubic metre"@en ; + rdfs:label "kubični meter"@sl ; + rdfs:label "meter kubik"@ms ; + rdfs:label "metr krychlový"@cs ; + rdfs:label "metr sześcienny"@pl ; + rdfs:label "metreküp"@tr ; + rdfs:label "metro cubo"@it ; + rdfs:label "metro cúbico"@es ; + rdfs:label "metro cúbico"@pt ; + rdfs:label "metru cub"@ro ; + rdfs:label "metrum cubicum"@la ; + rdfs:label "mètre cube"@fr ; + rdfs:label "κυβικό μετρο"@el ; + rdfs:label "кубичен метър"@bg ; + rdfs:label "кубический метр"@ru ; + rdfs:label "מטר מעוקב"@he ; + rdfs:label "متر مكعب"@ar ; + rdfs:label "متر مکعب"@fa ; + rdfs:label "घन मीटर"@hi ; + rdfs:label "立方メートル"@ja ; + rdfs:label "立方米"@zh . + +unit:M3-PER-BAR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA759" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA759"^^xsd:anyURI ; + qudt:symbol "m³/bar" ; + qudt:ucumCode "m3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G96" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per bar" . + +unit:M3-PER-C + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^3/c$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:HallCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB143" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB143"^^xsd:anyURI ; + qudt:symbol "m³/C" ; + qudt:ucumCode "m3.C-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A38" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Coulomb"@en-US ; + rdfs:label "Cubic Metre per Coulomb"@en . + +unit:M3-PER-DAY + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001157407 ; + qudt:conversionMultiplierSN 1.157407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA760" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA760"^^xsd:anyURI ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit day" ; + qudt:symbol "m³/d" ; + qudt:ucumCode "m3.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G52" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Day"@en-US ; + rdfs:label "Cubic Metre per Day"@en . + +unit:M3-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-10 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA762" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA762"^^xsd:anyURI ; + qudt:symbol "m³/(d·bar)" ; + qudt:ucumCode "m3.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G86" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per day bar" . + +unit:M3-PER-DAY-K + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA761" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA761"^^xsd:anyURI ; + qudt:symbol "m³/(d·K)" ; + qudt:ucumCode "m3.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G69" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per day kelvin" . + +unit:M3-PER-HA + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasQuantityKind quantitykind:VolumePerArea ; + qudt:symbol "m³/ha" ; + qudt:ucumCode "m3.har-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Hectare"@en-US ; + rdfs:label "Cubic Metre per Hectare"@en . + +unit:M3-PER-HA-YR + a qudt:Unit ; + qudt:conversionMultiplier 0.000000000003168808781402895 ; + qudt:conversionMultiplierSN 3.168808781402895e-12 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:SurfaceRelatedVolumeFlow ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit hectare and by the unit year" ; + qudt:symbol "m³/(ha·a)" ; + qudt:ucumCode "m3.har-1.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Hectare Year"@en-US ; + rdfs:label "Cubic Metre per Hectare Year"@en . + +unit:M3-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Cubic Meter Per Hour (m3/h) is a unit in the category of Volume flow rate. It is also known as cubic meters per hour, cubic metre per hour, cubic metres per hour, cubic meter/hour, cubic metre/hour, cubic meter/h, cubic metre/h, flowrate. Cubic Meter Per Hour (m3/h) has a dimension of L3T-1 where $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit m3/s by multiplying its value by a factor of 0.00027777777."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777778E-4 ; + qudt:expression "$m^{3}/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA763" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA763"^^xsd:anyURI ; + qudt:symbol "m³/h" ; + qudt:ucumCode "m3.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "m3/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MQH" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Hour"@en-US ; + rdfs:label "Cubic Metre per Hour"@en . + +unit:M3-PER-HR-BAR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 diveded by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-9 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA765" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA765"^^xsd:anyURI ; + qudt:symbol "m³/(h·bar)" ; + qudt:ucumCode "m3.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G87" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per hour bar" . + +unit:M3-PER-HR-K + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA764" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA764"^^xsd:anyURI ; + qudt:symbol "m³/(h·K)" ; + qudt:ucumCode "m3.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G70" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per hour kelvin" . + +unit:M3-PER-K + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m3-per-k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA758" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA758"^^xsd:anyURI ; + qudt:symbol "m³/K" ; + qudt:ucumCode "m3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G29" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Kelvin"@en-US ; + rdfs:label "Cubic Metre per Kelvin"@en . + +unit:M3-PER-KiloGM + a qudt:Unit ; + dcterms:description "Cubic Meter Per Kilogram (m3/kg) is a unit in the category of Specific volume. It is also known as cubic meters per kilogram, cubic metre per kilogram, cubic metres per kilogram, cubic meter/kilogram, cubic metre/kilogram. This unit is commonly used in the SI unit system. Cubic Meter Per Kilogram (m3/kg) has a dimension of M-1L3 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{3}/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAA766" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA766"^^xsd:anyURI ; + qudt:symbol "m³/kg" ; + qudt:ucumCode "m3.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "m3/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A39" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Kilogram"@en-US ; + rdfs:label "Cubic Metre per Kilogram"@en . + +unit:M3-PER-KiloGM-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{3} kg^{-1} s^{-2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m³/(kg·s²)" ; + qudt:ucumCode "m3.(kg.s2)-1"^^qudt:UCUMcs ; + qudt:ucumCode "m3.kg-1.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "m3/(kg.s2)"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Kilogram Square Second"@en-US ; + rdfs:label "Cubic Metre per Kilogram Square Second"@en . + +unit:M3-PER-M2 + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumePerArea ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "m³/m²" ; + qudt:ucumCode "m3.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H60" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Square Meter"@en-US ; + rdfs:label "Cubic Metre per Square Metre"@en . + +unit:M3-PER-M3 + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA767" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA767"^^xsd:anyURI ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "m³/m³" ; + qudt:ucumCode "m3.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H60" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Cubic Meter"@en-US ; + rdfs:label "Cubic Metre per Cubic Metre"@en . + +unit:M3-PER-MIN + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01666667 ; + qudt:conversionMultiplierSN 1.666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA768" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA768"^^xsd:anyURI ; + qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit minute" ; + qudt:symbol "m³/min" ; + qudt:ucumCode "m3.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G53" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Minute"@en-US ; + rdfs:label "Cubic Metre per Minute"@en . + +unit:M3-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-7 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA770" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA770"^^xsd:anyURI ; + qudt:symbol "m³/(min·bar)" ; + qudt:ucumCode "m3.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G88" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per minute bar" . + +unit:M3-PER-MIN-K + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA769" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA769"^^xsd:anyURI ; + qudt:symbol "m³/(min·K)" ; + qudt:ucumCode "m3.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G71" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per minute kelvin" . + +unit:M3-PER-MOL + a qudt:Unit ; + dcterms:description "

The molar volume, symbol $Vm$, is the volume occupied by one mole of a substance (chemical element or chemical compound) at a given temperature and pressure. It is equal to the molar mass (M) divided by the mass density. It has the SI unit cubic metres per mole $m3/mol$, although it is more practical to use the units cubic decimetres per mole $dm3/mol$ for gases and cubic centimetres per mole $cm3/mol$ for liquids and solids

."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{3} mol^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarRefractivity ; + qudt:hasQuantityKind quantitykind:MolarVolume ; + qudt:iec61360Code "0112/2///62720#UAA771" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA771"^^xsd:anyURI ; + qudt:symbol "m³/mol" ; + qudt:ucumCode "m3.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "m3/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "A40" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Mole"@en-US ; + rdfs:label "Kubikmeter je Mol"@de ; + rdfs:label "cubic metre per mole"@en ; + rdfs:label "kubični meter na mol"@sl ; + rdfs:label "meter kubik per mole"@ms ; + rdfs:label "metr krychlový na mol"@cs ; + rdfs:label "metr sześcienny na mol"@pl ; + rdfs:label "metreküp bölü metre küp"@tr ; + rdfs:label "metro cubo alla mole"@it ; + rdfs:label "metro cúbico por mol"@es ; + rdfs:label "metro cúbico por mol"@pt ; + rdfs:label "metru cub pe mol"@ro ; + rdfs:label "mètre cube par mole"@fr ; + rdfs:label "кубический метр на моль"@ru ; + rdfs:label "متر مكعب لكل مول"@ar ; + rdfs:label "متر مکعب بر مول"@fa ; + rdfs:label "घन मीटर प्रति मोल (इकाई)"@hi ; + rdfs:label "立方メートル 毎立方メートル"@ja ; + rdfs:label "立方米每摩尔"@zh . + +unit:M3-PER-MOL-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit that is the SI base unit metre with the exponent 3 divided by the SI base unit mol multiplied by the SI base unit second."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A-1E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate ; + qudt:hasQuantityKind quantitykind:SecondOrderReactionRateConstant ; + qudt:symbol "m³/(mol·s)" ; + qudt:ucumCode "m3.mol-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Mole Second"@en-US ; + rdfs:label "Cubic Metre per Mole Second"@en . + +unit:M3-PER-PA + a qudt:Unit ; + dcterms:description "power of the SI base unit meter by exponent 3 divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB323" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB323"^^xsd:anyURI ; + qudt:symbol "m³/Pa" ; + qudt:ucumCode "m3.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M71" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per pascal" . + +unit:M3-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A cubic metre per second ($m^{3}s^{-1}, m^{3}/s$), cumecs or cubic meter per second in American English) is a derived SI unit of flow rate equal to that of a stere or cube with sides of one metre ( u0303 39.37 in) in length exchanged or moving each second. It is popularly used for water flow, especially in rivers and streams, and fractions for HVAC values measuring air flow."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$m^{3}/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:RecombinationCoefficient ; + qudt:hasQuantityKind quantitykind:SoundVolumeVelocity ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA772" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA772"^^xsd:anyURI ; + qudt:symbol "m³/s" ; + qudt:ucumCode "m3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "m3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MQS" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Second"@en-US ; + rdfs:label "Cubic Metre per Second"@en . + +unit:M3-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA774" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA774"^^xsd:anyURI ; + qudt:symbol "m³/(s·bar)" ; + qudt:ucumCode "m3.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G89" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per second bar" . + +unit:M3-PER-SEC-K + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the expontent 3 divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA773" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA773"^^xsd:anyURI ; + qudt:symbol "m³/(s·K)" ; + qudt:ucumCode "m3.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G72" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per second kelvin" . + +unit:M3-PER-SEC-M2 + a qudt:Unit ; + dcterms:description "unit of volume flow cubic meters by the SI base unit second related to the transmission surface in square metres" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate_SurfaceRelated ; + qudt:iec61360Code "0112/2///62720#UAB325" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB325"^^xsd:anyURI ; + qudt:symbol "m³/(s·m²)" ; + qudt:ucumCode "m3.s-1.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P87" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per second square metre" . + +unit:M3-PER-SEC-PA + a qudt:Unit ; + dcterms:description "power of the SI base unit meter by exponent 3 divided by the product of the SI base unit second and the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB322" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB322"^^xsd:anyURI ; + qudt:symbol "m³/(s·Pa)" ; + qudt:ucumCode "m3.s-1.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N45" ; + rdfs:isDefinedBy ; + rdfs:label "cubic metre per second pascal" . + +unit:M3-PER-SEC2 + a qudt:Unit ; + dcterms:description "$\\textit{Cubic Meter per Square Second}$ is a C.G.S System unit for $\\textit{Standard Gravitational Parameter}$ expressed as $m^3/s^2$"^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^3/s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:StandardGravitationalParameter ; + qudt:symbol "m³/s²" ; + qudt:ucumCode "m3.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "m3/s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Meter per Square Second"@en-US ; + rdfs:label "Cubic Metre per Square Second"@en . + +unit:M3-PER-YR + a qudt:Unit ; + dcterms:description "power of the SI base unit metre with the exponent 3 divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000003168808781 ; + qudt:conversionMultiplierSN 3.168808781E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:plainTextDescription "cubic meter divided by the unit year with 365 days" ; + qudt:symbol "m³/a" ; + qudt:ucumCode "m3.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Metre per Year"@en ; + rdfs:label "Kubieke meter per Jaar"@nl . + +unit:M4 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit associated with area moments of inertia."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quartic_metre"^^xsd:anyURI ; + qudt:expression "$m^{4}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:iec61360Code "0112/2///62720#UAA737" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA737"^^xsd:anyURI ; + qudt:symbol "m⁴" ; + qudt:ucumCode "m4"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B83" ; + rdfs:isDefinedBy ; + rdfs:label "Quartic Meter"@en-US ; + rdfs:label "Quartic Metre"@en . + +unit:M4-PER-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "m⁴/s" ; + qudt:ucumCode "m4.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Metres to the power four per second"@en . + +unit:M5 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^{5}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L5I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 5 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SectionAreaIntegral ; + qudt:symbol "m⁵" ; + qudt:ucumCode "m5"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Quintic Meter"@en-US ; + rdfs:label "Quintic Metre"@en . + +unit:M6 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^{6}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L6I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:WarpingConstant ; + qudt:symbol "m⁶" ; + qudt:ucumCode "m6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Sextic Meter"@en-US ; + rdfs:label "Sextic Metre"@en . + +unit:MACH + a qudt:DimensionlessUnit, qudt:Unit ; + dcterms:description "\"Mach\" is a unit for 'Dimensionless Ratio' expressed as $mach$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mach"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:MachNumber ; + qudt:iec61360Code "0112/2///62720#UAB595" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mach?oldid=492058934"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB595"^^xsd:anyURI ; + qudt:symbol "Mach" ; + rdfs:isDefinedBy ; + rdfs:label "Mach"@en . + +unit:MESH + a qudt:Unit ; + dcterms:description "\"Mesh\" is a measure of particle size or fineness of a woven product."@en ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Mesh_(scale)"^^xsd:anyURI ; + qudt:symbol "mesh" ; + qudt:ucumCode "[mesh_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "57" ; + rdfs:isDefinedBy ; + rdfs:label "Mesh"@en . + +unit:MHO + a qudt:Unit ; + dcterms:description "\"Mho\" is a C.G.S System unit for 'Electric Conductivity' expressed as $mho$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Siemens_%28unit%29"^^xsd:anyURI ; + qudt:exactMatch unit:S ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAB200" ; + qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB200"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:S ; + qudt:symbol "℧" ; + qudt:ucumCode "mho"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NQ" ; + rdfs:isDefinedBy ; + rdfs:label "Mho"@en . + +unit:MHO_Stat + a qudt:Unit ; + dcterms:description "\"StatMHO\" is the unit of conductance, admittance, and susceptance in the C.G.S e.s.u system of units. One $statmho$ is the conductance between two points in a conductor when a constant potential difference of $1 \\; statvolt$ applied between the points produces in the conductor a current of $1 \\; statampere$, the conductor not being the source of any electromotive force, approximately $1.1126 \\times 10^{-12} mho$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000011126500561 ; + qudt:conversionMultiplierSN 1.1126500561E-12 ; + qudt:exactMatch unit:S_Stat ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:ElectricConductivity ; + qudt:informativeReference "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:S-PER-M ; + qudt:symbol "stat℧" ; + rdfs:isDefinedBy ; + rdfs:label "Statmho"@en . + +unit:MI + a qudt:Unit ; + dcterms:description "The exact length of the land mile varied slightly among English-speaking countries until the international yard and pound agreement in 1959 established the yard as exactly 0.9144 metres, giving a mile of exactly 1,609.344 metres. The United States adopted this international mile for most purposes, but retained the pre-1959 mile for some land-survey data, terming it the US survey mile. In the US, statute mile formally refers to the survey mile, about 3.219 mm (1/8 inch) longer than the international mile (the international mile is exactly 0.0002% less than the US survey mile)."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1609.344 ; + qudt:conversionMultiplierSN 1.609344E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Distance ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA839" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mile"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA839"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "mi" ; + qudt:ucumCode "[mi_i]"^^qudt:UCUMcs ; + qudt:udunitsCode "mi" ; + qudt:uneceCommonCode "SMI" ; + rdfs:isDefinedBy ; + rdfs:label "International Mile"@en . + +unit:MI-PER-HR + a qudt:Unit ; + dcterms:description "Miles per hour is an imperial unit of speed expressing the number of statute miles covered in one hour. It is currently the standard unit used for speed limits, and to express speeds generally, on roads in the United Kingdom and the United States. A common abbreviation is mph or MPH."^^rdf:HTML ; + qudt:altSymbol "mph" ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.44704 ; + qudt:conversionMultiplierSN 4.4704E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Miles_per_hour"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$mi/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB111" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Miles_per_hour?oldid=482840548"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB111"^^xsd:anyURI ; + qudt:symbol "mi/h" ; + qudt:ucumCode "[mi_i].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[mi_i]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HM" ; + rdfs:isDefinedBy ; + rdfs:label "Mile per Hour"@en . + +unit:MI-PER-MIN + a qudt:Unit ; + dcterms:description "Miles per minute is an imperial unit of speed expressing the number of statute miles covered in one minute."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 26.8224 ; + qudt:conversionMultiplierSN 2.68224E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$mi/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB229" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB229"^^xsd:anyURI ; + qudt:symbol "mi/min" ; + qudt:ucumCode "[mi_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[mi_i]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M57" ; + rdfs:isDefinedBy ; + rdfs:label "Mile per Minute"@en . + +unit:MI-PER-SEC + a qudt:Unit ; + dcterms:description "Miles per second is an imperial unit of speed expressing the number of statute miles covered in one second."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1609.344 ; + qudt:conversionMultiplierSN 1.609344E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$mi/sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB230" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB230"^^xsd:anyURI ; + qudt:symbol "mi/s" ; + qudt:ucumCode "[mi_i].sec-1"^^qudt:UCUMcs ; + qudt:ucumCode "[mi_i]/sec"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M58" ; + rdfs:isDefinedBy ; + rdfs:label "Mile per Second"@en . + +unit:MI2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The square mile (abbreviated as sq mi and sometimes as mi) is an imperial and US unit of measure for an area equal to the area of a square of one statute mile. It should not be confused with miles square, which refers to the number of miles on each side squared. For instance, 20 miles square (20 × 20 miles) is equal to 400 square miles. One square mile is equivalent to: 4,014,489,600 square inches 27,878,400 square feet, 3,097,600 square yards, 640 acres, 258.9988110336 hectares, 2560 roods, 25,899,881,103.36 square centimetres, 2,589,988.110336 square metres, 2.589988110336 square kilometres When applied to a portion of the earth's surface, which is curved rather than flat, 'square mile' is an informal synonym for section."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2589997.766409 ; + qudt:conversionMultiplierSN 2.589997766409E6 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:MI_US2 ; + qudt:expression "$square-mile$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB050" ; + qudt:iec61360Code "0112/2///62720#UAB208" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB050"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB208"^^xsd:anyURI ; + qudt:symbol "mi²" ; + qudt:ucumCode "[mi_i]2"^^qudt:UCUMcs ; + qudt:ucumCode "[mi_us]2"^^qudt:UCUMcs ; + qudt:ucumCode "[smi_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M48" ; + qudt:uneceCommonCode "MIK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Mile"@en . + +unit:MI3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A cubic mile is an imperial / U.S. customary unit of volume, used in the United States, Canada, and the United Kingdom. It is defined as the volume of a cube with sides of 1 mile in length. "^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4168181830.0 ; + qudt:conversionMultiplierSN 4.16818183E9 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$mi^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:symbol "mi³" ; + qudt:ucumCode "[mi_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M69" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Mile"@en . + +unit:MIL + a qudt:Unit ; + dcterms:description "The Mil unit of plane angle, as defined by NATO to be 1/6400 of a circle."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000490873852 ; + qudt:conversionMultiplierSN 4.90873852E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAB205" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB205"^^xsd:anyURI ; + qudt:symbol "mil{NATO}" ; + rdfs:isDefinedBy ; + rdfs:label "Mil Angle (NATO)"@en . + +unit:MIL_Circ + a qudt:Unit ; + dcterms:description "A circular mil is a unit of area, equal to the area of a circle with a diameter of one mil (one thousandth of an inch). It is a convenient unit for referring to the area of a wire with a circular cross section, because the area in circular mils can be calculated without reference to pi ($\\pi$). The area in circular mils, A, of a circle with a diameter of d mils, is given by the formula: Electricians in Canada and the United States are familiar with the circular mil because the National Electrical Code (NEC) uses the circular mil to define wire sizes larger than 0000 AWG. In many NEC publications and uses, large wires may be expressed in thousands of circular mils, which is abbreviated in two different ways: MCM or kcmil. For example, one common wire size used in the NEC has a cross-section of 250,000 circular mils, written as 250 kcmil or 250 MCM, which is the first size larger than 0000 AWG used within the NEC. "^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000000005067075 ; + qudt:conversionMultiplierSN 5.067075E-10 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAB207" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB207"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M2 ; + qudt:symbol "cmil" ; + qudt:ucumCode "[cml_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M47" ; + rdfs:isDefinedBy ; + rdfs:label "Circular Mil"@en . + +unit:MIN + a qudt:Unit ; + dcterms:description "A minute is a unit of measurement of time. The minute is a unit of time equal to 1/60 (the first sexagesimal fraction of an hour or 60 seconds. In the UTC time scale, a minute on rare occasions has 59 or 61 seconds; see leap second. The minute is not an SI unit; however, it is accepted for use with SI units. The SI symbol for minute or minutes is min (for time measurement) or the prime symbol after a number, e.g. 5' (for angle measurement, even if it is informally used for time)."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA842" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA842"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:siExactMatch si-unit:minute ; + qudt:symbol "min" ; + qudt:ucumCode "min"^^qudt:UCUMcs ; + qudt:udunitsCode "min" ; + qudt:uneceCommonCode "MIN" ; + rdfs:isDefinedBy ; + rdfs:label "Minute"@en . + +unit:MIN_Angle + a qudt:Unit ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000290888209 ; + qudt:conversionMultiplierSN 2.90888209E-4 ; + qudt:exactMatch unit:ARCMIN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA097" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA097"^^xsd:anyURI ; + qudt:symbol "'" ; + qudt:ucumCode "'"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D61" ; + rdfs:isDefinedBy ; + rdfs:label "Minute Angle"@en . + +unit:MIN_Sidereal + a qudt:Unit ; + dcterms:description "Sidereal time is a time-keeping system astronomers use to keep track of the direction to point their telescopes to view a given star in the night sky. A mean sidereal day is about $23 h 56 m 4.1 s$ in length. However, due to variations in the rotation rate of the Earth, the rate of an ideal sidereal clock deviates from any simple multiple of a civil clock. In practice, the difference is kept track of by the difference UTC-UT1, which is measured by radio telescopes and kept on file and available to the public at the IERS and at the United States Naval Observatory. A Sidereal Minute is $1/60^{th}$ of a Sidereal Hour, which is $1/24^{th}$ of a Sidereal Day."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 59.83617 ; + qudt:conversionMultiplierSN 5.983617E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sidereal_time"^^xsd:anyURI ; + qudt:scalingOf unit:SEC ; + qudt:symbol "min{sidereal}" ; + rdfs:isDefinedBy ; + rdfs:label "Sidereal Minute"@en . + +unit:MI_N + a qudt:Unit ; + dcterms:description "A unit of distance used primarily at sea and in aviation. The nautical mile is defined to be the average distance on the Earth's surface represented by one minute of latitude. In 1929 an international conference in Monaco redefined the nautical mile to be exactly 1852 meters or 6076.115 49 feet, a distance known as the international nautical mile. The international nautical mile equals about 1.1508 statute miles. There are usually 3 nautical miles in a league. The unit is designed to equal 1/60 degree, although actual degrees of latitude vary from about 59.7 to 60.3 nautical miles. (Note: using data from the Geodetic Reference System 1980, the \"true\" length of a nautical mile would be 1852.216 meters.)"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1852.0 ; + qudt:conversionMultiplierSN 1.852E3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB065" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB065"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "nmi" ; + qudt:ucumCode "[nmi_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NMI" ; + rdfs:isDefinedBy ; + rdfs:label "Nautical Mile"@en . + +unit:MI_N-PER-HR + a qudt:Unit ; + dcterms:description "The knot is a unit of speed equal to one nautical mile (1.852 km) per hour, approximately 1.151 mph. The abbreviation kn is preferred by the International Hydrographic Organization (IHO), which includes every major seafaring nation; but the abbreviations kt (singular) and kts (plural) are also widely used conflicting with the SI symbol for kilotonne which is also \"kt\". The knot is a non-SI unit accepted for use with the International System of Units (SI). Worldwide, the knot is used in meteorology, and in maritime and air navigation-for example, a vessel travelling at 1 knot along a meridian travels one minute of geographic latitude in one hour. "^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.5144444444444445 ; + qudt:conversionMultiplierSN 5.144444444444445E-1 ; + qudt:exactMatch unit:KN ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI_N ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "nmi/h" ; + qudt:ucumCode "[nmi_i].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[nmi_i]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nautical Mile per Hour"@en . + +unit:MI_N-PER-MIN + a qudt:Unit ; + dcterms:description """The SI derived unit for speed is the meter/second. +1 meter/second is equal to 0.0323974082073 nautical mile per minute. """^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 30.86666666666666666666666666666667 ; + qudt:conversionMultiplierSN 3.086666666666666666666666666666667E1 ; + qudt:expression "$nmi/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI_N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "nmi/min" ; + qudt:ucumCode "[nmi_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[nmi_i]/min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nautical Mile per Minute"@en . + +unit:MI_UK3 + a qudt:Unit ; + dcterms:description "unit of volume according to the Imperial system of units" ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MI_UK ; + ] ; + qudt:hasQuantityKind quantitykind:SectionModulus ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB290" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB290"^^xsd:anyURI ; + qudt:symbol "mi³" ; + qudt:uneceCommonCode "M69" ; + rdfs:isDefinedBy ; + rdfs:label "cubic mile (UK statute)" . + +unit:MI_US + a qudt:Unit ; + dcterms:description "The exact length of the land mile varied slightly among English-speaking countries until the international yard and pound agreement in 1959 established the yard as exactly 0.9144 metres, giving a mile of exactly 1,609.344 metres. The United States adopted this international mile for most purposes, but retained the pre-1959 mile for some land-survey data, terming it the US survey mile. In the US, statute mile formally refers to the survey mile, about 3.219 mm (1/8 inch) longer than the international mile (the international mile is exactly 0.0002\\% less than the US survey mile)."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1609.347 ; + qudt:conversionMultiplierSN 1.609347E3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB287" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mile"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB287"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "mi{US}" ; + qudt:ucumCode "[mi_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M52" ; + rdfs:isDefinedBy ; + rdfs:label "Mile US Statute"@en . + +unit:MI_US-PER-SEC2 + a qudt:Unit ; + dcterms:description "unit of the length according to the Imperial system of units divided by the power of the SI base unit second by exponent 2" ; + qudt:conversionMultiplier 1609.347 ; + qudt:conversionMultiplierSN 1.609347E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MI_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB401" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB401"^^xsd:anyURI ; + qudt:symbol "mi{US}/s²" ; + qudt:ucumCode "[mi_us].s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M42" ; + rdfs:isDefinedBy ; + rdfs:label "mile (statute mile) per second squared" . + +unit:MI_US2 + a qudt:Unit ; + dcterms:description "The square mile (abbreviated as sq mi and sometimes as mi) is an imperial and US unit of measure for an area equal to the area of a square of one statute mile. It should not be confused with miles square, which refers to the number of miles on each side squared. For instance, 20 miles square (20 × 20 miles) is equal to 400 square miles. One square mile is equivalent to: 4,014,489,600 square inches 27,878,400 square feet, 3,097,600 square yards, 640 acres, 258.9988110336 hectares, 2560 roods, 25,899,881,103.36 square centimetres, 2,589,988.110336 square metres, 2.589988110336 square kilometres When applied to a portion of the earth's surface, which is curved rather than flat, 'square mile' is an informal synonym for section."^^rdf:HTML ; + qudt:conversionMultiplier 2589997.766409 ; + qudt:conversionMultiplierSN 2.589997766409E6 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:MI2 ; + qudt:expression "$square-mile$" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MI_US ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB208" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mile"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB208"^^xsd:anyURI ; + qudt:symbol "mi{US}²" ; + qudt:ucumCode "[mi_us]2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "208" ; + rdfs:isDefinedBy ; + rdfs:label "Square Mile US Statute"@en ; + rdfs:label "square mile (based on U.S. survey foot)" . + +unit:MO + a qudt:Unit ; + dcterms:description "A unit of time corresponding approximately to one cycle of the moon's phases, or about 30 days or 4 weeks. Also known as the 'Synodic Month' and calculated as 29.53059 days."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 2551442.976 ; + qudt:conversionMultiplierSN 2.551442976E6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Month"^^xsd:anyURI ; + qudt:exactMatch unit:MO_Synodic ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA880" ; + qudt:informativeReference "http://www.thefreedictionary.com/Synodal+month"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA880"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Month"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:symbol "mo" ; + qudt:ucumCode "mo"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MON" ; + rdfs:isDefinedBy ; + rdfs:label "Month"@en . + +unit:MOHM + a qudt:Unit ; + dcterms:description """ + The $\\textit{Mohm}$ is a unit of mechanical mobility for sound waves, being the reciprocal of the mechanical $ohm$ unit of impedance, i.e., for an acoustic medium, the ratio of the flux or volumic speed (area times particle speed) of the resulting waves through it to the effective sound pressure (i.e. force) causing them, the unit being qualified, according to the units used, as m.k.s. or c.g.s. + The mechanical ohm is defined as: + $$Mohm \\equiv 1\\,dyn\\cdot\\,s\\cdot cm^{-1} \\text{ or } 10^{-3} N\\cdot s\\cdot m^{-1}$$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:expression "$mohm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ; + qudt:hasQuantityKind quantitykind:MechanicalMobility ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-914"^^xsd:anyURI ; + qudt:latexDefinition "$1\\:{mohm_{cgs}} = 1\\:\\frac {cm} {dyn.s}\\: (=\\:1\\:\\frac s g \\:in\\:base\\:c.g.s.\\:terms)$"^^qudt:LatexString ; + qudt:latexDefinition "$1\\:{mohm_{mks}} = 10^{3}\\:\\frac m {N.s}\\:(=\\:10^{3}\\: \\frac s {kg}\\:in\\:base\\:m.k.s.\\:terms)$"^^qudt:LatexString ; + qudt:symbol "mohm" ; + rdfs:isDefinedBy ; + rdfs:label "Mohm"@en . + +unit:MOL + a qudt:Unit ; + dcterms:description """ + The $\\textit{mole}$ is a unit of measurement used in chemistry to express amounts of a chemical substance. + The official definition, adopted as part of the SI system in 1971, is that one mole of a substance contains just as many elementary entities (atoms, molecules, ions, or other kinds of particles) as there are atoms in 12 grams of carbon-12 (carbon-12 is the most common atomic form of carbon, consisting of atoms having 6 protons and 6 neutrons). + This corresponds to a value of $6.02214179(30) \\times 10^{23}$ elementary entities of the substance. + It is one of the base units in the International System of Units, and has the unit symbol $mol$. + A Mole is the SI base unit of the amount of a substance (as distinct from its mass or weight). + Moles measure the actual number of atoms or molecules in an object. + An earlier name is gram molecular weight, because one mole of a chemical compound is the same number of grams as the molecular weight of a molecule of that compound measured in atomic mass units. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mole_%28unit%29"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasQuantityKind quantitykind:ExtentOfReaction ; + qudt:iec61360Code "0112/2///62720#UAA882" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mole_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA882"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:mole ; + qudt:symbol "mol" ; + qudt:ucumCode "mol"^^qudt:UCUMcs ; + qudt:udunitsCode "mol" ; + qudt:uneceCommonCode "C34" ; + rdfs:isDefinedBy ; + rdfs:label "Mol"@de ; + rdfs:label "mol"@cs ; + rdfs:label "mol"@es ; + rdfs:label "mol"@pl ; + rdfs:label "mol"@pt ; + rdfs:label "mol"@ro ; + rdfs:label "mol"@sl ; + rdfs:label "mol"@tr ; + rdfs:label "mole"@en ; + rdfs:label "mole"@fr ; + rdfs:label "mole"@it ; + rdfs:label "mole"@ms ; + rdfs:label "moles"@la ; + rdfs:label "mól"@hu ; + rdfs:label "μολ"@el ; + rdfs:label "мол"@bg ; + rdfs:label "моль"@ru ; + rdfs:label "מול"@he ; + rdfs:label "مول"@ar ; + rdfs:label "مول"@fa ; + rdfs:label "मोल (इकाई)"@hi ; + rdfs:label "モル"@ja ; + rdfs:label "摩尔"@zh . + +unit:MOL-DEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Mole Degree Celsius}$ is a C.G.S System unit for $\\textit{Temperature Amount Of Substance}$ expressed as $mol-degC$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$mol-deg-c$"^^qudt:LatexString ; + qudt:expression "$mol-degC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureAmountOfSubstance ; + qudt:symbol "mol·°C" ; + qudt:ucumCode "mol.Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mole Degree Celsius"@en . + +unit:MOL-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Mole Kelvin}$ is a unit for $\\textit{Temperature Amount Of Substance}$ expressed as $mol-K$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureAmountOfSubstance ; + qudt:symbol "mol·K" ; + qudt:ucumCode "mol.K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mole Kelvin"@en . + +unit:MOL-PER-DeciM3 + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:iec61360Code "0112/2///62720#UAA883" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA883"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit mol divided by the 0.001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "mol/dm³" ; + qudt:ucumCode "mol.dm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C35" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Cubic Decimeter"@en-US ; + rdfs:label "Mole per Cubic Decimetre"@en . + +unit:MOL-PER-GM-HR + a qudt:Unit ; + dcterms:description "SI unit of the quantity of matter per SI unit of mass per unit of time expressed in hour."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-1 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mol/(g·h)" ; + qudt:ucumCode "mol.g-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per gram hour"@en . + +unit:MOL-PER-HR + a qudt:Unit ; + dcterms:description "SI base unit mole divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277778 ; + qudt:conversionMultiplierSN 2.77778E-4 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA884" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA884"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit mole divided by the unit for time hour" ; + qudt:symbol "mol/h" ; + qudt:ucumCode "mol.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L23" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Hour"@en . + +unit:MOL-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Mole Per Kilogram ($mol/kg$) is a unit of Molality"^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$mol/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:iec61360Code "0112/2///62720#UAA885" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA885"^^xsd:anyURI ; + qudt:symbol "mol/kg" ; + qudt:ucumCode "mol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C19" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Kilogram"@en . + +unit:MOL-PER-KiloGM-BAR + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the SI base unit kilogram and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A1E0L1I0M-2H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMassPressure ; + qudt:iec61360Code "0112/2///62720#UAA887" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA887"^^xsd:anyURI ; + qudt:symbol "mol/(kg·bar)" ; + qudt:ucumCode "mol.kg-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L25" ; + rdfs:isDefinedBy ; + rdfs:label "mole per kilogram bar" . + +unit:MOL-PER-KiloGM-K + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the SI base unit kilogram and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA886" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA886"^^xsd:anyURI ; + qudt:symbol "mol/(K·kg)" ; + qudt:ucumCode "mol.K-1.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L24" ; + rdfs:isDefinedBy ; + rdfs:label "mole per kilogram kelvin" . + +unit:MOL-PER-KiloGM-PA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Mole Per Kilogram Pascal ($mol/kg-pa$) is a unit of Molar Mass variation due to Pressure."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$mol/(kg.pa)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L1I0M-2H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMassPressure ; + qudt:iec61360Code "0112/2///62720#UAB317" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB317"^^xsd:anyURI ; + qudt:symbol "mol/(kg·Pa)" ; + qudt:ucumCode "mol.kg-1.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P51" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Kilogram Pascal"@en . + +unit:MOL-PER-L + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:iec61360Code "0112/2///62720#UAA888" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA888"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit mol divided by the unit litre" ; + qudt:symbol "mol/L" ; + qudt:ucumCode "mol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C38" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Liter"@en-US ; + rdfs:label "Mole per Litre"@en . + +unit:MOL-PER-L-BAR + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the unit litre and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA890" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA890"^^xsd:anyURI ; + qudt:symbol "mol/(L·bar)" ; + qudt:ucumCode "mol.L-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L27" ; + rdfs:isDefinedBy ; + rdfs:label "mole per litre bar" . + +unit:MOL-PER-L-K + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the unit litre and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA889" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA889"^^xsd:anyURI ; + qudt:symbol "mol/(L·K)" ; + qudt:ucumCode "mol.L-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L26" ; + rdfs:isDefinedBy ; + rdfs:label "mole per litre kelvin" . + +unit:MOL-PER-M2 + a qudt:Unit ; + dcterms:description "SI unit of quantity of matter per SI unit area."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mol/m²" ; + qudt:ucumCode "mol.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per square metre"@en . + +unit:MOL-PER-M2-DAY + a qudt:Unit ; + dcterms:description "quantity of matter per unit area per unit of time."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-5 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "mol/(m²·d)" ; + qudt:ucumCode "mol.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per Square Meter Day"@en-US ; + rdfs:label "Moles per Square Metre Day"@en . + +unit:MOL-PER-M2-SEC + a qudt:Unit ; + dcterms:description "SI unit of quantity of matter per SI unit area per SI unit of time."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "mol/(m²·s)" ; + qudt:ucumCode "mol.m-2.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per square metre second"@en . + +unit:MOL-PER-M2-SEC-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "mol/(m²·m·s)" ; + qudt:ucumCode "mol.m-2.s-1.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per square metre second metre"@en . + +unit:MOL-PER-M2-SEC-M-SR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mol/(m²·m·s·sr)" ; + qudt:ucumCode "mol.m-2.s-1.m-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per square metre second metre steradian"@en . + +unit:MOL-PER-M2-SEC-SR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mol/(m²·s·sr)" ; + qudt:ucumCode "mol.m-2.s-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per square metre second steradian"@en . + +unit:MOL-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI derived unit for amount-of-substance concentration is the mole/cubic meter."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$mol/m^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:iec61360Code "0112/2///62720#UAA891" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA891"^^xsd:anyURI ; + qudt:symbol "mol/m³" ; + qudt:ucumCode "mol.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "mol/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C36" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Cubic Meter"@en-US ; + rdfs:label "Mole per Cubic Metre"@en . + +unit:MOL-PER-M3-BAR + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA893" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA893"^^xsd:anyURI ; + qudt:symbol "mol/(m³·bar)" ; + qudt:ucumCode "mol.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L29" ; + rdfs:isDefinedBy ; + rdfs:label "mole per cubic metre bar" . + +unit:MOL-PER-M3-K + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA892" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA892"^^xsd:anyURI ; + qudt:symbol "mol/(m³·K)" ; + qudt:ucumCode "mol.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L28" ; + rdfs:isDefinedBy ; + rdfs:label "mole per cubic metre kelvin" . + +unit:MOL-PER-M3-PA + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the product of the power from the SI base unit metre with exponent 3 and the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB318" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB318"^^xsd:anyURI ; + qudt:symbol "mol/(m³·Pa)" ; + qudt:ucumCode "mol.m-3.Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P52" ; + rdfs:isDefinedBy ; + rdfs:label "mole per cubic metre pascal" . + +unit:MOL-PER-M3-SEC + a qudt:Unit ; + dcterms:description "SI unit of quantity of matter per SI unit volume per SI unit of time."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "mol/(m³·s)" ; + qudt:ucumCode "mol.m-3.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per cubic metre second"@en . + +unit:MOL-PER-MIN + a qudt:Unit ; + dcterms:description "SI base unit mole divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.016666667 ; + qudt:conversionMultiplierSN 1.6666667E-2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA894" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA894"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit mole divided by the unit for time minute" ; + qudt:symbol "mol/min" ; + qudt:ucumCode "mol.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L30" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Minute"@en . + +unit:MOL-PER-MOL + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:symbol "mol/mol" ; + qudt:ucumCode "mol.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Moles per mole"@en . + +unit:MOL-PER-SEC + a qudt:Unit ; + dcterms:description "SI base unit mol divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA895" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA895"^^xsd:anyURI ; + qudt:plainTextDescription "SI base unit mol divided by the SI base unit second" ; + qudt:symbol "mol/s" ; + qudt:ucumCode "mol.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E95" ; + rdfs:isDefinedBy ; + rdfs:label "Mole per Second"@en . + +unit:MOL-PER-TONNE + a qudt:Unit ; + dcterms:description "Mole Per Tonne (mol/t) is a unit of Molality"^^rdf:HTML ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:plainTextDescription "Mole Per Tonne (mol/t) is a unit of Molality" ; + qudt:symbol "mol/t" ; + qudt:ucumCode "mol.t-1"^^qudt:UCUMcs ; + qudt:ucumCode "mol/t"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mol per Tonne"@en . + +unit:MOL_LB + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Pound Mole}$ is a unit for $\\textit{Mass Amount Of Substance}$, + expressed as $lb-mol$. + """^^qudt:LatexString ; + qudt:conversionMultiplier 453.59237 ; + qudt:conversionMultiplierSN 4.5359237E2 ; + qudt:expression "$lb-mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:informativeReference ""^^xsd:anyURI ; + qudt:scalingOf unit:MOL ; + qudt:symbol "lb-mol" ; + qudt:ucumCode "[mol_lb]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mole"@en . + +unit:MOL_LB-DEG_F + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Pound Mole Degree Fahrenheit}$ is a unit for 'Mass Amount Of Substance Temperature' expressed as $lb-mol-degF$."^^qudt:LatexString ; + qudt:conversionMultiplier 251.995761111111131270772 ; + qudt:conversionMultiplierSN 2.51995761111111131270772E2 ; + qudt:expression "$lb-mol-degF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasQuantityKind quantitykind:MassAmountOfSubstanceTemperature ; + qudt:symbol "lb-mol·°F" ; + qudt:ucumCode "[mol_lb].[degF]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pound Mole Degree Fahrenheit"@en . + +unit:MOL_LB-PER-LB + a qudt:Unit ; + dcterms:description "non SI-conform unit of the material molar flux divided by the avoirdupois pound for mass according to the avoirdupois unit system" ; + qudt:conversionMultiplier 999.9999999999999999999999999999998 ; + qudt:conversionMultiplierSN 9.999999999999999999999999999999998E2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:iec61360Code "0112/2///62720#UAB405" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB405"^^xsd:anyURI ; + qudt:symbol "lb-mol/lbm" ; + qudt:ucumCode "[mol_lb].[lb_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P48" ; + rdfs:isDefinedBy ; + rdfs:label "pound mole per pound" . + +unit:MOL_LB-PER-MIN + a qudt:Unit ; + dcterms:description "non SI-conform unit of the power of the amount of substance non-SI compliant unit of the molar flux relating that a pound mole of a chemical composition the same number of pound corresponds like the molecular weight of a molecule of this composition in atomic mass units" ; + qudt:conversionMultiplier 7.559872833333333333333333333333335 ; + qudt:conversionMultiplierSN 7.559872833333333333333333333333335E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:iec61360Code "0112/2///62720#UAB452" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB452"^^xsd:anyURI ; + qudt:symbol "lb-mol/min" ; + qudt:ucumCode "[mol_lb].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P46" ; + rdfs:isDefinedBy ; + rdfs:label "pound mole per minute" . + +unit:MOL_LB-PER-SEC + a qudt:Unit ; + dcterms:description "non SI-conformunit of the power of the amount of substance non-SI compliant unit of the molar flux relating that a pound mole of a chemical composition the same number of pound corresponds like the molecular weight of a molecule of this composition in atomic mass units" ; + qudt:conversionMultiplier 453.59237 ; + qudt:conversionMultiplierSN 4.5359237E2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MOL_LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:iec61360Code "0112/2///62720#UAB451" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB451"^^xsd:anyURI ; + qudt:symbol "lb-mol/s" ; + qudt:ucumCode "[mol_lb].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P45" ; + rdfs:isDefinedBy ; + rdfs:label "pound mole per second" . + +unit:MOMME_Pearl + a qudt:Unit ; + dcterms:description "unit momme (pearl) specifically expresses the mass of cultured pearls" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB598" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB598"^^xsd:anyURI ; + qudt:symbol "momme (pearl)" ; + rdfs:isDefinedBy ; + rdfs:label "Momme (pearl)" . + +unit:MOMME_Textile + a qudt:Unit ; + dcterms:description "unit momme (textile) specifically express the weight of one square metre of silk" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB599" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB599"^^xsd:anyURI ; + qudt:symbol "momme (textile)" ; + rdfs:isDefinedBy ; + rdfs:label "Momme (textile)" . + +unit:MO_MeanGREGORIAN + a qudt:Unit ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "https://conversion.org/time/month-gregorian-average/"^^xsd:anyURI ; + qudt:symbol "mo{Gregorian}" ; + qudt:ucumCode "mo_g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MON" ; + rdfs:isDefinedBy ; + rdfs:label "Mean Gregorian Month"@en . + +unit:MO_MeanJulian + a qudt:Unit ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "https://www.convertunits.com/info/Julian+month"^^xsd:anyURI ; + qudt:symbol "mo{mean Julian}" ; + qudt:ucumCode "mo_j"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mean Julian Month"@en . + +unit:MO_Synodic + a qudt:Unit ; + dcterms:description "A unit of time corresponding approximately to one cycle of the moon's phases, or about 30 days or 4 weeks and calculated as 29.53059 days."^^rdf:HTML ; + qudt:exactMatch unit:MO ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://www.thefreedictionary.com/Synodal+month"^^xsd:anyURI ; + qudt:symbol "mo{synodic}" ; + qudt:ucumCode "mo_s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Synodic month"@en . + +unit:MX + a qudt:Unit ; + dcterms:description "\"Maxwell\" is a C.G.S System unit for 'Magnetic Flux' expressed as $Mx$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Maxwell"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAB155" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maxwell?oldid=478391976"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB155"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:WB ; + qudt:symbol "Mx" ; + qudt:ucumCode "Mx"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B65" ; + rdfs:isDefinedBy ; + rdfs:label "Maxwell"@en . + +unit:M_H2O + a qudt:Unit ; + dcterms:description "not SI-conform unit of pressure, whereas a value of 1 mH₂O is equivalent to the static pressure, which is produced by one metre high watercolumn" ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB362" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB362"^^xsd:anyURI ; + qudt:symbol "mH₂0" ; + qudt:uneceCommonCode "N23" ; + rdfs:isDefinedBy ; + rdfs:label "conventional metre of water" . + +unit:MebiBIT + a qudt:Unit ; + dcterms:description "1,048,576-fold of the unit bit" ; + qudt:conversionMultiplier 726817.4980028252 ; + qudt:conversionMultiplierSN 7.268174980028252E5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB167" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB167"^^xsd:anyURI ; + qudt:prefix prefix:Mebi ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Mibit" ; + qudt:uneceCommonCode "D11" ; + rdfs:isDefinedBy ; + rdfs:label "mebibit" . + +unit:MebiBIT-PER-M + a qudt:Unit ; + dcterms:description "1,048,576-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 726817.49800282521276748358899013255168 ; + qudt:conversionMultiplierSN 7.2681749800282521276748358899013255168E5 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA230" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA230"^^xsd:anyURI ; + qudt:symbol "Mibit/m" ; + qudt:ucumCode "Mibit.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E75" ; + rdfs:isDefinedBy ; + rdfs:label "mebibit per metre" . + +unit:MebiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1,048,576-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 726817.49800282521276748358899013255168 ; + qudt:conversionMultiplierSN 7.2681749800282521276748358899013255168E5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MebiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA231" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA231"^^xsd:anyURI ; + qudt:symbol "Mibit/m²" ; + qudt:ucumCode "Mibit.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E76" ; + rdfs:isDefinedBy ; + rdfs:label "mebibit per square metre" . + +unit:MebiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1,048,576-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 726817.49800282521276748358899013255168 ; + qudt:conversionMultiplierSN 7.2681749800282521276748358899013255168E5 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA232" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA232"^^xsd:anyURI ; + qudt:symbol "Mibit/m³" ; + qudt:ucumCode "Mibit.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E77" ; + rdfs:isDefinedBy ; + rdfs:label "mebibit per cubic metre" . + +unit:MebiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The mebibyte is a multiple of the unit byte for digital information equivalent to $1024^{2} bytes$ or $2^{20} bytes$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5814539.984022601702139868711921018 ; + qudt:conversionMultiplierSN 5.814539984022601702139868711921018E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA233" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA233"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Mebi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "MiB" ; + qudt:uneceCommonCode "E63" ; + rdfs:isDefinedBy ; + rdfs:label "Mebibyte"@en . + +unit:MegaA + a qudt:Unit ; + dcterms:description "1 000 000-fold of the SI base unit ampere"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA202" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA202"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI base unit ampere" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:A ; + qudt:symbol "MA" ; + qudt:ucumCode "MA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H38" ; + rdfs:isDefinedBy ; + rdfs:label "Megaampere"@en . + +unit:MegaA-PER-M2 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaA ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:iec61360Code "0112/2///62720#UAA203" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA203"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "MA/m²" ; + qudt:ucumCode "MA.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B66" ; + rdfs:isDefinedBy ; + rdfs:label "Megaampere per Square Meter"@en-US ; + rdfs:label "Megaampere per Square Metre"@en . + +unit:MegaBAR + a qudt:Unit ; + dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to $100,000 Pa = 1 bar \\approx 750.0616827 Torr$. Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100000000000.0 ; + qudt:conversionMultiplierSN 1.0E11 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BAR ; + qudt:symbol "Mbar" ; + qudt:ucumCode "Mbar"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megabar"@en . + +unit:MegaBAUD + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit baud for the symbol rate in communications engineering and telecommunication" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DigitRate ; + qudt:iec61360Code "0112/2///62720#UAA204" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA204"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BAUD ; + qudt:symbol "MBd" ; + qudt:uneceCommonCode "J54" ; + rdfs:isDefinedBy ; + rdfs:label "megabaud" . + +unit:MegaBIT + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit bit" ; + qudt:conversionMultiplier 693147.18055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB171" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB171"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Mbit" ; + qudt:uneceCommonCode "D36" ; + rdfs:isDefinedBy ; + rdfs:label "megabit" . + +unit:MegaBIT-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A megabit per second (Mbit/s or Mb/s; not to be confused with mbit/s which means millibit per second, or with Mbitps which means megabit picosecond) is a unit of data transfer rate equal to 1,000,000 bits per second or 1,000 kilobits per second or 125,000 bytes per second or 125 kilobytes per second."^^rdf:HTML ; + qudt:conversionMultiplier 693147.18055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA226" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA226"^^xsd:anyURI ; + qudt:symbol "Mbit/s" ; + qudt:ucumCode "MBd"^^qudt:UCUMcs ; + qudt:ucumCode "Mbit/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E20" ; + rdfs:isDefinedBy ; + rdfs:label "Megabit per Second"@en . + +unit:MegaBQ + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit becquerel"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA205" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA205"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit becquerel" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BQ ; + qudt:symbol "MBq" ; + qudt:ucumCode "MBq"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4N" ; + rdfs:isDefinedBy ; + rdfs:label "Megabecquerel"@en . + +unit:MegaBQ-PER-KiloGM + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit becquerel divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaBQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassicActivity ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:iec61360Code "0112/2///62720#UAB092" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB092"^^xsd:anyURI ; + qudt:symbol "MBq/kg" ; + qudt:ucumCode "MBq.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B67" ; + rdfs:isDefinedBy ; + rdfs:label "megabecquerel per kilogram" . + +unit:MegaBTU_IT + a qudt:Unit ; + qudt:conversionMultiplier 1055055852.62 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BTU_IT ; + rdfs:isDefinedBy ; + rdfs:label "MegaBTU_IT" . + +unit:MegaBTU_IT-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 293071.07 ; + qudt:conversionMultiplierSN 2.9307107E5 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$MBtu/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaBTU_IT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:symbol "MBtu{IT}/h" ; + qudt:ucumCode "M[Btu_IT].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "M[Btu_IT]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega British Thermal Unit (International Definition) per Hour"@en . + +unit:MegaBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The megabyte is defined here as one million Bytes. Also, see unit:MebiBYTE."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545177.44447956 ; + qudt:conversionMultiplierSN 5.54517744447956E6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Megabyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB131" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Megabyte?oldid=487094486"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB131"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "MB" ; + qudt:ucumCode "MBy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4L" ; + rdfs:isDefinedBy ; + rdfs:label "Mega byte"@en . + +unit:MegaBYTE-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit byte devided by the SI base unit second" ; + qudt:conversionMultiplier 5545177.4444795624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaBYTE ; + ] ; + qudt:hasQuantityKind quantitykind:ByteRate ; + qudt:iec61360Code "0112/2///62720#UAB307" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB307"^^xsd:anyURI ; + qudt:symbol "MB/s" ; + qudt:ucumCode "MBy.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P95" ; + rdfs:isDefinedBy ; + rdfs:label "megabyte per second" . + +unit:MegaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A MegaCoulomb is $10^{6} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA206" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA206"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:C ; + qudt:symbol "MC" ; + qudt:ucumCode "MC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D77" ; + rdfs:isDefinedBy ; + rdfs:label "MegaCoulomb"@en . + +unit:MegaC-PER-M2 + a qudt:Unit ; + dcterms:description "1 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:iec61360Code "0112/2///62720#UAA207" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA207"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "MC/m²" ; + qudt:ucumCode "MC.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B70" ; + rdfs:isDefinedBy ; + rdfs:label "Megacoulomb per Square Meter"@en-US ; + rdfs:label "Megacoulomb per Square Metre"@en . + +unit:MegaC-PER-M3 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:iec61360Code "0112/2///62720#UAA208" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA208"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "MC/m³" ; + qudt:ucumCode "MC.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B69" ; + rdfs:isDefinedBy ; + rdfs:label "Megacoulomb per Cubic Meter"@en-US ; + rdfs:label "Megacoulomb per Cubic Metre"@en . + +unit:MegaCCY_USD + a qudt:CurrencyUnit, qudt:DerivedUnit ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars"@en . + +unit:MegaCCY_USD-PER-FLIGHT + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:expression "$M\\$/Flight$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaCCY_USD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FLIGHT ; + ] ; + qudt:hasQuantityKind quantitykind:CurrencyPerFlight ; + qudt:symbol "$M/flight" ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars per Flight"@en . + +unit:MegaCCY_USD-PER-YR + a qudt:DerivedUnit, qudt:Unit ; + qudt:expression "$M\\$/yr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaCCY_USD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "$M/a" ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars per Year"@en . + +unit:MegaDOLLAR_US-PER-FLIGHT + a qudt:DerivedUnit, qudt:Unit ; + dcterms:isReplacedBy unit:MegaCCY_USD-PER-FLIGHT ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:deprecated true ; + qudt:expression "$M\\$/Flight$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FLIGHT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaDOLLAR_US ; + ] ; + qudt:hasQuantityKind quantitykind:CurrencyPerFlight ; + qudt:symbol "$M/flight" ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars per Flight"@en . + +unit:MegaEV + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Mega Electron Volt}$ is a unit for 'Energy And Work' expressed as $MeV$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-13 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA227" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA227"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:EV ; + qudt:symbol "MeV" ; + qudt:ucumCode "MeV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B71" ; + rdfs:isDefinedBy ; + rdfs:label "Mega Electron Volt"@en . + +unit:MegaEV-FemtoM + a qudt:Unit ; + dcterms:description "$\\textit{Mega Electron Volt Femtometer}$ is a unit for 'Length Energy' expressed as $MeV fm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000000000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-28 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FemtoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaEV ; + ] ; + qudt:hasQuantityKind quantitykind:LengthEnergy ; + qudt:symbol "MeV·fm" ; + qudt:ucumCode "MeV.fm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Electron Volt Femtometer"@en-US ; + rdfs:label "Mega Electron Volt Femtometre"@en . + +unit:MegaEV-PER-CentiM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Mega Electron Volt per Centimeter\" is a unit for 'Linear Energy Transfer' expressed as $MeV/cm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001602176634 ; + qudt:conversionMultiplierSN 1.602176634E-11 ; + qudt:expression "$MeV/cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaEV ; + ] ; + qudt:hasQuantityKind quantitykind:LinearEnergyTransfer ; + qudt:symbol "MeV/cm" ; + qudt:ucumCode "MeV.cm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Electron Volt per Centimeter"@en-US ; + rdfs:label "Mega Electron Volt per Centimetre"@en . + +unit:MegaEV-PER-SpeedOfLight + a qudt:Unit ; + dcterms:description "\"Mega Electron Volt per Speed of Light\" is a unit for 'Linear Momentum' expressed as $MeV/c$."^^qudt:LatexString ; + qudt:expression "$MeV/c$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SpeedOfLight ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaEV ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:symbol "MeV/c" ; + qudt:ucumCode "MeV.[c]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Electron Volt per Speed of Light"@en . + +unit:MegaFLOPS + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit floating point operations divided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:FloatingPointCalculationCapability ; + qudt:iec61360Code "0112/2///62720#UAB591" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB591"^^xsd:anyURI ; + qudt:symbol "Mflops" ; + rdfs:isDefinedBy ; + rdfs:label "megafloating point operations per second" . + +unit:MegaGM + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA228" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA228"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:GM ; + qudt:symbol "Mg" ; + qudt:ucumCode "Mg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2U" ; + rdfs:isDefinedBy ; + rdfs:label "Megagram"@en . + +unit:MegaGM-PER-HA + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit kilogram divided by the 10,000-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:exactMatch unit:TONNE-PER-HA ; + qudt:exactMatch unit:TON_Metric-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "1 000-fold of the SI base unit kilogram divided by the 10,000-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "Mg/ha" ; + qudt:ucumCode "Mg.har-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megagram per Hectare"@en ; + rdfs:label "Megagram per Hectare"@en-US . + +unit:MegaGM-PER-HA-YR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Annual flux equivalent to 1000kg per hectare (10000 square meters) or one tonne per hectare per year, typically used to express a crop yield."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000317 ; + qudt:exactMatch unit:TONNE-PER-HA-YR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "Annual flux equivalent to 1000kg per hectare (10000 square meters) or one tonne per hectare per year, typically used to express a crop yield." ; + qudt:symbol "Mg/(ha·a)" ; + qudt:ucumCode "Mg.ha-1.yr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megagram per Hectare per Year"@en . + +unit:MegaGM-PER-M3 + a qudt:Unit ; + dcterms:description "1 000-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA229" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA229"^^xsd:anyURI ; + qudt:plainTextDescription "1 000-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "Mg/m³" ; + qudt:ucumCode "Mg.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B72" ; + rdfs:isDefinedBy ; + rdfs:label "Megagram per Cubic Meter"@en-US ; + rdfs:label "Megagram per Cubic Metre"@en . + +unit:MegaGRAY + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit gray" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:hasQuantityKind quantitykind:Kerma ; + qudt:iec61360Code "0112/2///62720#UAB505" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB505"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:GRAY ; + qudt:symbol "MGy" ; + rdfs:isDefinedBy ; + rdfs:label "megagray" . + +unit:MegaHZ + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Megahertz\" is a C.G.S System unit for 'Frequency' expressed as $MHz$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA209" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA209"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:HZ ; + qudt:symbol "MHz" ; + qudt:ucumCode "MHz"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MHZ" ; + rdfs:isDefinedBy ; + rdfs:label "Megahertz"@en . + +unit:MegaHZ-KiloM + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the SI derived unit hertz and the 1,000-fold of the SI base unit metre" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaHZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD911" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD911"^^xsd:anyURI ; + qudt:symbol "MHz·km" ; + qudt:uneceCommonCode "H39" ; + rdfs:isDefinedBy ; + rdfs:label "megahertz kilometre" . + +unit:MegaHZ-M + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the SI derived unit hertz and the 1,000-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaHZ ; + ] ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:iec61360Code "0112/2///62720#UAA210" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA210"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1,000,000-fold of the SI derived unit hertz and the 1 000-fold of the SI base unit metre" ; + qudt:symbol "m·MHz" ; + qudt:ucumCode "MHz.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H39" ; + rdfs:isDefinedBy ; + rdfs:label "Megahertz Meter"@en-US ; + rdfs:label "Megahertz Metre"@en . + +unit:MegaHZ-PER-K + a qudt:Unit ; + dcterms:description "$\\textit{Mega Hertz per Kelvin}$ is a unit for 'Inverse Time Temperature' expressed as $MHz K^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:expression "$MHz K^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaHZ ; + ] ; + qudt:hasQuantityKind quantitykind:InverseTimeTemperature ; + qudt:symbol "MHz/K" ; + qudt:ucumCode "MHz.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Hertz per Kelvin"@en . + +unit:MegaHZ-PER-T + a qudt:Unit ; + dcterms:description "\"Mega Hertz per Tesla\" is a unit for 'Electric Charge Per Mass' expressed as $MHz T^{-1}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:expression "$MHz T^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaHZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:symbol "MHz/T" ; + qudt:ucumCode "MHz.T-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Hertz per Tesla"@en . + +unit:MegaJ + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAA211" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA211"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit joule" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:J ; + qudt:symbol "MJ" ; + qudt:ucumCode "MJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "3B" ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule"@en . + +unit:MegaJ-PER-HR + a qudt:Unit ; + dcterms:description "SI derived unit MegaJoule divided by the 3600 times the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 277.7777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:plainTextDescription "SI derived unit Megajoule divided by the 3600 times the SI base unit second" ; + qudt:symbol "MJ/h" ; + qudt:ucumCode "MJ.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P16" ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule per Hour"@en . + +unit:MegaJ-PER-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "MegaJoule Per Kelvin (MegaJ/K) is a unit in the category of Entropy."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:expression "$MegaJ/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:HeatCapacity ; + qudt:symbol "MJ/K" ; + qudt:ucumCode "MJ.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MegaJoule per Kelvin"@en . + +unit:MegaJ-PER-KiloGM + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived SI unit joule divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB093" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB093"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived SI unit joule divided by the SI base unit kilogram" ; + qudt:symbol "MJ/kg" ; + qudt:ucumCode "MJ.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "JK" ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule per Kilogram"@en . + +unit:MegaJ-PER-M2 + a qudt:Unit ; + dcterms:description "MegaJoule Per Square Meter ($MegaJ/m^2$) is a unit in the category of Energy density."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "MJ/m²" ; + qudt:ucumCode "MJ.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule per Square Meter"@en-US ; + rdfs:label "Megajoule per Square Metre"@en . + +unit:MegaJ-PER-M2-DAY + a qudt:Unit ; + dcterms:description "MegaJoule Per Square Meter Per Day (\\(MegaJ/m^2/day\\)) is a unit in the category of Energy density over time."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 11.57407407407407 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasQuantityKind quantitykind:Irradiance ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "MJ/(m²·d)" ; + qudt:ucumCode "MJ.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule Per Square Meter Per Day"@en-US ; + rdfs:label "Megajoule Per Square Metre Per Day"@en . + +unit:MegaJ-PER-M3 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAA212" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA212"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "MJ/m³" ; + qudt:ucumCode "MJ.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "JM" ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule per Cubic Meter"@en-US ; + rdfs:label "Megajoule per Cubic Metre"@en . + +unit:MegaJ-PER-SEC + a qudt:Unit ; + dcterms:description "quotient of the 1,000,000-fold of the derived SI unit joule divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB177" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB177"^^xsd:anyURI ; + qudt:plainTextDescription "quotient of the 1,000,000-fold of the derived SI unit joule divided by the SI base unit second" ; + qudt:symbol "MJ/s" ; + qudt:ucumCode "MJ.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D78" ; + rdfs:isDefinedBy ; + rdfs:label "Megajoule per Second"@en . + +unit:MegaK + a qudt:Unit ; + qudt:conversionMultiplier 1000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:CorrelatedColorTemperature ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:K ; + rdfs:isDefinedBy ; + rdfs:label "MegaK" . + +unit:MegaL + a qudt:Unit ; + dcterms:description "1 000 000-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB112" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB112"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000-fold of the unit litre" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:L ; + qudt:symbol "ML" ; + qudt:ucumCode "ML"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAL" ; + rdfs:isDefinedBy ; + rdfs:label "Megalitre"@en ; + rdfs:label "Megalitre"@en-US . + +unit:MegaLB_F + a qudt:Unit ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 4448221.8148411428 ; + qudt:conversionMultiplierSN 4.4482218148411428E6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pound-force"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pound-force?oldid=453191483"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:LB_F ; + qudt:symbol "Mlbf" ; + qudt:ucumCode "M[lbf_av]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mega Pound Force"@en . + +unit:MegaN + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA213" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA213"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit newton" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:N ; + qudt:symbol "MN" ; + qudt:ucumCode "MN"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B73" ; + rdfs:isDefinedBy ; + rdfs:label "Meganewton"@en . + +unit:MegaN-M + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit newton and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA214" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA214"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit newton and the SI base unit metre" ; + qudt:symbol "m·MN" ; + qudt:ucumCode "MN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B74" ; + rdfs:isDefinedBy ; + rdfs:label "Meganewton Meter"@en-US ; + rdfs:label "Meganewton Metre"@en . + +unit:MegaN-M-PER-M2 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaN ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB553" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB553"^^xsd:anyURI ; + qudt:symbol "m·MN/m²" ; + qudt:ucumCode "m.MN.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "meganewton metre per square metre" . + +unit:MegaOHM + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA198" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA198"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit ohm" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:OHM ; + qudt:symbol "MΩ" ; + qudt:ucumCode "MOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B75" ; + rdfs:isDefinedBy ; + rdfs:label "Megaohm"@en . + +unit:MegaOHM-KiloM + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit ohm and the 1,000-fold of the SI base unit metre" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:ResidualResistivity ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAB406" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB406"^^xsd:anyURI ; + qudt:symbol "MΩ·km" ; + qudt:ucumCode "MOhm.km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H88" ; + rdfs:isDefinedBy ; + rdfs:label "megaohm kilometre" . + +unit:MegaOHM-M + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit ohm and the SI unit metre" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA200" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA200"^^xsd:anyURI ; + qudt:symbol "m·MΩ" ; + qudt:ucumCode "m.MOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B76" ; + rdfs:isDefinedBy ; + rdfs:label "megaohm metre" . + +unit:MegaOHM-PER-BAR + a qudt:Unit ; + dcterms:description "1,000,000-fold of SI derived unit ohm per metrical non SI unit bar" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD881" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD881"^^xsd:anyURI ; + qudt:symbol "MΩ/bar" ; + qudt:ucumCode "MOhm.bar-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "megaohm per bar" . + +unit:MegaOHM-PER-K + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit ohm per SI base unit kelvin" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD877" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD877"^^xsd:anyURI ; + qudt:symbol "MΩ/K" ; + qudt:ucumCode "MOhm.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "megaohm per kelvin" . + +unit:MegaOHM-PER-KiloM + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit ohm divided by the 1,000-fold of the SI base unit metre."^^rdf:HTML ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA199" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA199"^^xsd:anyURI ; + qudt:symbol "MΩ/km" ; + qudt:ucumCode "MOhm.km-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H36" ; + rdfs:isDefinedBy ; + rdfs:label "megaohm per kilometre" . + +unit:MegaOHM-PER-M + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit ohm divided by the SI base unit metre" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA201" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA201"^^xsd:anyURI ; + qudt:symbol "MΩ/m" ; + qudt:ucumCode "MOhm.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H37" ; + rdfs:isDefinedBy ; + rdfs:label "megaohm per metre" . + +unit:MegaPA + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit pascal"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA215" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA215"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit pascal" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:PA ; + qudt:symbol "MPa" ; + qudt:ucumCode "MPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MPA" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal"@en . + +unit:MegaPA-L-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 1,000,000-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA218" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA218"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 1,000,000-fold of the SI derived unit pascal and the unit litre divided by the SI base unit second" ; + qudt:symbol "MPa·L/s" ; + qudt:ucumCode "MPa.L.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "MPa.L/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F97" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal Liter per Second"@en-US ; + rdfs:label "Megapascal Litre per Second"@en . + +unit:MegaPA-M0dot5 + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit Pascal Square Root Meter"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-0dot5I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 5 ; + qudt:hasUnit unit:M0dot ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:StressIntensityFactor ; + qudt:plainTextDescription "1,000,000-fold of the derived unit Pascal Square Root Meter" ; + qudt:symbol "MPa√m" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal Square Root Meter"@en-US ; + rdfs:label "Megapascal Square Root Metre"@en . + +unit:MegaPA-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 1,000,000-fold of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA219" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA219"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 1,000,000-fold of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "MPa·m³/s" ; + qudt:ucumCode "MPa.m3.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F98" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal Cubic Meter per Second"@en-US ; + rdfs:label "Megapascal Cubic Metre per Second"@en . + +unit:MegaPA-PER-BAR + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA217" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA217"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the unit bar" ; + qudt:symbol "MPa/bar" ; + qudt:ucumCode "MPa.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F05" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal per Bar"@en . + +unit:MegaPA-PER-K + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA216" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA216"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the SI base unit kelvin" ; + qudt:symbol "MPa/K" ; + qudt:ucumCode "MPa.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F85" ; + rdfs:isDefinedBy ; + rdfs:label "Megapascal per Kelvin"@en . + +unit:MegaPSI + a qudt:Unit ; + dcterms:description "Megapounds of force per square inch is a unit for pressure in the Anglo-American system of units." ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894757800.0 ; + qudt:conversionMultiplierSN 6.8947578E9 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:plainTextDescription "Megapounds of force per square inch is a unit for pressure in the Anglo-American system of units." ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:PSI ; + qudt:symbol "Mpsi" ; + qudt:ucumCode "[Mpsi]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MPSI"@en . + +unit:MegaS + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:S ; + qudt:symbol "MS" ; + rdfs:isDefinedBy ; + rdfs:label "MegaSiemens"@en . + +unit:MegaS-PER-M + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA220" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA220"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit siemens divided by the SI base unit metre" ; + qudt:symbol "MS/m" ; + qudt:ucumCode "MS.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B77" ; + rdfs:isDefinedBy ; + rdfs:label "Megasiemens per Meter"@en-US ; + rdfs:label "Megasiemens per Metre"@en . + +unit:MegaSEC + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit second" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Period ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAC698" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC698"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:SEC ; + qudt:symbol "Ms" ; + rdfs:isDefinedBy ; + rdfs:label "megasecond" . + +unit:MegaTOE + a qudt:Unit ; + dcterms:description """

The tonne of oil equivalent (toe) is a unit of energy: the amount of energy released by burning one tonne of crude oil, approximately 42 GJ (as different crude oils have different calorific values, the exact value of the toe is defined by convention; unfortunately there are several slightly different definitions as discussed below). The toe is sometimes used for large amounts of energy, as it can be more intuitive to visualise, say, the energy released by burning 1000 tonnes of oil than 42,000 billion joules (the SI unit of energy).

+

Multiples of the toe are used, in particular the megatoe (Mtoe, one million toe) and the gigatoe (Gtoe, one billion toe).

"""^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41868000000000000.0 ; + qudt:conversionMultiplierSN 4.1868E16 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne_of_oil_equivalent"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:TOE ; + qudt:symbol "Mtoe" ; + rdfs:isDefinedBy ; + rdfs:label "Megaton of Oil Equivalent"@en . + +unit:MegaTON + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit ton" ; + qudt:conversionMultiplier 907184740.0 ; + qudt:conversionMultiplierSN 9.0718474E8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:TON ; + qudt:symbol "Mtn" ; + rdfs:isDefinedBy ; + rdfs:label "megaton" . + +unit:MegaTONNE + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit tonne" ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB833" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB833"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:TONNE ; + qudt:symbol "Mt" ; + rdfs:isDefinedBy ; + rdfs:label "megatonne" . + +unit:MegaTONNE-PER-YR + a qudt:Unit ; + dcterms:description "1,000,000,000-fold of the SI base unit kilogram divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 31.68808781 ; + qudt:conversionMultiplierSN 3.168808781E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaTONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:plainTextDescription "1,000,000 metric tonne divided by the unit year with 365 days" ; + qudt:symbol "Mt/a" ; + qudt:ucumCode "Mt/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megatonne per Year"@en ; + rdfs:label "Megatonne pro Jahr"@de ; + rdfs:label "Mégatonne par An"@fr . + +unit:MegaV + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit volt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAA221" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA221"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit volt" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:V ; + qudt:symbol "MV" ; + qudt:ucumCode "MV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B78" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt"@en . + +unit:MegaV-A + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ; + dcterms:isReplacedBy unit:MegaVA ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:iec61360Code "0112/2///62720#UAA222" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA222"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere" ; + qudt:symbol "MV·A" ; + qudt:ucumCode "MV.A"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MVA" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere"@en . + +unit:MegaV-A-HR + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:MegaVA-HR ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaV ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour" ; + qudt:symbol "MV·A·h" ; + qudt:ucumCode "MV.A.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Hour"@en . + +unit:MegaV-A_Reactive + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit volt ampere reactive"^^rdf:HTML ; + dcterms:isReplacedBy unit:MegaVAR ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaV ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAB199" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB199"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the unit volt ampere reactive" ; + qudt:symbol "MV·A{Reactive}" ; + qudt:ucumCode "MV.A{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAR" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Reactive"@en . + +unit:MegaV-A_Reactive-HR + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:MegaVAR-HR ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaV ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB198" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB198"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "MV·A{Reactive}·h" ; + qudt:ucumCode "MV.A{reactive}.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAH" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Reactive Hour"@en . + +unit:MegaV-PER-M + a qudt:Unit ; + dcterms:description "1,000,000-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA223" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA223"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the SI derived unit volt divided by the SI base unit metre" ; + qudt:symbol "MV/m" ; + qudt:ucumCode "MV.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B79" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt per Meter"@en-US ; + rdfs:label "Megavolt per Metre"@en . + +unit:MegaVA + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:iec61360Code "0112/2///62720#UAA222" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA222"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:VA ; + qudt:symbol "MVA" ; + qudt:ucumCode "MVA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MVA" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere"@en . + +unit:MegaVA-HR + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaVA ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour" ; + qudt:symbol "MVA·h" ; + qudt:ucumCode "MVA.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Hour"@en . + +unit:MegaVAR + a qudt:Unit ; + dcterms:description "1,000,000-fold of the unit volt ampere reactive"^^rdf:HTML ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAB199" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB199"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the unit volt ampere reactive" ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:VAR ; + qudt:symbol "MVA{Reactive}" ; + qudt:ucumCode "MVA{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAR" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Reactive"@en . + +unit:MegaVAR-HR + a qudt:Unit ; + dcterms:description "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaVAR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB198" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB198"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "MVA{Reactive}·h" ; + qudt:ucumCode "MVA{reactive}.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAH" ; + rdfs:isDefinedBy ; + rdfs:label "Megavolt Ampere Reactive Hour"@en . + +unit:MegaW + a qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit watt" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA224" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA224"^^xsd:anyURI ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:W ; + qudt:symbol "MW" ; + qudt:ucumCode "MW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MAW" ; + rdfs:isDefinedBy ; + rdfs:label "MegaW"@en . + +unit:MegaW-HR + a qudt:Unit ; + dcterms:description "1,000,000-fold of the product of the SI derived unit watt and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000000.0 ; + qudt:conversionMultiplierSN 3.6E9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MegaW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA225" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA225"^^xsd:anyURI ; + qudt:plainTextDescription "1 000 000-fold of the product of the SI derived unit watt and the unit hour" ; + qudt:symbol "MW·h" ; + qudt:ucumCode "MW.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MWH" ; + rdfs:isDefinedBy ; + rdfs:label "Megawatt Hour"@en . + +unit:MegaYR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "1,000,000-fold of the derived unit year."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 31557600000000.0 ; + qudt:conversionMultiplierSN 3.15576E13 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "https://en.wiktionary.org/wiki/megayear"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000-fold of the derived unit year." ; + qudt:prefix prefix:Mega ; + qudt:scalingOf unit:YR ; + qudt:symbol "Ma" ; + qudt:ucumCode "Ma"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Million Years"@en ; + skos:altLabel "Ma" ; + skos:altLabel "Mega Year"@en ; + skos:altLabel "megannum"@la . + +unit:MicroA + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA057" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA057"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu A$"^^qudt:LatexString ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:A ; + qudt:symbol "μA" ; + qudt:ucumCode "uA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B84" ; + rdfs:isDefinedBy ; + rdfs:label "microampere"@en . + +unit:MicroA-PER-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroA ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAD898" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD898"^^xsd:anyURI ; + qudt:symbol "μA/K" ; + qudt:ucumCode "uA.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microampere per kelvin" . + +unit:MicroATM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.101325 ; + qudt:conversionMultiplierSN 1.01325E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:ATM ; + qudt:symbol "μatm" ; + qudt:ucumCode "uatm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microatmospheres"@en . + +unit:MicroBAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB089" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB089"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the unit bar" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:BAR ; + qudt:symbol "μbar" ; + qudt:ucumCode "ubar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B85" ; + rdfs:isDefinedBy ; + rdfs:label "Microbar"@en . + +unit:MicroBQ + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit becquerel"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA058" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA058"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit becquerel" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:BQ ; + qudt:symbol "μBq" ; + qudt:ucumCode "uBq"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H08" ; + rdfs:isDefinedBy ; + rdfs:label "Microbecquerel"@en . + +unit:MicroBQ-PER-KiloGM + a qudt:Unit ; + dcterms:description "One radioactive disintegration per hundred thousand seconds from an SI standard unit of mass of sample."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroBQ ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:symbol "μBq/kg" ; + qudt:ucumCode "uBq.kg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microbecquerels per kilogram"@en . + +unit:MicroBQ-PER-L + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroBQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:ActivityConcentration ; + qudt:symbol "μBq/L" ; + qudt:ucumCode "uBq.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "uBq/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microbecquerels per litre"@en . + +unit:MicroC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A MicroCoulomb is $10^{-6} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA059" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA059"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:C ; + qudt:symbol "μC" ; + qudt:ucumCode "uC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B86" ; + rdfs:isDefinedBy ; + rdfs:label "MicroCoulomb"@en . + +unit:MicroC-PER-M2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:iec61360Code "0112/2///62720#UAA060" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA060"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "μC/m²" ; + qudt:ucumCode "uC.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B88" ; + rdfs:isDefinedBy ; + rdfs:label "Microcoulomb per Square Meter"@en-US ; + rdfs:label "Microcoulomb per Square Metre"@en . + +unit:MicroC-PER-M3 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeDensity ; + qudt:iec61360Code "0112/2///62720#UAA061" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA061"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "μC/m³" ; + qudt:ucumCode "uC.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B87" ; + rdfs:isDefinedBy ; + rdfs:label "Microcoulomb per Cubic Meter"@en-US ; + rdfs:label "Microcoulomb per Cubic Metre"@en . + +unit:MicroCi + a qudt:Unit ; + dcterms:description "Another commonly used measure of radioactivity, the microcurie: $1 \\micro Ci = 3.7 \\times 10 disintegrations per second = 2.22 \\times 10 disintegrations per minute$. A radiotherapy machine may have roughly 1000 Ci of a radioisotope such as caesium-137 or cobalt-60. This quantity of radioactivity can produce serious health effects with only a few minutes of close-range, un-shielded exposure. The typical human body contains roughly $0.1\\micro Ci$ of naturally occurring potassium-40. "^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 37000.0 ; + qudt:conversionMultiplierSN 3.7E4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA062" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA062"^^xsd:anyURI ; + qudt:symbol "μCi" ; + qudt:ucumCode "uCi"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M5" ; + rdfs:isDefinedBy ; + rdfs:label "MicroCurie"@en . + +unit:MicroFARAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The \"microfarad\" (symbolized $\\mu F$) is a unit of capacitance, equivalent to 0.000001 (10 to the -6th power) farad. The microfarad is a moderate unit of capacitance. In utility alternating-current (AC) and audio-frequency (AF) circuits, capacitors with values on the order of $1 \\mu F$ or more are common. At radio frequencies (RF), a smaller unit, the picofarad (pF), is often used."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA063" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA063"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "μF" ; + qudt:ucumCode "uF"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4O" ; + rdfs:isDefinedBy ; + rdfs:label "microfarad"@en . + +unit:MicroFARAD-PER-KiloM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit farad divided by the 1,000-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroFARAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA064" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA064"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the 1,000-fold of the SI base unit metre" ; + qudt:symbol "μF/km" ; + qudt:ucumCode "uF.km-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H28" ; + rdfs:isDefinedBy ; + rdfs:label "Microfarad per Kilometer"@en-US ; + rdfs:label "Microfarad per Kilometre"@en . + +unit:MicroFARAD-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroFARAD ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA065" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA065"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the SI base unit metre" ; + qudt:symbol "μF/m" ; + qudt:ucumCode "uF.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B89" ; + rdfs:isDefinedBy ; + rdfs:label "Microfarad per Meter"@en-US ; + rdfs:label "Microfarad per Metre"@en . + +unit:MicroG + a qudt:Unit ; + dcterms:description "\"Microgravity\" is a unit for 'Linear Acceleration' expressed as $microG$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00000980665 ; + qudt:conversionMultiplierSN 9.80665E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:latexSymbol "$\\mu G$"^^qudt:LatexString ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:G ; + qudt:symbol "μG" ; + qudt:ucumCode "u[g]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgravity"@en . + +unit:MicroGAL-PER-M + a qudt:Unit ; + dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a distance of one metre."@en ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "µGal/m" ; + qudt:ucumCode "uGal.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "uGal/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MicroGals per metre"@en . + +unit:MicroGM + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA082" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA082"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:GM ; + qudt:symbol "μg" ; + qudt:ucumCode "ug"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MC" ; + rdfs:isDefinedBy ; + rdfs:label "Microgram"@en . + +unit:MicroGM-PER-CentiM2 + a qudt:Unit ; + dcterms:description "A unit of mass per area, equivalent to 0.01 grammes per square metre"^^rdf:HTML ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "A unit of mass per area, equivalent to 0.01 grammes per square metre" ; + qudt:symbol "μg/cm²" ; + qudt:ucumCode "u[g].cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "ug.cm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per square centimetre"@en . + +unit:MicroGM-PER-CentiM2-WK + a qudt:Unit ; + dcterms:description "A rate of change of 1e-9 of the SI unit of mass over 0.00001 of the SI unit of area in a period of one calendar week."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000016534392 ; + qudt:conversionMultiplierSN 1.6534392E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:WK ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "μg/(cm²·wk)" ; + qudt:ucumCode "µg.cm-2.wk-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per square centimeter week"@en-US ; + rdfs:label "Micrograms per square centimetre week"@en . + +unit:MicroGM-PER-DeciL + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DeciL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:plainTextDescription "0.0000000001-fold of the SI base unit kilogram divided by the unit decilitre" ; + qudt:symbol "μg/dL" ; + qudt:ucumCode "ug.dL-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/dL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Deciliter"@en-US ; + rdfs:label "Microgram per Decilitre"@en . + +unit:MicroGM-PER-GM + a qudt:Unit ; + dcterms:description "One part per 10**6 (million) by mass of the measurand in the matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "μg/g" ; + qudt:ucumCode "ug.g-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per gram"@en . + +unit:MicroGM-PER-GM-DAY + a qudt:Unit ; + dcterms:description "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of SI base unit kilogram per day "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassSpecificBiogeochemicalRate ; + qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of the SI base unit kilogram per day (8640 seconds)" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "μg/(g·d)" ; + qudt:ucumCode "ug.g-1.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/g/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Gram per Day"@en . + +unit:MicroGM-PER-GM-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "0.0000000001-fold of the SI base unit kilogram divided by 0.0001-fold of the SI base unit kilogram over a period of 1 hour "@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassSpecificBiogeochemicalRate ; + qudt:plainTextDescription "0.0000000001-fold of the SI base unit kilogram divided by 0.0001-fold of the SI base unit kilogram over a period of 1 hour " ; + qudt:symbol "μg/(g·h)" ; + qudt:ucumCode "ug.g-1.hr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per gram per hour"@en . + +unit:MicroGM-PER-IN2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Microgram Per Square Inch (µg/in²) is a unit in the category of surface density."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000155 ; + qudt:conversionMultiplierSN 1.55E-6 ; + qudt:expression "$µg/in^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:symbol "μg/in²" ; + qudt:ucumCode "µg.in-2"^^qudt:UCUMcs ; + qudt:ucumCode "µg/in2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Square Inch"@en ; + rdfs:label "Microgram per Square Inch"@en-US . + +unit:MicroGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA083" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA083"^^xsd:anyURI ; + qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "μg/kg" ; + qudt:ucumCode "ug.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J33" ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Kilogram"@en . + +unit:MicroGM-PER-L + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA084" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA084"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram divided by the unit litre" ; + qudt:symbol "μg/L" ; + qudt:ucumCode "ug.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H29" ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Liter"@en-US ; + rdfs:label "Microgram per Liter"@nl ; + rdfs:label "Microgram per Litre"@en . + +unit:MicroGM-PER-L-DAY + a qudt:Unit ; + dcterms:description "A rate of change of mass of a measurand equivalent to 10^-9 kilogram (the SI unit of mass) per litre volume of matrix over a period of 1 day."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407407407407 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassConcentrationRateOfChange ; + qudt:symbol "μg/(L·d)" ; + qudt:ucumCode "ug.L-1.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per litre per hour"@en . + +unit:MicroGM-PER-L-HR + a qudt:Unit ; + dcterms:description "A rate of change of mass of a measurand equivalent to 10^-9 kilogram (the SI unit of mass) per litre volume of matrix over a period of 1 hour."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μg/(L·h)" ; + qudt:ucumCode "ug.L-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per litre hour"@en . + +unit:MicroGM-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-14 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "μg/(m²·d)" ; + qudt:ucumCode "ug.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per square metre day"@en . + +unit:MicroGM-PER-M3 + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA085" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA085"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "μg/m³" ; + qudt:ucumCode "ug.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "ug/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GQ" ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Cubic Meter"@en-US ; + rdfs:label "Microgram per Cubic Metre"@en . + +unit:MicroGM-PER-M3-BAR + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.00000000000001 ; + qudt:conversionMultiplierSN 1.0E-14 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA087" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA087"^^xsd:anyURI ; + qudt:symbol "μg/(m³·bar)" ; + qudt:ucumCode "ug.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J35" ; + rdfs:isDefinedBy ; + rdfs:label "microgram per cubic metre bar" . + +unit:MicroGM-PER-M3-HR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-13 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μg/(m³·h)" ; + qudt:ucumCode "ug.m-3.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrograms per cubic metre hour"@en . + +unit:MicroGM-PER-M3-K + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA086" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA086"^^xsd:anyURI ; + qudt:symbol "μg/(m³·K)" ; + qudt:ucumCode "ug.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J34" ; + rdfs:isDefinedBy ; + rdfs:label "microgram per cubic metre kelvin" . + +unit:MicroGM-PER-MilliGM + a qudt:Unit ; + dcterms:description "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.000001-fold of SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.000001-fold of the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "μg/mg" ; + qudt:ucumCode "ug.mg-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/mg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per Milligram"@en . + +unit:MicroGM-PER-MilliL + a qudt:Unit ; + dcterms:description "One 10**6 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:plainTextDescription "0.000000000001-fold of the SI base unit kilogram divided by the unit microlitre" ; + qudt:symbol "μg/mL" ; + qudt:ucumCode "ug.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "ug/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microgram per MilliLitre"@en ; + rdfs:label "Microgram per Milliliter"@en-US . + +unit:MicroGRAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "0.000001 fold of the SI unit of radiation dose. Radiation carries energy, and when it is absorbed by matter the matter receives this energy. The dose is the amount of energy deposited per unit of mass. One gray is defined to be the dose of one joule of energy absorbed per kilogram of matter, or 100 rad. The unit is named for the British physician L. Harold Gray (1905-1965), an authority on the use of radiation in the treatment of cancer."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Grey"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Grey?oldid=494774160"^^xsd:anyURI ; + qudt:omUnit ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:GRAY ; + qudt:siUnitsExpression "J/kg" ; + qudt:symbol "μGy" ; + qudt:ucumCode "uGy"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MicroGray"@en . + +unit:MicroGRAY-PER-HR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit gray divided by the unit hour" ; + qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGRAY ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB478" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB478"^^xsd:anyURI ; + qudt:symbol "μGy/h" ; + qudt:ucumCode "uGy.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P63" ; + rdfs:isDefinedBy ; + rdfs:label "microgray per hour" . + +unit:MicroGRAY-PER-MIN + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit gray divided by the unit minute" ; + qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB474" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB474"^^xsd:anyURI ; + qudt:symbol "μGy/min" ; + qudt:ucumCode "uGy.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P59" ; + rdfs:isDefinedBy ; + rdfs:label "microgray per minute" . + +unit:MicroGRAY-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit gray divided by the SI base unit second" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroGRAY ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB299" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB299"^^xsd:anyURI ; + qudt:symbol "μGy/s" ; + qudt:ucumCode "uGy.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P55" ; + rdfs:isDefinedBy ; + rdfs:label "microgray per second" . + +unit:MicroH + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI derived unit for inductance is the henry. 1 henry is equal to 1000000 microhenry. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:iec61360Code "0112/2///62720#UAA066" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA066"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:H ; + qudt:symbol "μH" ; + qudt:ucumCode "uH"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B90" ; + rdfs:isDefinedBy ; + rdfs:label "Microhenry"@en . + +unit:MicroH-PER-KiloOHM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit henry divided by the 1,000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA068" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA068"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the 1,000-fold of the SI derived unit ohm" ; + qudt:symbol "μH/kΩ" ; + qudt:ucumCode "uH.kOhm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G98" ; + rdfs:isDefinedBy ; + rdfs:label "Microhenry per Kiloohm"@en . + +unit:MicroH-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit henry divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ; + qudt:hasQuantityKind quantitykind:Permeability ; + qudt:iec61360Code "0112/2///62720#UAA069" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA069"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the SI base unit metre" ; + qudt:symbol "μH/m" ; + qudt:ucumCode "uH.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B91" ; + rdfs:isDefinedBy ; + rdfs:label "Microhenry per Meter"@en-US ; + rdfs:label "Microhenry per Metre"@en . + +unit:MicroH-PER-OHM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit henry divided by the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA067" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA067"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the SI derived unit ohm" ; + qudt:symbol "μH/Ω" ; + qudt:ucumCode "uH.Ohm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G99" ; + rdfs:isDefinedBy ; + rdfs:label "Microhenry per Ohm"@en . + +unit:MicroIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Microinch\" is an Imperial unit for 'Length' expressed as $in^{-6}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000000254 ; + qudt:conversionMultiplierSN 2.54E-8 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Distance ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA840" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA840"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu in$"^^qudt:LatexString ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:IN ; + qudt:symbol "μin" ; + qudt:ucumCode "u[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M7" ; + rdfs:isDefinedBy ; + rdfs:label "Microinch"@en . + +unit:MicroJ + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB740" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB740"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit joule" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:J ; + qudt:symbol "μJ" ; + rdfs:isDefinedBy ; + rdfs:label "Micro Joule"@en ; + rdfs:label "Micro Joule"@en-US ; + rdfs:label "Mikrojoule "@de . + +unit:MicroJ-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB510" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB510"^^xsd:anyURI ; + qudt:symbol "μJ/s" ; + qudt:ucumCode "uJ.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microjoule per second" . + +unit:MicroKAT + a qudt:Unit ; + qudt:conversionMultiplier 0.000001 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:KAT ; + rdfs:isDefinedBy ; + rdfs:label "MicroKAT" . + +unit:MicroKAT-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroKAT ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. " ; + qudt:symbol "µkat/L" ; + qudt:ucumCode "ukat/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microkatal per Liter"@en-US ; + rdfs:label "Microkatal per Litre"@en . + +unit:MicroL + a qudt:Unit ; + dcterms:description "0.000001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA088" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA088"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the unit litre" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:L ; + qudt:symbol "μL" ; + qudt:ucumCode "uL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4G" ; + rdfs:isDefinedBy ; + rdfs:label "Microlitre"@en ; + rdfs:label "Microlitre"@en-US . + +unit:MicroL-PER-L + a qudt:Unit ; + dcterms:description "volume ratio as 0.000001-fold of the unit litre divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA089" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA089"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio as 0.000001-fold of the unit litre divided by the unit litre" ; + qudt:symbol "μL/L" ; + qudt:ucumCode "uL.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "uL/L"^^qudt:UCUMcs ; + qudt:udunitsCode "ppmv" ; + qudt:uneceCommonCode "J36" ; + rdfs:isDefinedBy ; + rdfs:label "Microlitre per Liter"@en-US ; + rdfs:label "Microlitre per Litre"@en . + +unit:MicroM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Micrometer\" is a unit for 'Length' expressed as $microm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Micrometer"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA090" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Micrometer?oldid=491270437"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA090"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:M ; + qudt:symbol "μm" ; + qudt:ucumCode "um"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4H" ; + rdfs:isDefinedBy ; + rdfs:label "Micrometer"@en-US ; + rdfs:label "Micrometre"@en . + +unit:MicroM-PER-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA091" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA091"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit metre divided by the SI base unit kelvin" ; + qudt:symbol "μm/K" ; + qudt:ucumCode "um.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "um/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F50" ; + rdfs:isDefinedBy ; + rdfs:label "Micrometer per Kelvin"@en-US ; + rdfs:label "Micrometre per Kelvin"@en . + +unit:MicroM-PER-L-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-8 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:Flux ; + qudt:hasQuantityKind quantitykind:ParticleFluenceRate ; + qudt:symbol "μm/(L·d)" ; + qudt:ucumCode "um.L-1.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per litre day"@en . + +unit:MicroM-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit metre divided by the SI base unit metre" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Gradient ; + qudt:iec61360Code "0112/2///62720#UAC002" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC002"^^xsd:anyURI ; + qudt:symbol "μm/m" ; + qudt:ucumCode "um.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "micrometre per metre" . + +unit:MicroM-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Micrometre per minute is a derived unit of both speed (scalar) and velocity (vector quantity which specifies both magnitude and a specific direction), defined by distance in micronmeters divided by time in minutes."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000166666667 ; + qudt:conversionMultiplierSN 1.66666667E-8 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:expression "$\\frac{\\mu m}{min}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "μm/min" ; + qudt:ucumCode "um.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "um/min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrometer per Minute"@en-US ; + rdfs:label "micrometre per minute"@en ; + skos:altLabel "Micron per Minute"@en ; + skos:altLabel "micron per minute"@en . + +unit:MicroM-PER-MilliL + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μm/mL" ; + qudt:ucumCode "um2.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "um2/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square microns per millilitre"@en . + +unit:MicroM-PER-N + a qudt:Unit ; + dcterms:description "Micro metres measured per Newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:LinearCompressibility ; + qudt:plainTextDescription "Micro metres measured per Newton" ; + qudt:symbol "μm/N" ; + qudt:ucumCode "um.N-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micro meter per Newton"@en-US ; + rdfs:label "Micro metre per Newton"@en ; + rdfs:label "Mikrometer pro Newton"@de . + +unit:MicroM-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Micrometre per second is anderived unit of both speed (scalar) and velocity (vector quantity which specifies both magnitude and a specific direction), defined by distance in metres divided by time in seconds."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:expression "$\\frac{\\mu m}{s}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:symbol "μm/s" ; + qudt:ucumCode "um.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "um/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micrometer per Second"@en-US ; + rdfs:label "micrometre per second"@en . + +unit:MicroM2 + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA092" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA092"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "μm²" ; + qudt:ucumCode "um2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H30" ; + rdfs:isDefinedBy ; + rdfs:label "Square Micrometer"@en-US ; + rdfs:label "Square Micrometre"@en . + +unit:MicroM3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:symbol "μm³" ; + qudt:ucumCode "um3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic micrometres (microns)"@en . + +unit:MicroM3-PER-M3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:symbol "μm³/m³" ; + qudt:ucumCode "um3.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic microns per cubic metre"@en . + +unit:MicroM3-PER-MilliL + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:qkdvDenominator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L3I0M0H0T0D0 ; + qudt:symbol "μm³/mL" ; + qudt:ucumCode "um3.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "um3/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic microns per millilitre"@en . + +unit:MicroMHO + a qudt:Unit ; + dcterms:description "0.000001-fold of the obsolete unit mho of the electric conductance"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAB201" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB201"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the obsolete unit mho of the electric conductance" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:MHO ; + qudt:symbol "µ℧" ; + qudt:ucumCode "umho"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NR" ; + rdfs:isDefinedBy ; + rdfs:label "Micromho"@en . + +unit:MicroMOL + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAA093" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA093"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit mol" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:MOL ; + qudt:symbol "μmol" ; + qudt:ucumCode "umol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FH" ; + rdfs:isDefinedBy ; + rdfs:label "Micromole"@en . + +unit:MicroMOL-PER-GM + a qudt:Unit ; + dcterms:description "Micromole Per Gram ($umol/g$) is a unit of Molality"^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:plainTextDescription "0.000001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "μmol/g" ; + qudt:ucumCode "umol.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per gram"@en . + +unit:MicroMOL-PER-GM-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-7 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μmol/(g·h)" ; + qudt:ucumCode "umol.g-1.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/g/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per gram hour"@en . + +unit:MicroMOL-PER-GM-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μmol/(g·s)" ; + qudt:ucumCode "umol.g-1.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/g/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per gram second"@en . + +unit:MicroMOL-PER-KiloGM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:symbol "μmol/kg" ; + qudt:ucumCode "umol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per kilogram"@en . + +unit:MicroMOL-PER-L + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:symbol "μmol/L" ; + qudt:ucumCode "umol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per litre"@en . + +unit:MicroMOL-PER-L-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-7 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "μmol/(L·h)" ; + qudt:ucumCode "umol.L-1.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/L/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per litre hour"@en . + +unit:MicroMOL-PER-M2 + a qudt:Unit ; + dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μmol/m²" ; + qudt:ucumCode "umol.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "umol/m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per square metre"@en . + +unit:MicroMOL-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-11 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "μmol/(m²·d)" ; + qudt:ucumCode "umol.m-2.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/m2/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per square metre day"@en . + +unit:MicroMOL-PER-M2-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-10 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "μmol/(m²·h)" ; + qudt:ucumCode "umol.m-2.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/m2/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per square metre hour"@en . + +unit:MicroMOL-PER-M2-SEC + a qudt:Unit ; + dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time. This term is based on the number of photons in a certain waveband incident per unit time (s) on a unit area (m2) divided by the Avogadro constant (6.022 x 1023 mol-1). It is used commonly to describe PAR in the 400-700 nm waveband. Definition Source: Thimijan, Richard W., and Royal D. Heins. 1982. Photometric, Radiometric, and Quantum Light Units of Measure: A Review of Procedures for Interconversion. HortScience 18:818-822."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "μmol/(m²·s)" ; + qudt:ucumCode "umol.m-2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/m2/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per square metre second"@en . + +unit:MicroMOL-PER-M2-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time squared."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:plainTextDescription "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time squared." ; + qudt:symbol "μmol/(m²·s²)" ; + qudt:ucumCode "umol.m-2.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "micromole per square meter per square second"@en-US ; + rdfs:label "micromole per square metre per square second"@en . + +unit:MicroMOL-PER-MOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:symbol "μmol/mol" ; + qudt:ucumCode "umol.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per mole"@en . + +unit:MicroMOL-PER-MicroMOL-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "μmol/(μmol·d)" ; + qudt:ucumCode "umol.umol-1.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/umol/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromole per micromole of biomass day"@en . + +unit:MicroMOL-PER-SEC + a qudt:Unit ; + dcterms:description " This unit is used commonly to describe Photosynthetic Photon Flux (PPF) - the total number of photons emitted by a light source each second within the PAR wavelength range. "@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFlux ; + qudt:symbol "μmol/s" ; + qudt:ucumCode "umol.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "umol/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Micromoles per second"@en . + +unit:MicroMOL2-PER-M4-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "NEON variance for a molar flux density, (uM/m^2/s)^2 ."@en ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:hasDimensionVector qkdv:A2E0L-4I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -4 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFluxDensityVariance_NEON ; + qudt:plainTextDescription "NEON variance for a molar flux density, (uM/m^2/s)^2 ."@en ; + qudt:symbol "μmol²/(m⁴·s²)" ; + qudt:ucumCode "umol2.m-4.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "(micromole per metre squared per second) squared"@en ; + rdfs:label "(micromole per metre squared per second) squared"@en-US . + +unit:MicroN + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA070" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA070"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit newton" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:N ; + qudt:symbol "μN" ; + qudt:ucumCode "uN"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B92" ; + rdfs:isDefinedBy ; + rdfs:label "Micronewton"@en . + +unit:MicroN-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the product out of the derived SI newton and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA071" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA071"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the product out of the derived SI newton and the SI base unit metre" ; + qudt:symbol "m·μN" ; + qudt:ucumCode "uN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B93" ; + rdfs:isDefinedBy ; + rdfs:label "Micronewton Meter"@en-US ; + rdfs:label "Micronewton Metre"@en . + +unit:MicroN-M-PER-M2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB548" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB548"^^xsd:anyURI ; + qudt:symbol "m·μN/m²" ; + qudt:ucumCode "m.uN.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "micronewton metre per square metre" . + +unit:MicroOHM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA055" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA055"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit ohm" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:OHM ; + qudt:symbol "μΩ" ; + qudt:ucumCode "uOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B94" ; + rdfs:isDefinedBy ; + rdfs:label "Microohm"@en . + +unit:MicroOHM-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the product out of the SI derived unit ohm and the SI base unit metre" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA056" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA056"^^xsd:anyURI ; + qudt:symbol "m·μΩ" ; + qudt:ucumCode "m.uOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B95" ; + rdfs:isDefinedBy ; + rdfs:label "microohm metre" . + +unit:MicroPA + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit pascal"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA073" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA073"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit pascal" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:PA ; + qudt:symbol "μPa" ; + qudt:ucumCode "uPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B96" ; + rdfs:isDefinedBy ; + rdfs:label "Micropascal"@en . + +unit:MicroPOISE + a qudt:Unit ; + dcterms:description "0.000001-fold of the CGS unit of the dynamic viscosity poise"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA072" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA072"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:POISE ; + qudt:symbol "μP" ; + qudt:ucumCode "uP"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J32" ; + rdfs:isDefinedBy ; + rdfs:label "Micropoise"@en . + +unit:MicroRAD + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:guidance "

See NIST section SP811 section7.10

"^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA094" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA094"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:RAD ; + qudt:symbol "µrad" ; + qudt:ucumCode "urad"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B97" ; + rdfs:isDefinedBy ; + rdfs:label "microradian"@en . + +unit:MicroS + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit siemens"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAA074" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA074"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit siemens" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:S ; + qudt:symbol "μS" ; + qudt:ucumCode "uS"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B99" ; + rdfs:isDefinedBy ; + rdfs:label "Microsiemens"@en . + +unit:MicroS-PER-CentiM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:expression "\\(uS-cm^{-1}\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroS ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:hasQuantityKind quantitykind:ElectrolyticConductivity ; + qudt:iec61360Code "0112/2///62720#UAA075" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA075"^^xsd:anyURI ; + qudt:plainTextDescription "Unit of electrical conductivity equal to 0.000001-fold of the SI derived unit siemens divided by 0,01-fold of the SI base unit meter" ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:symbol "μS/cm" ; + qudt:ucumCode "uS.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "uS/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G42" ; + rdfs:isDefinedBy ; + rdfs:label "Microsiemens per Centimeter"@en-US ; + rdfs:label "Microsiemens per Centimetre"@en . + +unit:MicroS-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA076" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA076"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ; + qudt:symbol "μS/m" ; + qudt:ucumCode "uS.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G43" ; + rdfs:isDefinedBy ; + rdfs:label "Microsiemens per Meter"@en-US ; + rdfs:label "Microsiemens per Metre"@en . + +unit:MicroS2-PER-CentiM2 + a qudt:Unit ; + dcterms:description "Conductivity variance, or (MicroS-PER-CentiM)2" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:expression "\\(uS{2}-cm^{-2}\\)"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E4L-6I0M-2H0T6D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MicroS ; + ] ; + qudt:hasQuantityKind quantitykind:ConductivityVariance_NEON ; + qudt:plainTextDescription "Conductivity variance, or (MicroS-PER-CentiM)2" ; + qudt:symbol "uS2/cm2" ; + qudt:ucumCode "uS2.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "uS2/cm2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Microsiemen Squared Per Centimeter Squared"@en-US ; + rdfs:label "Microsiemen Squared Per Centimetre Squared"@en . + +unit:MicroSEC + a qudt:Unit ; + dcterms:description "\"Microsecond\" is a unit for 'Time' expressed as $microsec$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA095" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA095"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:SEC ; + qudt:symbol "µs" ; + qudt:ucumCode "us"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B98" ; + rdfs:isDefinedBy ; + rdfs:label "microsecond"@en . + +unit:MicroSV + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Although the sievert has the same dimensions as the gray (i.e. joules per kilogram), it measures a different quantity. To avoid any risk of confusion between the absorbed dose and the equivalent dose, the corresponding special units, namely the gray instead of the joule per kilogram for absorbed dose and the sievert instead of the joule per kilogram for the dose equivalent, should be used. 0.000001-fold of the SI derived unit sievert."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ; + qudt:omUnit ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:SV ; + qudt:siUnitsExpression "J/kg" ; + qudt:symbol "µSv" ; + qudt:ucumCode "uSv"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MicroSievert"@en . + +unit:MicroSV-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "0.000001-fold of the derived SI unit sievert divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277778 ; + qudt:conversionMultiplierSN 2.77778E-10 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:iec61360Code "0112/2///62720#UAB466" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB466"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siUnitsExpression "J/kg" ; + qudt:symbol "µSv/h" ; + qudt:ucumCode "uSv.h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P72" ; + rdfs:isDefinedBy ; + rdfs:label "MicroSievert per hour"@en . + +unit:MicroSV-PER-MIN + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit sievert divided by the unit minute" ; + qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB470" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB470"^^xsd:anyURI ; + qudt:symbol "µSv/min" ; + qudt:ucumCode "uSv.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P76" ; + rdfs:isDefinedBy ; + rdfs:label "microsievert per minute" . + +unit:MicroSV-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit sievert devided by the SI base unit second" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB303" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB303"^^xsd:anyURI ; + qudt:symbol "µSv/s" ; + qudt:ucumCode "uSv.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P67" ; + rdfs:isDefinedBy ; + rdfs:label "microsievert per second" . + +unit:MicroT + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit tesla"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAA077" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA077"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit tesla" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:T ; + qudt:symbol "µT" ; + qudt:ucumCode "uT"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D81" ; + rdfs:isDefinedBy ; + rdfs:label "Microtesla"@en . + +unit:MicroTORR + a qudt:Unit ; + dcterms:description "\"MicroTorr\" is a unit for 'Force Per Area' expressed as $microtorr$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.000133322 ; + qudt:conversionMultiplierSN 1.33322E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:TORR ; + qudt:symbol "µTorr" ; + rdfs:isDefinedBy ; + rdfs:label "MicroTorr"@en . + +unit:MicroV + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit volt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAA078" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA078"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit volt" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:V ; + qudt:symbol "µV" ; + qudt:ucumCode "uV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D82" ; + rdfs:isDefinedBy ; + rdfs:label "Microvolt"@en . + +unit:MicroV-A + a qudt:Unit ; + dcterms:description "0.000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:MicroVA ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB532" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB532"^^xsd:anyURI ; + qudt:symbol "µV·A" ; + qudt:ucumCode "uV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere" . + +unit:MicroV-A-PER-K + a qudt:Unit ; + dcterms:description "product of the 0.000001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:MicroVA-PER-K ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroV ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD907" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD907"^^xsd:anyURI ; + qudt:symbol "µV·A/K" ; + qudt:ucumCode "uV.A.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere per kelvin" . + +unit:MicroV-A_Reactive + a qudt:Unit ; + dcterms:description "0.000001 of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:MicroVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroV ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC506" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC506"^^xsd:anyURI ; + qudt:symbol "µV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere reactive" . + +unit:MicroV-A_Reactive-PER-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:MicroVAR-PER-K ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD903" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD903"^^xsd:anyURI ; + qudt:symbol "µvar/K" ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere reactive per kelvin" . + +unit:MicroV-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA079" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA079"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre" ; + qudt:symbol "µV/m" ; + qudt:ucumCode "uV.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C3" ; + rdfs:isDefinedBy ; + rdfs:label "Microvolt per Meter"@en-US ; + rdfs:label "Microvolt per Metre"@en . + +unit:MicroVA + a qudt:Unit ; + dcterms:description "0.000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB532" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB532"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:VA ; + qudt:symbol "µVA" ; + qudt:ucumCode "uVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere" . + +unit:MicroVA-PER-K + a qudt:Unit ; + dcterms:description "product of the 0.000001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroVA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD907" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD907"^^xsd:anyURI ; + qudt:symbol "µVA/K" ; + qudt:ucumCode "uVA.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere per kelvin" . + +unit:MicroVAR + a qudt:Unit ; + dcterms:description "0.000001 of the unit volt ampere reactive" ; + qudt:conversionMultiplier 0.000001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC506" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC506"^^xsd:anyURI ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:VAR ; + qudt:symbol "µVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere reactive" . + +unit:MicroVAR-PER-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroVAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD903" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD903"^^xsd:anyURI ; + qudt:symbol "µvar/K" ; + rdfs:isDefinedBy ; + rdfs:label "microvolt ampere reactive per kelvin" . + +unit:MicroW + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA080" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA080"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit watt" ; + qudt:prefix prefix:Micro ; + qudt:scalingOf unit:W ; + qudt:symbol "µW" ; + qudt:ucumCode "uW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D80" ; + rdfs:isDefinedBy ; + rdfs:label "Microwatt"@en . + +unit:MicroW-PER-M2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MicroW ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAA081" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA081"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "µW/m²" ; + qudt:ucumCode "uW.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D85" ; + rdfs:isDefinedBy ; + rdfs:label "Microwatt per Square Meter"@en-US ; + rdfs:label "Microwatt per Square Metre"@en . + +unit:MilLength + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Mil Length\" is a C.G.S System unit for 'Length' expressed as $mil$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000254 ; + qudt:conversionMultiplierSN 2.54E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:scalingOf unit:M ; + qudt:symbol "mil" ; + qudt:ucumCode "[mil_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Mil Length"@en . + +unit:MilliA + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA775" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA775"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:A ; + qudt:symbol "mA" ; + qudt:ucumCode "mA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4K" ; + rdfs:isDefinedBy ; + rdfs:label "MilliAmpere"@en . + +unit:MilliA-HR + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI base unit ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3.6 ; + qudt:conversionMultiplierSN 3.6E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA777" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA777"^^xsd:anyURI ; + qudt:plainTextDescription "product of the 0.001-fold of the SI base unit ampere and the unit hour" ; + qudt:symbol "mA·h" ; + qudt:ucumCode "mA.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E09" ; + rdfs:isDefinedBy ; + rdfs:label "Milliampere Hour"@en . + +unit:MilliA-HR-PER-GM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Milliampere hour per gram}$ is a practical unit of electric charge relative to the mass of the (active) parts. + 1mAh/g describes the capability of a material to store charge equivalent to 1h charge with 1mA per gram. + The unit is often used in electrochemistry to describe the properties of active components like electrodes. + """^^qudt:LatexString ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificElectricCharge ; + qudt:symbol "mA·h/g" ; + qudt:ucumCode "mA.h.g-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliampere Hour per Gram"@en . + +unit:MilliA-IN2-PER-LB_F + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI base unit ampere and the unit inch according to the Anglo-American and Imperial system of units with the exponent 2 according to the quotient of the unit pound-force according to the Anglo-American system of units" ; + qudt:conversionMultiplier 0.000000145037731222726870214855723638659299692 ; + qudt:conversionMultiplierSN 1.45037731222726870214855723638659299692E-7 ; + qudt:hasDimensionVector qkdv:A0E1L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB494" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB494"^^xsd:anyURI ; + qudt:symbol "mA·in²/lbf" ; + qudt:ucumCode "mA.[in_i]2.[lbf_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F57" ; + rdfs:isDefinedBy ; + rdfs:label "milliampere square inch per pound-force" . + +unit:MilliA-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit ampere divided by the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E1L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA776" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA776"^^xsd:anyURI ; + qudt:symbol "mA/bar" ; + qudt:ucumCode "mA.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F59" ; + rdfs:isDefinedBy ; + rdfs:label "milliampere per bar" . + +unit:MilliA-PER-IN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit ampere divided by the unit inch according to the Anglo-American and the Imperial system of units"^^rdf:HTML ; + qudt:conversionMultiplier 0.03937008 ; + qudt:conversionMultiplierSN 3.937008E-2 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAA778" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA778"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit ampere divided by the unit inch according to the Anglo-American and the Imperial system of units" ; + qudt:symbol "mA/in" ; + qudt:ucumCode "mA.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F08" ; + rdfs:isDefinedBy ; + rdfs:label "Milliampere per Inch"@en . + +unit:MilliA-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAD897" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD897"^^xsd:anyURI ; + qudt:symbol "mA/K" ; + qudt:ucumCode "mA.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliampere per kelvin" . + +unit:MilliA-PER-L-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit ampere divided by the product of the unit litre and the unit minute" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD910" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD910"^^xsd:anyURI ; + qudt:symbol "mA/(L·min)" ; + qudt:ucumCode "mA.L-1.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G59" ; + rdfs:isDefinedBy ; + rdfs:label "milliampere per litre minute" . + +unit:MilliA-PER-LB_F-IN2 + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI base unit ampere according to the quotient of the unit pound-force according to the Anglo-American system of units divided by the power of the unit inch according to the Anglo-American and Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.34845454307937980503809350919576335422566229642579948977603983952 ; + qudt:conversionMultiplierSN 3.4845454307937980503809350919576335422566229642579948977603983952E-1 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mA/(lbf·in²)" ; + qudt:ucumCode "mA.[lbf_av]-1.[in_i]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliampere per pound-force square inch" . + +unit:MilliA-PER-MilliM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit ampere divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasQuantityKind quantitykind:LinearElectricCurrentDensity ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAA781" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA781"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit ampere divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "mA/mm" ; + qudt:ucumCode "mA.mm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F76" ; + rdfs:isDefinedBy ; + rdfs:label "Milliampere per Millimeter"@en-US ; + rdfs:label "Milliampere per Millimetre"@en . + +unit:MilliA-SEC + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI base unit ampere and the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAD919" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD919"^^xsd:anyURI ; + qudt:symbol "mA·s" ; + qudt:ucumCode "mA.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliampere second" . + +unit:MilliARCSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A minute of arc, arcminute, or minute arc (MOA), is a unit of angular measurement equal to one sixtieth (1/60) of one degree (circle/21,600), or $\\pi /10,800 radians$. In turn, a second of arc or arcsecond is one sixtieth (1/60) of one minute of arc. Since one degree is defined as one three hundred and sixtieth (1/360) of a rotation, one minute of arc is 1/21,600 of a rotation. the milliarcsecond, abbreviated mas, is used in astronomy."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000000484813681 ; + qudt:conversionMultiplierSN 4.84813681E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Minute_of_arc"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:ARCSEC ; + qudt:symbol "mas" ; + qudt:ucumCode "m''"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milli ArcSecond"@en . + +unit:MilliBAR + a qudt:Unit ; + dcterms:description "The bar is a non-SI unit of pressure, defined by the IUPAC as exactly equal to 100,000 Pa. It is about equal to the atmospheric pressure on Earth at sea level, and since 1982 the IUPAC has recommended that the standard for atmospheric pressure should be harmonized to $100,000 Pa = 1 bar \\approx 750.0616827 Torr$. Units derived from the bar are the megabar (symbol: Mbar), kilobar (symbol: kbar), decibar (symbol: dbar), centibar (symbol: cbar), and millibar (symbol: mbar or mb). They are not SI or cgs units, but they are accepted for use with the SI."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:exactMatch unit:HectoPA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA810" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bar_(unit)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA810"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:BAR ; + qudt:symbol "mbar" ; + qudt:ucumCode "mbar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MBR" ; + rdfs:isDefinedBy ; + rdfs:label "Millibar"@en . + +unit:MilliBAR-L-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the 0.001-fold of the unit bar and the unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA813" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA813"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the 0.001-fold of the unit bar and the unit litre divided by the SI base unit second" ; + qudt:symbol "mbar·L/s" ; + qudt:ucumCode "mbar.L.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mbar.L/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F95" ; + rdfs:isDefinedBy ; + rdfs:label "Millibar Liter per Second"@en-US ; + rdfs:label "Millibar Litre per Second"@en . + +unit:MilliBAR-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA327" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA327"^^xsd:anyURI ; + qudt:plainTextDescription "product of the unit bar and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "mbar·m³/s" ; + qudt:ucumCode "mbar.m3.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F96" ; + rdfs:isDefinedBy ; + rdfs:label "Millibar Cubic Meter per Second"@en-US ; + rdfs:label "Millibar Cubic Metre per Second"@en . + +unit:MilliBAR-PER-BAR + a qudt:Unit ; + dcterms:description "0.01-fold of the unit bar divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBAR ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA812" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA812"^^xsd:anyURI ; + qudt:plainTextDescription "0.01-fold of the unit bar divided by the unit bar" ; + qudt:symbol "mbar/bar" ; + qudt:ucumCode "mbar.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F04" ; + rdfs:isDefinedBy ; + rdfs:label "Millibar per Bar"@en . + +unit:MilliBAR-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit bar divided by the unit temperature kelvin"^^rdf:HTML ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBAR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricHeatCapacity ; + qudt:iec61360Code "0112/2///62720#UAA811" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA811"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit bar divided by the unit temperature kelvin" ; + qudt:symbol "mbar/K" ; + qudt:ucumCode "mbar.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F84" ; + rdfs:isDefinedBy ; + rdfs:label "Millibar per Kelvin"@en . + +unit:MilliBQ + a qudt:Unit ; + dcterms:description "0.001-fold of the unit becquerel" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAC503" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC503"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:BQ ; + qudt:symbol "mBq" ; + rdfs:isDefinedBy ; + rdfs:label "MilliBecquerel"@en . + +unit:MilliBQ-PER-GM + a qudt:Unit ; + dcterms:description "One radioactive disintegration per thousand seconds per 1000th SI unit of sample mass."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:symbol "mBq/g" ; + qudt:ucumCode "mBq.g-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millibecquerels per gram"@en . + +unit:MilliBQ-PER-KiloGM + a qudt:Unit ; + dcterms:description "One radioactive disintegration per thousand seconds from an SI standard unit of mass of sample."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBQ ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificActivity ; + qudt:symbol "mBq/kg" ; + qudt:ucumCode "mBq.kg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millibecquerels per kilogram"@en . + +unit:MilliBQ-PER-L + a qudt:Unit ; + dcterms:description "One radioactive disintegration per second from the SI unit of volume (cubic metre). Equivalent to Becquerels per cubic metre."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBQ ; + ] ; + qudt:hasQuantityKind quantitykind:ActivityConcentration ; + qudt:symbol "mBq/L" ; + qudt:ucumCode "mBq.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "mBq/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millibecquerels per litre"@en . + +unit:MilliBQ-PER-M2-DAY + a qudt:Unit ; + dcterms:description "One radioactive disintegration per thousand seconds in material passing through an area of one square metre during a period of one day (86400 seconds)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-8 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliBQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mBq/(m²·d)" ; + qudt:ucumCode "mBq.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millibecquerels per square metre day"@en . + +unit:MilliC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A MilliCoulomb is $10^{-3} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA782" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA782"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:C ; + qudt:symbol "mC" ; + qudt:ucumCode "mC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D86" ; + rdfs:isDefinedBy ; + rdfs:label "MilliCoulomb"@en . + +unit:MilliC-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit coulomb divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAA783" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA783"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the SI base unit kilogram" ; + qudt:symbol "mC/kg" ; + qudt:ucumCode "mC.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C8" ; + rdfs:isDefinedBy ; + rdfs:label "Millicoulomb per Kilogram"@en . + +unit:MilliC-PER-M2 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliC ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerArea ; + qudt:iec61360Code "0112/2///62720#UAA784" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA784"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mC/m²" ; + qudt:ucumCode "mC.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D89" ; + rdfs:isDefinedBy ; + rdfs:label "Millicoulomb per Square Meter"@en-US ; + rdfs:label "Millicoulomb per Square Metre"@en . + +unit:MilliC-PER-M3 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E1L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ; + qudt:iec61360Code "0112/2///62720#UAA785" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA785"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "mC/m³" ; + qudt:ucumCode "mC.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D88" ; + rdfs:isDefinedBy ; + rdfs:label "Millicoulomb per Cubic Meter"@en-US ; + rdfs:label "Millicoulomb per Cubic Metre"@en . + +unit:MilliCD + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit candela" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousIntensity ; + qudt:iec61360Code "0112/2///62720#UAB369" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB369"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:CD ; + qudt:symbol "mCd" ; + qudt:uneceCommonCode "P34" ; + rdfs:isDefinedBy ; + rdfs:label "millicandela" . + +unit:MilliCi + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit curie"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 37000000.0 ; + qudt:conversionMultiplierSN 3.7E7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAA786" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA786"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit curie" ; + qudt:symbol "mCi" ; + qudt:ucumCode "mCi"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MCU" ; + rdfs:isDefinedBy ; + rdfs:label "Millicurie"@en . + +unit:MilliDARCY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{Millidarcy}$ ($md$) is a unit of permeability named after Henry Darcy. + It is not an SI unit, but it is widely used in petroleum engineering and geology. + The unit has also been used in biophysics and biomechanics, where the flow of fluids such as + blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. + A millidarcy has dimensional units of $length^2$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000009869233 ; + qudt:conversionMultiplierSN 9.869233E-16 ; + qudt:expression "$d$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Darcy_(unit)"^^xsd:anyURI ; + qudt:plainTextDescription "The millidarcy (md) is a unit of permeability named after Henry Darcy. It is not an SI unit, but it is widely used in petroleum engineering and geology. The unit has also been used in biophysics and biomechanics, where the flow of fluids such as blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. A millidarcy has dimensional units of length²." ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:DARCY ; + qudt:symbol "md" ; + rdfs:isDefinedBy ; + rdfs:label "Millidarcy"@en . + +unit:MilliDEG_C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Millidegree Celsius}$ is a scaled unit of measurement for temperature."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:conversionOffset 273150.0 ; + qudt:conversionOffsetSN 2.7315E5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Celsius"^^xsd:anyURI ; + qudt:guidance "

See NIST section SP811 section 4.2.1.1

"^^rdf:HTML ; + qudt:guidance "

See NIST section SP811 section 6.2.8

"^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Celsius?oldid=494152178"^^xsd:anyURI ; + qudt:latexDefinition "millieDegree Celsius"^^qudt:LatexString ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:DEG_C ; + qudt:symbol "m°C" ; + qudt:ucumCode "mCel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millidegree Celsius"@en . + +unit:MilliFARAD + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit farad"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA787" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA787"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit farad" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "mF" ; + qudt:ucumCode "mF"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C10" ; + rdfs:isDefinedBy ; + rdfs:label "Millifarad"@en . + +unit:MilliG + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Milligravity\" is a unit for 'Linear Acceleration' expressed as $mG$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00980665 ; + qudt:conversionMultiplierSN 9.80665E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:G ; + qudt:symbol "mG" ; + qudt:ucumCode "m[g]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligravity"@en . + +unit:MilliGAL + a qudt:Unit ; + dcterms:description "0.001-fold of the unit of acceleration called gal according to the CGS system of units"^^rdf:HTML ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB043" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB043"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit of acceleration called gal according to the CGS system of units" ; + qudt:scalingOf unit:GALILEO ; + qudt:symbol "mgal" ; + qudt:ucumCode "mGal"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C11" ; + rdfs:isDefinedBy ; + rdfs:label "Milligal"@en . + +unit:MilliGAL-PER-MO + a qudt:Unit ; + dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a time duration of 30.4375 days or 2629800 seconds."@en ; + qudt:conversionMultiplier 0.000000000003919350772901616281311709002114104 ; + qudt:conversionMultiplierSN 3.919350772901616281311709002114104E-12 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGAL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MO ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mgal/mo" ; + qudt:ucumCode "mGal.mo-1"^^qudt:UCUMcs ; + qudt:ucumCode "mGal/mo"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MilliGals per month"@en . + +unit:MilliGM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA815" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA815"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:GM ; + qudt:symbol "mg" ; + qudt:ucumCode "mg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MGM" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram"@en . + +unit:MilliGM-HR-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC837" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC837"^^xsd:anyURI ; + qudt:symbol "mg·h/(L·cm³)" ; + qudt:ucumCode "mg.h.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per litre cubic centimetre" . + +unit:MilliGM-HR-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3.6 ; + qudt:conversionMultiplierSN 3.6E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC836" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC836"^^xsd:anyURI ; + qudt:symbol "mg·h/(L·m³)" ; + qudt:ucumCode "mg.h.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per litre cubic metre" . + +unit:MilliGM-HR-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per unit of time hour" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC838" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC838"^^xsd:anyURI ; + qudt:symbol "mg·h/L²" ; + qudt:ucumCode "mg.h.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per litre squared" . + +unit:MilliGM-HR-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC831" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC831"^^xsd:anyURI ; + qudt:symbol "mg·h/(m³·cm³)" ; + qudt:ucumCode "mg.h.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per cubic metre cubic centimetre" . + +unit:MilliGM-HR-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time hour" ; + qudt:conversionMultiplier 3.6 ; + qudt:conversionMultiplierSN 3.6E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC832" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC832"^^xsd:anyURI ; + qudt:symbol "mg·h/(m³·L)" ; + qudt:ucumCode "mg.h.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per cubic metre litre" . + +unit:MilliGM-HR-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time hour" ; + qudt:conversionMultiplier 0.0036 ; + qudt:conversionMultiplierSN 3.6E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC830" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC830"^^xsd:anyURI ; + qudt:symbol "mg·h/m⁶" ; + qudt:ucumCode "mg.h.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram hour per power of metre with the exponent 6" . + +unit:MilliGM-MIN-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 60000.0 ; + qudt:conversionMultiplierSN 6.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC840" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC840"^^xsd:anyURI ; + qudt:symbol "mg·min/(L·cm³)" ; + qudt:ucumCode "mg.min.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per litre cubic centimetre" . + +unit:MilliGM-MIN-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 0.06 ; + qudt:conversionMultiplierSN 6.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC839" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC839"^^xsd:anyURI ; + qudt:symbol "mg·min/(L·m³)" ; + qudt:ucumCode "mg.min.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per litre cubic metre" . + +unit:MilliGM-MIN-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per unit of time minute" ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC841" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC841"^^xsd:anyURI ; + qudt:symbol "mg·min/L²" ; + qudt:ucumCode "mg.min.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per litre squared" . + +unit:MilliGM-MIN-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 60.0 ; + qudt:conversionMultiplierSN 6.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC834" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC834"^^xsd:anyURI ; + qudt:symbol "mg·min/(m³·cm³)" ; + qudt:ucumCode "mg.min.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per cubic metre cubic centimetre" . + +unit:MilliGM-MIN-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time minute" ; + qudt:conversionMultiplier 0.06 ; + qudt:conversionMultiplierSN 6.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD870" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD870"^^xsd:anyURI ; + qudt:symbol "mg·min/(m³·L)" ; + qudt:ucumCode "mg.min.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per cubic metre litre" . + +unit:MilliGM-MIN-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time minute" ; + qudt:conversionMultiplier 0.00006 ; + qudt:conversionMultiplierSN 6.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC833" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC833"^^xsd:anyURI ; + qudt:symbol "mg·min/m⁶" ; + qudt:ucumCode "mg.min.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram minute per power of metre with the exponent 6" . + +unit:MilliGM-PER-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA817" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA817"^^xsd:anyURI ; + qudt:symbol "mg/bar" ; + qudt:ucumCode "mg.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F75" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per bar" . + +unit:MilliGM-PER-CentiM2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAA818" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA818"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mg/cm²" ; + qudt:ucumCode "mg.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H63" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Square Centimeter"@en-US ; + rdfs:label "Milligram per Square Centimetre"@en . + +unit:MilliGM-PER-DAY + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407 ; + qudt:conversionMultiplierSN 1.157407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA819" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA819"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit day" ; + qudt:symbol "mg/d" ; + qudt:ucumCode "mg.d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F32" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Day"@en . + +unit:MilliGM-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-16 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA821" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA821"^^xsd:anyURI ; + qudt:symbol "mg/(d·bar)" ; + qudt:ucumCode "mg.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F70" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per day bar" . + +unit:MilliGM-PER-DAY-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA820" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA820"^^xsd:anyURI ; + qudt:symbol "mg/(d·K)" ; + qudt:ucumCode "mg.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F43" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per day kelvin" . + +unit:MilliGM-PER-DeciL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A derived unit for amount-of-substance concentration measured in mg/dL."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:expression "$mg/dL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DeciL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:BloodGlucoseLevel_Mass ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "mg/dL" ; + qudt:ucumCode "mg.dL-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/dL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligrams per decilitre"@en ; + rdfs:label "milligrams per decilitre"@en-US . + +unit:MilliGM-PER-DeciM2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the 0.01-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:DeciM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.01-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mg/dm²" ; + qudt:ucumCode "mg.dm-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Square Decimeter"@en-US ; + rdfs:label "Milligram per Square Decimetre"@en . + +unit:MilliGM-PER-GM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA822" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA822"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "mg/g" ; + qudt:ucumCode "mg.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H64" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Gram"@en . + +unit:MilliGM-PER-GM-HR + a qudt:Unit ; + dcterms:description "mass-specific rate, e.g., uptake or emission"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000278 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:MassSpecificBiogeochemicalRate ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram, divided by 3600-fold of the SI base unit second" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:symbol "mg/(g·h)" ; + qudt:ucumCode "mg.g-1.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/g/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per gram per hour"@en . + +unit:MilliGM-PER-HA + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the 10,000-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000001 ; + qudt:conversionMultiplierSN 1.0E-10 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 10,000-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mg/ha" ; + qudt:ucumCode "mg.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Hectare"@en . + +unit:MilliGM-PER-HR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000002777778 ; + qudt:conversionMultiplierSN 2.777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA823" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA823"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit hour" ; + qudt:symbol "mg/h" ; + qudt:ucumCode "mg.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4M" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Hour"@en . + +unit:MilliGM-PER-HR-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-15 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA825" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA825"^^xsd:anyURI ; + qudt:symbol "mg/(h·bar)" ; + qudt:ucumCode "mg.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F71" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per hour bar" . + +unit:MilliGM-PER-HR-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA824" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA824"^^xsd:anyURI ; + qudt:symbol "mg/(h·K)" ; + qudt:ucumCode "mg.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F44" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per hour kelvin" . + +unit:MilliGM-PER-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA816" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA816"^^xsd:anyURI ; + qudt:symbol "mg/K" ; + qudt:ucumCode "mg.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F16" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per kelvin" . + +unit:MilliGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA826" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA826"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "mg/kg" ; + qudt:ucumCode "mg.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NA" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Kilogram"@en . + +unit:MilliGM-PER-KiloGM-DAY + a qudt:Unit ; + dcterms:description "mass ratio as 0.000001-fold of the SI base unit kilogram divided by the SI base unit kilogram per day "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassSpecificBiogeochemicalRate ; + qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of the SI base unit kilogram per day (8640 seconds)" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T1D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "mg/(kg·d)" ; + qudt:ucumCode "mg.kg-1.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/kg/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per kilogram per Day"@en . + +unit:MilliGM-PER-L + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA827" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA827"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit litre" ; + qudt:symbol "mg/L" ; + qudt:ucumCode "mg.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M1" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Liter"@en-US ; + rdfs:label "Milligram per Liter"@nl ; + rdfs:label "Milligram per Litre"@en . + +unit:MilliGM-PER-L-CentiPOISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per litre and and the 0.01-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD841" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD841"^^xsd:anyURI ; + qudt:symbol "mg/(L·cP)" ; + qudt:ucumCode "mg.L-1.cP-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per litre centipoise" . + +unit:MilliGM-PER-L-MilliPA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD869" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD869"^^xsd:anyURI ; + qudt:symbol "mg/(L·mPa·s)" ; + qudt:ucumCode "mg.L-1.mPa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per litre millipascal second" . + +unit:MilliGM-PER-L-PA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the product of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD839" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD839"^^xsd:anyURI ; + qudt:symbol "mg/(L·Pa·s)" ; + qudt:ucumCode "mg.L-1.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per litre pascal second" . + +unit:MilliGM-PER-L-POISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per litre and the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD840" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD840"^^xsd:anyURI ; + qudt:symbol "mg/(L·P)" ; + qudt:ucumCode "mg.L-1.P-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per litre poise" . + +unit:MilliGM-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAA828" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA828"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit metre" ; + qudt:symbol "mg/m" ; + qudt:ucumCode "mg.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C12" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Meter"@en-US ; + rdfs:label "Milligram per Metre"@en . + +unit:MilliGM-PER-M2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAA829" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA829"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mg/m²" ; + qudt:ucumCode "mg.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "mg/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GO" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Square Meter"@en-US ; + rdfs:label "Milligram per Square Metre"@en . + +unit:MilliGM-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "mg/(m²·d)" ; + qudt:ucumCode "mg.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per square metre day"@en . + +unit:MilliGM-PER-M2-HR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "mg/(m²·h)" ; + qudt:ucumCode "mg.m-2.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per square metre hour"@en . + +unit:MilliGM-PER-M2-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "mg/(m²·s)" ; + qudt:ucumCode "mg.m-2.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per square metre second"@en . + +unit:MilliGM-PER-M3 + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA830" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA830"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "mg/m³" ; + qudt:ucumCode "mg.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "mg/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "GP" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Cubic Meter"@en-US ; + rdfs:label "Milligram per Cubic Metre"@en ; + rdfs:label "Milligram per Kubieke Meter"@nl . + +unit:MilliGM-PER-M3-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA832" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA832"^^xsd:anyURI ; + qudt:symbol "mg/(m³·bar)" ; + qudt:ucumCode "mg.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L18" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre bar" . + +unit:MilliGM-PER-M3-CentiPOISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.01-fold of the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD838" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD838"^^xsd:anyURI ; + qudt:symbol "mg/(m³·cP)" ; + qudt:ucumCode "mg.m-3.cP-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre centipoise" . + +unit:MilliGM-PER-M3-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mg/(m³·d)" ; + qudt:ucumCode "mg.m-3.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per cubic metre day"@en . + +unit:MilliGM-PER-M3-HR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mg/(m³·h)" ; + qudt:ucumCode "mg.m-3.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per cubic metre hour"@en . + +unit:MilliGM-PER-M3-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA831" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA831"^^xsd:anyURI ; + qudt:symbol "mg/(m³·K)" ; + qudt:ucumCode "mg.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L17" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre kelvin" . + +unit:MilliGM-PER-M3-MilliPA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD835" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD835"^^xsd:anyURI ; + qudt:symbol "mg/(m³·mPa·s)" ; + qudt:ucumCode "mg.m-3.mPa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre millipascal second" . + +unit:MilliGM-PER-M3-PA-SEC + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD836" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD836"^^xsd:anyURI ; + qudt:symbol "mg/(m³·Pa·s)" ; + qudt:ucumCode "mg.m-3.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre pascal second" . + +unit:MilliGM-PER-M3-POISE + a qudt:Unit ; + dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the CGS unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD837" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD837"^^xsd:anyURI ; + qudt:symbol "mg/(m³·P)" ; + qudt:ucumCode "mg.m-3.P-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram per cubic metre poise" . + +unit:MilliGM-PER-M3-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mg/(m³·s)" ; + qudt:ucumCode "mg.m-3.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligrams per cubic metre second"@en . + +unit:MilliGM-PER-MIN + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001666667 ; + qudt:conversionMultiplierSN 1.666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA833" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA833"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit minute" ; + qudt:symbol "mg/min" ; + qudt:ucumCode "mg/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F33" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Minute"@en . + +unit:MilliGM-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-13 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA835" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA835"^^xsd:anyURI ; + qudt:symbol "mg/(min·bar)" ; + qudt:ucumCode "mg.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F72" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per minute bar" . + +unit:MilliGM-PER-MIN-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA834" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA834"^^xsd:anyURI ; + qudt:symbol "mg/(min·K)" ; + qudt:ucumCode "mg.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F45" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per minute kelvin" . + +unit:MilliGM-PER-MilliL + a qudt:Unit ; + dcterms:description "A scaled unit of mass concentration."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit millilitre" ; + qudt:symbol "mg/mL" ; + qudt:ucumCode "mg.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "mg/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Milliliter"@en-US ; + rdfs:label "Milligram per Millilitre"@en . + +unit:MilliGM-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA836" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA836"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit second" ; + qudt:symbol "mg/s" ; + qudt:ucumCode "mg/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F34" ; + rdfs:isDefinedBy ; + rdfs:label "Milligram per Second"@en . + +unit:MilliGM-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA838" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA838"^^xsd:anyURI ; + qudt:symbol "mg/(s·bar)" ; + qudt:ucumCode "mg.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F73" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per second bar" . + +unit:MilliGM-PER-SEC-K + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA837" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA837"^^xsd:anyURI ; + qudt:symbol "mg/(s·K)" ; + qudt:ucumCode "mg.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F46" ; + rdfs:isDefinedBy ; + rdfs:label "milligram per second kelvin" . + +unit:MilliGM-SEC-PER-L-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC843" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC843"^^xsd:anyURI ; + qudt:symbol "mg·s/(L·cm³)" ; + qudt:ucumCode "mg.s.L-1.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per litre cubic centimetre" . + +unit:MilliGM-SEC-PER-L-M3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC842" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC842"^^xsd:anyURI ; + qudt:symbol "mg·s/(L·m³)" ; + qudt:ucumCode "mg.s.L-1.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per litre cubic metre" . + +unit:MilliGM-SEC-PER-L2 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC844" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC844"^^xsd:anyURI ; + qudt:symbol "mg·s/L²" ; + qudt:ucumCode "mg.s.L-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per litre squared" . + +unit:MilliGM-SEC-PER-M3-CentiM3 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD865" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD865"^^xsd:anyURI ; + qudt:symbol "mg·s/(m³·cm³)" ; + qudt:ucumCode "mg.s.m-3.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per cubic metre cubic centimetre" . + +unit:MilliGM-SEC-PER-M3-L + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC835" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC835"^^xsd:anyURI ; + qudt:symbol "mg·s/(m³·L)" ; + qudt:ucumCode "mg.s.m-3.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per cubic metre litre" . + +unit:MilliGM-SEC-PER-M6 + a qudt:Unit ; + dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD864" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD864"^^xsd:anyURI ; + qudt:symbol "mg·s/m⁶" ; + qudt:ucumCode "mg.s.m-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milligram second per power of metre with the exponent 6" . + +unit:MilliGRAY + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit gray"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:iec61360Code "0112/2///62720#UAA788" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA788"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit gray" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:GRAY ; + qudt:symbol "mGy" ; + qudt:ucumCode "mGy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C13" ; + rdfs:isDefinedBy ; + rdfs:label "Milligray"@en . + +unit:MilliGRAY-PER-HR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit gray divided by the unit hour" ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB477" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB477"^^xsd:anyURI ; + qudt:symbol "mGy/h" ; + qudt:ucumCode "mGy.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mGy/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P62" ; + rdfs:isDefinedBy ; + rdfs:label "milligray per hour" . + +unit:MilliGRAY-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit gray divided by the unit minute" ; + qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGRAY ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB473" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB473"^^xsd:anyURI ; + qudt:symbol "mGy/min" ; + qudt:ucumCode "mGy.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mGy/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P58" ; + rdfs:isDefinedBy ; + rdfs:label "milligray per minute" . + +unit:MilliGRAY-PER-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit gray divided by the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliGRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB298" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB298"^^xsd:anyURI ; + qudt:symbol "mGy/s" ; + qudt:ucumCode "mGy.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mGy/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P54" ; + rdfs:isDefinedBy ; + rdfs:label "milligray per second" . + +unit:MilliH + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of inductance equal to one thousandth of a henry. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:iec61360Code "0112/2///62720#UAA789" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA789"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:H ; + qudt:symbol "mH" ; + qudt:ucumCode "mH"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C14" ; + rdfs:isDefinedBy ; + rdfs:label "Millihenry"@en . + +unit:MilliH-PER-KiloOHM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliH ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloOHM ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA791" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA791"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit henry divided by the 1 000-fold of the SI derived unit ohm" ; + qudt:symbol "mH/kΩ" ; + qudt:ucumCode "mH.kOhm-1"^^qudt:UCUMcs ; + qudt:ucumCode "mH/kOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H05" ; + rdfs:isDefinedBy ; + rdfs:label "Millihenry per Kiloohm"@en . + +unit:MilliH-PER-OHM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit henry divided by the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliH ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA790" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA790"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit henry divided by the SI derived unit ohm" ; + qudt:symbol "mH/Ω" ; + qudt:ucumCode "mH.Ohm-1"^^qudt:UCUMcs ; + qudt:ucumCode "mH/Ohm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H06" ; + rdfs:isDefinedBy ; + rdfs:label "Millihenry per Ohm"@en . + +unit:MilliHZ + a qudt:Unit ; + dcterms:description "0.001-fold of the unit hertz" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAB698" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB698"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:HZ ; + qudt:symbol "mHz" ; + qudt:uneceCommonCode "MTZ" ; + rdfs:isDefinedBy ; + rdfs:label "millihertz" . + +unit:MilliIN + a qudt:Unit ; + dcterms:description "0.001-fold of the unit inch according to the Anglo-American and Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000254 ; + qudt:conversionMultiplierSN 2.54E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA841" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA841"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit inch according to the Anglo-American and Imperial system of units" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:IN ; + qudt:symbol "mil" ; + qudt:ucumCode "m[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "77" ; + rdfs:isDefinedBy ; + rdfs:label "Milli-inch"@en ; + skos:altLabel "mil"@en-US ; + skos:altLabel "thou"@en-GB . + +unit:MilliJ + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA792" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA792"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit joule" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:J ; + qudt:symbol "mJ" ; + qudt:ucumCode "mJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C15" ; + rdfs:isDefinedBy ; + rdfs:label "Millijoule"@en . + +unit:MilliJ-PER-GM + a qudt:Unit ; + dcterms:description "The 0.001-fold of the SI base unit joule divided by the 0.001-fold of the SI base unit kilogram."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliJ ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:plainTextDescription "The 0.001-fold of the SI base unit joule divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "mJ/g" ; + qudt:ucumCode "mJ.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "mJ/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millijoule per Gram"@en . + +unit:MilliJ-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Millijoule Per Square Meter ($mJ/m^2$) is a unit in the category of Energy density. It is also known as millijoules per square meter, millijoule per square metre, millijoule/square meter, millijoule/square metre."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:expression "$mJ/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliJ ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyFluence ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:RadiantFluence ; + qudt:hasQuantityKind quantitykind:StrainEnergyReleaseRate ; + qudt:symbol "mJ/m²" ; + qudt:ucumCode "mJ.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "mJ/m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millijoule per Square Meter"@en-US ; + rdfs:label "Millijoule per Square Metre"@en . + +unit:MilliJ-PER-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB511" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB511"^^xsd:anyURI ; + qudt:symbol "mJ/s" ; + qudt:ucumCode "mJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millijoule per second" . + +unit:MilliK + a qudt:Unit ; + qudt:conversionMultiplier 0.001 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:CorrelatedColorTemperature ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:K ; + rdfs:isDefinedBy ; + rdfs:label "MilliK" . + +unit:MilliK-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of SI base unit kelvin divided by the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H1T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB841" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB841"^^xsd:anyURI ; + qudt:symbol "mK/bar" ; + rdfs:isDefinedBy ; + rdfs:label "millikelvin per bar" . + +unit:MilliK-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of SI base unit kelvin divided by the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:TemperatureRatio ; + qudt:iec61360Code "0112/2///62720#UAB842" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB842"^^xsd:anyURI ; + qudt:symbol "mK/K" ; + rdfs:isDefinedBy ; + rdfs:label "millikelvin per kelvin" . + +unit:MilliKAT + a qudt:Unit ; + qudt:conversionMultiplier 0.001 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:KAT ; + rdfs:isDefinedBy ; + rdfs:label "MilliKAT" . + +unit:MilliKAT-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliKAT ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. " ; + qudt:symbol "mkat/L" ; + qudt:ucumCode "mkat/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millikatal per Liter"@en-US ; + rdfs:label "Millikatal per Litre"@en . + +unit:MilliL + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA844" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA844"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:L ; + qudt:symbol "mL" ; + qudt:ucumCode "mL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MLT" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre"@en ; + rdfs:label "Millilitre"@en-US . + +unit:MilliL-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA846" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA846"^^xsd:anyURI ; + qudt:symbol "mL/bar" ; + qudt:ucumCode "mL.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G97" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per bar" . + +unit:MilliL-PER-CentiM2-MIN + a qudt:Unit ; + dcterms:description "quotient of the 0.001-fold of the unit litre and the unit minute divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00016666667 ; + qudt:conversionMultiplierSN 1.6666667E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricFlux ; + qudt:iec61360Code "0112/2///62720#UAA858" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA858"^^xsd:anyURI ; + qudt:plainTextDescription "quotient of the 0.001-fold of the unit litre and the unit minute divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mL/(cm²·min)" ; + qudt:ucumCode "mL.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "35" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Square Centimeter Minute"@en-US ; + rdfs:label "Millilitre per Square Centimetre Minute"@en . + +unit:MilliL-PER-CentiM2-SEC + a qudt:Unit ; + dcterms:description "unit of the volume flow rate millilitre divided by second related to the transfer area as 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricFlux ; + qudt:iec61360Code "0112/2///62720#UAB085" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB085"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume flow rate millilitre divided by second related to the transfer area as 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "mL/(cm²·s)" ; + qudt:ucumCode "mL.cm-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "35" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Square Centimeter Second"@en-US ; + rdfs:label "Millilitre per Square Centimetre Second"@en . + +unit:MilliL-PER-DAY + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000001157407 ; + qudt:conversionMultiplierSN 1.157407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA847" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA847"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit day" ; + qudt:symbol "mL/d" ; + qudt:ucumCode "mL.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G54" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Day"@en ; + rdfs:label "Millilitre per Day"@en-US . + +unit:MilliL-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-16 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA849" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA849"^^xsd:anyURI ; + qudt:symbol "mL/(d·bar)" ; + qudt:ucumCode "mL.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G90" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per day bar" . + +unit:MilliL-PER-DAY-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit day and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-11 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA848" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA848"^^xsd:anyURI ; + qudt:symbol "mL/(d·K)" ; + qudt:ucumCode "mL.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G73" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per day kelvin" . + +unit:MilliL-PER-GM + a qudt:Unit ; + dcterms:description "Milliliter Per Gram is a unit in the category of Specific Volume. It is also known as milliliters per gram, millilitre per gram, millilitres per gram, milliliter/gram, millilitre/gram."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:exactMatch unit:CentiM3-PER-GM ; + qudt:expression "$mL/g$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:symbol "mL/g" ; + qudt:ucumCode "mL.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliliter per Gram"@en-US ; + rdfs:label "Millilitre per Gram"@en . + +unit:MilliL-PER-HR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000002777778 ; + qudt:conversionMultiplierSN 2.777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA850" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA850"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit hour" ; + qudt:symbol "mL/h" ; + qudt:ucumCode "mL.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G55" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Hour"@en ; + rdfs:label "Millilitre per Hour"@en-US . + +unit:MilliL-PER-HR-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-15 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA852" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA852"^^xsd:anyURI ; + qudt:symbol "mL/(h·bar)" ; + qudt:ucumCode "mL.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G91" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per hour bar" . + +unit:MilliL-PER-HR-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit hour and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA851" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA851"^^xsd:anyURI ; + qudt:symbol "mL/(h·K)" ; + qudt:ucumCode "mL.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G74" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per hour kelvin" . + +unit:MilliL-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA845" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA845"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the SI base unit kelvin" ; + qudt:symbol "mL/K" ; + qudt:ucumCode "mL.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G30" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Kelvin"@en ; + rdfs:label "Millilitre per Kelvin"@en-US . + +unit:MilliL-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.001-fold of the unit of the volume litre divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:iec61360Code "0112/2///62720#UAB095" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB095"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit of the volume litre divided by the SI base unit kilogram" ; + qudt:symbol "mL/kg" ; + qudt:ucumCode "mL.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "KX" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Kilogram"@en ; + rdfs:label "Millilitre per Kilogram"@en-US . + +unit:MilliL-PER-L + a qudt:Unit ; + dcterms:description "volume ratio consisting of the 0.001-fold of the unit litre divided by the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA853" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA853"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the unit litre divided by the unit litre" ; + qudt:symbol "mL/L" ; + qudt:ucumCode "mL.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L19" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Liter"@en-US ; + rdfs:label "Millilitre per Litre"@en . + +unit:MilliL-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-11 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mL/(m²·d)" ; + qudt:ucumCode "mL.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millilitres per square metre day"@en . + +unit:MilliL-PER-M3 + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA854" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA854"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "mL/m³" ; + qudt:ucumCode "mL.m-3"^^qudt:UCUMcs ; + qudt:ucumCode "mL/m3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H65" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Cubic Meter"@en-US ; + rdfs:label "Millilitre per Cubic Metre"@en . + +unit:MilliL-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001666667 ; + qudt:conversionMultiplierSN 1.666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA855" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA855"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the unit minute" ; + qudt:symbol "mL/min" ; + qudt:ucumCode "mL.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "41" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Minute"@en ; + rdfs:label "Millilitre per Minute"@en-US . + +unit:MilliL-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-13 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA857" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA857"^^xsd:anyURI ; + qudt:symbol "mL/(min·bar)" ; + qudt:ucumCode "mL.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G92" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per minute bar" . + +unit:MilliL-PER-MIN-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the unit minute and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA856" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA856"^^xsd:anyURI ; + qudt:symbol "mL/(min·K)" ; + qudt:ucumCode "mL.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G75" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per minute kelvin" . + +unit:MilliL-PER-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA859" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA859"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit litre divided by the SI base unit second" ; + qudt:symbol "mL/s" ; + qudt:ucumCode "mL.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mL/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "40" ; + rdfs:isDefinedBy ; + rdfs:label "Millilitre per Second"@en ; + rdfs:label "Millilitre per Second"@en-US . + +unit:MilliL-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.00000000001 ; + qudt:conversionMultiplierSN 1.0E-11 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA861" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA861"^^xsd:anyURI ; + qudt:symbol "mL/(s·bar)" ; + qudt:ucumCode "mL.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G93" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per second bar" . + +unit:MilliL-PER-SEC-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit litre divided by the product out of the SI base unit second and the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA860" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA860"^^xsd:anyURI ; + qudt:symbol "mL/(s·K)" ; + qudt:ucumCode "mL.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G76" ; + rdfs:isDefinedBy ; + rdfs:label "millilitre per second kelvin" . + +unit:MilliM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The millimetre (International spelling as used by the International Bureau of Weights and Measures) or millimeter (American spelling) (SI unit symbol mm) is a unit of length in the metric system, equal to one thousandth of a metre, which is the SI base unit of length. It is equal to 1000 micrometres or 1000000 nanometres. A millimetre is equal to exactly 5/127 (approximately 0.039370) of an inch."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Millimetre"^^xsd:anyURI ; + qudt:expression "$mm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA862" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Millimetre?oldid=493032457"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA862"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:M ; + qudt:symbol "mm" ; + qudt:ucumCode "mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MMT" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter"@en-US ; + rdfs:label "Millimetre"@en ; + skos:altLabel "mil"@en-GB . + +unit:MilliM-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA865" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA865"^^xsd:anyURI ; + qudt:symbol "mm/bar" ; + qudt:ucumCode "mm.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G06" ; + rdfs:isDefinedBy ; + rdfs:label "millimetre per bar" . + +unit:MilliM-PER-DAY + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of change in depth over time for a specific area, typically used to express precipitation intensity or evaporation (the amount of liquid water evaporated per unit of time from the area)"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115741 ; + qudt:conversionMultiplierSN 1.15741E-8 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Rain#Measurement"^^xsd:anyURI ; + qudt:plainTextDescription "A measure of change in depth over time for a specific area, typically used to express precipitation intensity or evaporation (the amount of liquid water evaporated per unit of time from the area)" ; + qudt:symbol "mm/d" ; + qudt:ucumCode "mm.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millimeters per day"@en-US ; + rdfs:label "millimetres per day"@en . + +unit:MilliM-PER-DEG_C-M + a qudt:Unit ; + dcterms:description "0.001-fold of the SI unit metre divided by the product of the unit degree Celsius and the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA863" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA863"^^xsd:anyURI ; + qudt:symbol "mm/(°C·m)" ; + qudt:ucumCode "mm.Cel-1.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E97" ; + rdfs:isDefinedBy ; + rdfs:label "millimetre per degree Celsius metre" . + +unit:MilliM-PER-HR + a qudt:Unit ; + dcterms:description "0001-fold of the SI base unit metre divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777778 ; + qudt:conversionMultiplierSN 2.777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA866" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA866"^^xsd:anyURI ; + qudt:plainTextDescription "0001-fold of the SI base unit metre divided by the unit hour" ; + qudt:symbol "mm/h" ; + qudt:ucumCode "mm.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H67" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter per Hour"@en-US ; + rdfs:label "Millimetre per Hour"@en . + +unit:MilliM-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAA864" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA864"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the SI base unit kelvin" ; + qudt:symbol "mm/K" ; + qudt:ucumCode "mm.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F53" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter per Kelvin"@en-US ; + rdfs:label "Millimetre per Kelvin"@en . + +unit:MilliM-PER-M + a qudt:Unit ; + dcterms:description "0.001-fold of SI base unit metre divided by SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Gradient ; + qudt:iec61360Code "0112/2///62720#UAC001" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC001"^^xsd:anyURI ; + qudt:symbol "mm/m" ; + qudt:ucumCode "mm.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millimetre per metre" . + +unit:MilliM-PER-M2 + a qudt:Unit ; + dcterms:description "0,001-fold of the SI base unit meter divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:plainTextDescription "0,001-fold of the SI base unit meter divided by the power of the SI base unit metre with the exponent 2" ; + qudt:qkdvDenominator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:symbol "mm/m²" ; + qudt:ucumCode "mm.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "mm/m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter Per Square Meter"@en-US ; + rdfs:label "Millimetre Per Square Metre"@en . + +unit:MilliM-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001666667 ; + qudt:conversionMultiplierSN 1.666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB378" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB378"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the unit minute" ; + qudt:symbol "mm/min" ; + qudt:ucumCode "mm.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H81" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter per Minute"@en-US ; + rdfs:label "Millimetre per Minute"@en . + +unit:MilliM-PER-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA867" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA867"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the SI base unit second" ; + qudt:symbol "mm/s" ; + qudt:ucumCode "mm.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C16" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter per Second"@en-US ; + rdfs:label "Millimetre per Second"@en . + +unit:MilliM-PER-SEC2 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the power of the SI base unit second by exponent 2" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB400" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB400"^^xsd:anyURI ; + qudt:symbol "mm/s²" ; + qudt:ucumCode "mm.s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M41" ; + rdfs:isDefinedBy ; + rdfs:label "millimetre per second squared" . + +unit:MilliM-PER-YR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit metre divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000003168808781402895023702689684893655 ; + qudt:conversionMultiplierSN 3.168808781402895023702689684893655E-11 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAA868" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA868"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the unit year" ; + qudt:symbol "mm/a" ; + qudt:ucumCode "mm.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm/a"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H66" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter per Year"@en-US ; + rdfs:label "Millimetre per Year"@en . + +unit:MilliM2 + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:iec61360Code "0112/2///62720#UAA871" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA871"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mm²" ; + qudt:ucumCode "mm2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MMK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Millimeter"@en-US ; + rdfs:label "Square Millimetre"@en . + +unit:MilliM2-PER-SEC + a qudt:Unit ; + dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 2 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:AreaPerTime ; + qudt:iec61360Code "0112/2///62720#UAA872" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA872"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 2 divided by the SI base unit second" ; + qudt:symbol "mm²/s" ; + qudt:ucumCode "mm2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm2/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C17" ; + rdfs:isDefinedBy ; + rdfs:label "Square Millimeter per Second"@en-US ; + rdfs:label "Square Millimetre per Second"@en . + +unit:MilliM3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A metric measure of volume or capacity equal to a cube 1 millimeter on each edge"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$mm^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA873" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA873"^^xsd:anyURI ; + qudt:symbol "mm³" ; + qudt:ucumCode "mm3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "MMQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Millimeter"@en-US ; + rdfs:label "Cubic Millimetre"@en . + +unit:MilliM3-PER-GM + a qudt:Unit ; + dcterms:description "Cubic Millimeter Per Gram (mm3/g) is a unit in the category of Specific Volume. It is also known as cubic millimeters per gram, cubic millimetre per gram, cubic millimetres per gram, cubic millimeter/gram, cubic millimetre/gram."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:expression "$mm^{3}/g$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:symbol "mm³/g" ; + qudt:ucumCode "mm3.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm3/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Millimeter per Gram"@en-US ; + rdfs:label "Cubic Millimetre per Gram"@en . + +unit:MilliM3-PER-KiloGM + a qudt:Unit ; + dcterms:description "Cubic Millimeter Per Kilogram (mm3/kg) is a unit in the category of Specific Volume. It is also known as cubic millimeters per kilogram, cubic millimetre per kilogram, cubic millimetres per kilogram, cubic millimeter/kilogram, cubic millimetre/kilogram."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:expression "$mm^{3}/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:SoilAdsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:SpecificVolume ; + qudt:symbol "mm³/kg" ; + qudt:ucumCode "mm3.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mm3/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Millimeter per Kilogram"@en-US ; + rdfs:label "Cubic Millimetre per Kilogram"@en . + +unit:MilliM3-PER-M3 + a qudt:Unit ; + dcterms:description "volume ratio consisting of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFraction ; + qudt:iec61360Code "0112/2///62720#UAA874" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA874"^^xsd:anyURI ; + qudt:plainTextDescription "volume ratio consisting of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "mm³/m³" ; + qudt:ucumCode "mm3.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L21" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Millimeter per Cubic Meter"@en-US ; + rdfs:label "Cubic Millimetre per Cubic Metre"@en . + +unit:MilliM4 + a qudt:Unit ; + dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 4"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 4 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondMomentOfArea ; + qudt:hasQuantityKind quantitykind:SecondPolarMomentOfArea ; + qudt:iec61360Code "0112/2///62720#UAA869" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA869"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the power of the SI base unit metre with the exponent 4" ; + qudt:symbol "mm⁴" ; + qudt:ucumCode "mm4"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G77" ; + rdfs:isDefinedBy ; + rdfs:label "Quartic Millimeter"@en-US ; + rdfs:label "Quartic Millimetre"@en . + +unit:MilliMOL + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit mol"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAA877" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA877"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit mol" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:MOL ; + qudt:symbol "mmol" ; + qudt:ucumCode "mmol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C18" ; + rdfs:isDefinedBy ; + rdfs:label "Millimole"@en . + +unit:MilliMOL-PER-GM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:iec61360Code "0112/2///62720#UAA878" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA878"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "mmol/g" ; + qudt:ucumCode "mmol.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "mmol/g"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H68" ; + rdfs:isDefinedBy ; + rdfs:label "Millimole per Gram"@en . + +unit:MilliMOL-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI base unit mol divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:iec61360Code "0112/2///62720#UAA879" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA879"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the SI base unit kilogram" ; + qudt:symbol "mmol/kg" ; + qudt:ucumCode "mmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mmol/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D87" ; + rdfs:isDefinedBy ; + rdfs:label "Millimole per Kilogram"@en . + +unit:MilliMOL-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI derived unit for amount-of-substance concentration is the mmo/L."^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$mmo/L$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasQuantityKind quantitykind:BloodGlucoseLevel ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:iec61360Code "0112/2///62720#UAB500" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB500"^^xsd:anyURI ; + qudt:symbol "mmol/L" ; + qudt:ucumCode "mmol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "mmol/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M33" ; + rdfs:isDefinedBy ; + rdfs:label "millimoles per litre"@en ; + rdfs:label "millimoles per litre"@en-US . + +unit:MilliMOL-PER-M2 + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mmol/m²" ; + qudt:ucumCode "mmol.m-2"^^qudt:UCUMcs ; + qudt:udunitsCode "DU" ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per square metre"@en . + +unit:MilliMOL-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-8 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "mmol/(m²·d)" ; + qudt:ucumCode "mmol.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per square metre day"@en . + +unit:MilliMOL-PER-M2-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Hourly molar flux equivalent to .001 moles per meter squared per hour, typically used to express an areal production (if plane is a surface of the earth or ocean)."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002778 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFluxDensity ; + qudt:plainTextDescription "Hourly molar flux equivalent to .001 moles per meter squared per hour, typically used to express an areal production (if plane is a surface of the earth or ocean)." ; + qudt:symbol "mmol/(m²·h)" ; + qudt:ucumCode "mmol.m-2.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimole per Square Metre per Hour"@en . + +unit:MilliMOL-PER-M2-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "mmol/(m²·s)" ; + qudt:ucumCode "mmol.m-2.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mmol/m2/s1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per square metre second"@en . + +unit:MilliMOL-PER-M3 + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:symbol "mmol/m³" ; + qudt:ucumCode "mmol.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per cubic metre"@en . + +unit:MilliMOL-PER-M3-DAY + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-8 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "mmol/(m³·d)" ; + qudt:ucumCode "mmol.m-3.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per cubic metre day"@en . + +unit:MilliMOL-PER-MOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:symbol "mmol/mol" ; + qudt:ucumCode "mmol.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "mmol/mol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimoles per mole"@en . + +unit:MilliM_H2O + a qudt:Unit ; + dcterms:description "unit of pressure - 1 mmH2O is the static pressure exerted by a water column with a height of 1 mm"^^rdf:HTML ; + qudt:conversionMultiplier 9.80665 ; + qudt:conversionMultiplierSN 9.80665E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA875" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA875"^^xsd:anyURI ; + qudt:plainTextDescription "unit of pressure - 1 mmH2O is the static pressure exerted by a water column with a height of 1 mm" ; + qudt:scalingOf unit:PA ; + qudt:symbol "mmH₂0" ; + qudt:ucumCode "mm[H2O]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "HP" ; + rdfs:isDefinedBy ; + rdfs:label "Conventional Millimeter Of Water"@en-US ; + rdfs:label "Conventional Millimetre Of Water"@en . + +unit:MilliM_HG + a qudt:Unit ; + dcterms:description "The millimeter of mercury is defined as the pressure exerted at the base of a column of fluid exactly 1 mm high, when the density of the fluid is exactly $13.5951 g/cm^{3}$, at a place where the acceleration of gravity is exactly $9.80665 m/s^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 133.322387415 ; + qudt:conversionMultiplierSN 1.33322387415E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Torr"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA876" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Torr?oldid=495199381"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA876"^^xsd:anyURI ; + qudt:scalingOf unit:PA ; + qudt:symbol "mmHg" ; + qudt:ucumCode "mm[Hg]"^^qudt:UCUMcs ; + qudt:udunitsCode "mmHg" ; + qudt:udunitsCode "mm_Hg" ; + qudt:udunitsCode "mm_hg" ; + qudt:udunitsCode "mmhg" ; + qudt:uneceCommonCode "HN" ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter of Mercury"@en-US ; + rdfs:label "Millimetre of Mercury"@en . + +unit:MilliM_HGA + a qudt:ContextualUnit, qudt:Unit ; + dcterms:description "Millimeters of Mercury inclusive of atmospheric pressure"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 133.322387415 ; + qudt:conversionMultiplierSN 1.33322387415E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:scalingOf unit:PA ; + qudt:symbol "mmHgA" ; + qudt:ucumCode "mm[Hg]{absolute}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millimeter of Mercury - Absolute"@en-US ; + rdfs:label "Millimetre of Mercury - Absolute"@en ; + skos:broader unit:MilliM_HG . + +unit:MilliN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA793" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA793"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit newton" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:N ; + qudt:symbol "mN" ; + qudt:ucumCode "mN"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C20" ; + rdfs:isDefinedBy ; + rdfs:label "Millinewton"@en . + +unit:MilliN-M + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI derived unit newton and the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA794" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA794"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the product of the SI derived unit newton and the SI base unit metre" ; + qudt:symbol "m·mN" ; + qudt:ucumCode "mN.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D83" ; + rdfs:isDefinedBy ; + rdfs:label "Millinewton Meter"@en-US ; + rdfs:label "Millinewton Metre"@en . + +unit:MilliN-M-PER-M2 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB549" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB549"^^xsd:anyURI ; + qudt:symbol "m·mN/m²" ; + qudt:ucumCode "m.mN.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millinewton metre per square metre" . + +unit:MilliN-PER-M + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit newton divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA795" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA795"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit newton divided by the SI base unit metre" ; + qudt:symbol "mN/m" ; + qudt:ucumCode "mN.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mN/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C22" ; + rdfs:isDefinedBy ; + rdfs:label "Millinewton per Meter"@en-US ; + rdfs:label "Millinewton per Metre"@en . + +unit:MilliOHM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA741" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA741"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit ohm" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:OHM ; + qudt:symbol "mΩ" ; + qudt:ucumCode "mOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E45" ; + rdfs:isDefinedBy ; + rdfs:label "Milliohm"@en . + +unit:MilliOHM-M + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI derived unit ohm and the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA742" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA742"^^xsd:anyURI ; + qudt:symbol "m·mΩ" ; + qudt:ucumCode "m.mOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C23" ; + rdfs:isDefinedBy ; + rdfs:label "milliohm metre" . + +unit:MilliOHM-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit ohm per metrical non SI unit bar" ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD878" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD878"^^xsd:anyURI ; + qudt:symbol "mΩ/bar" ; + qudt:ucumCode "mOhm.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "mOhm/bar"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliohm per bar" . + +unit:MilliOHM-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit ohm per SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD874" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD874"^^xsd:anyURI ; + qudt:symbol "mΩ/K" ; + qudt:ucumCode "mOhm.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mOhm/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliohm per kelvin" . + +unit:MilliOHM-PER-M + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit ohm divided by the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliOHM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA743" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA743"^^xsd:anyURI ; + qudt:symbol "mΩ/m" ; + qudt:ucumCode "mOhm.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mOhm/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F54" ; + rdfs:isDefinedBy ; + rdfs:label "milliohm per metre" . + +unit:MilliOSM + a qudt:Unit ; + qudt:conversionMultiplier 0.0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:OSM ; + rdfs:isDefinedBy ; + rdfs:label "MilliOSM" . + +unit:MilliOSM-PER-KiloGM + a qudt:Unit ; + dcterms:description "0.001-fold of the unit Osmol divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliOSM ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:symbol "mOsmol/kg" ; + qudt:ucumCode "mOsmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mOsmol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "milliosmole per kilogram" . + +unit:MilliPA + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit pascal"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA796" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA796"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit pascal" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:PA ; + qudt:symbol "mPa" ; + qudt:ucumCode "mPa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "74" ; + rdfs:isDefinedBy ; + rdfs:label "Millipascal"@en . + +unit:MilliPA-PER-M + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit pascal divided by the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB420" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB420"^^xsd:anyURI ; + qudt:symbol "mPa/m" ; + qudt:ucumCode "mPa.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mPa/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P80" ; + rdfs:isDefinedBy ; + rdfs:label "millipascal per metre" . + +unit:MilliPA-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI derived unit pascal and the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA797" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA797"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the product of the SI derived unit pascal and the SI base unit second" ; + qudt:symbol "mPa·s" ; + qudt:ucumCode "mPa.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C24" ; + rdfs:isDefinedBy ; + rdfs:label "Millipascal Second"@en . + +unit:MilliPA-SEC-PER-BAR + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI derived unit pascal and the SI base unit second divided by the unit of the pressure bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA799" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA799"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the product of the SI derived unit pascal and the SI base unit second divided by the unit of the pressure bar" ; + qudt:symbol "mPa·s/bar" ; + qudt:ucumCode "mPa.s.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "mPa.s/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L16" ; + rdfs:isDefinedBy ; + rdfs:label "Millipascal Second per Bar"@en . + +unit:MilliPA-SEC-PER-K + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI derived unit pascal and the SI base unit second divided by the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA798" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA798"^^xsd:anyURI ; + qudt:symbol "mPa·s/K" ; + qudt:ucumCode "mPa.s.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mPa.s/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L15" ; + rdfs:isDefinedBy ; + rdfs:label "millipascal second per kelvin" . + +unit:MilliR + a qudt:Unit ; + dcterms:description "0.001-fold of the unit roentgen."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000258 ; + qudt:conversionMultiplierSN 2.58E-7 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAB056" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB056"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Roentgen_(unit)"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the unit roentgen." ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:R ; + qudt:symbol "mR" ; + qudt:ucumCode "mR"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2Y" ; + rdfs:isDefinedBy ; + rdfs:label "Milliroentgen"@en . + +unit:MilliRAD + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:guidance "

See NIST section SP811 section7.10

"^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA897" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA897"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:RAD ; + qudt:symbol "mrad" ; + qudt:ucumCode "mrad"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C25" ; + rdfs:isDefinedBy ; + rdfs:label "milliradian"@en . + +unit:MilliRAD_R + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:RAD_R ; + qudt:symbol "mrad" ; + rdfs:isDefinedBy ; + rdfs:label "MilliRad"@en . + +unit:MilliRAD_R-PER-HR + a qudt:Unit ; + dcterms:description "One thousandth part of an absorbed ionizing radiation dose equal to 100 ergs per gram of irradiated material received per hour."@en ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliRAD_R ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:symbol "mrad/h" ; + qudt:ucumCode "mRAD.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mRAD/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Millirads per hour"@en . + +unit:MilliR_man + a qudt:Unit ; + dcterms:description "The roentgen equivalent man (or rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are measures of the health effect of low levels of ionizing radiation on the human body."^^rdf:HTML ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:iec61360Code "0112/2///62720#UAA898" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA898"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ; + qudt:plainTextDescription "The roentgen equivalent man (or rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are measures of the health effect of low levels of ionizing radiation on the human body." ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:R_man ; + qudt:symbol "mrem" ; + qudt:ucumCode "mREM"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L31" ; + rdfs:isDefinedBy ; + rdfs:label "Milliroentgen Equivalent Man"@en . + +unit:MilliS + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit siemens"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAA800" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA800"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit siemens" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:S ; + qudt:symbol "mS" ; + qudt:ucumCode "mS"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C27" ; + rdfs:isDefinedBy ; + rdfs:label "Millisiemens"@en . + +unit:MilliS-PER-CentiM + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliS ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA801" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA801"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre" ; + qudt:symbol "mS/cm" ; + qudt:ucumCode "mS.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "mS/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H61" ; + rdfs:isDefinedBy ; + rdfs:label "Millisiemens per Centimeter"@en-US ; + rdfs:label "Millisiemens per Centimetre"@en . + +unit:MilliS-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliS ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:symbol "mS/m" ; + qudt:ucumCode "mS.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mS/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "MilliSiemens per metre"@en . + +unit:MilliSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Millisecond\" is an Imperial unit for 'Time' expressed as $ms$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Millisecond"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA899" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Millisecond?oldid=495102042"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA899"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:SEC ; + qudt:symbol "ms" ; + qudt:ucumCode "ms"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C26" ; + rdfs:isDefinedBy ; + rdfs:label "millisecond"@en . + +unit:MilliSV + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit sievert"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:iec61360Code "0112/2///62720#UAA802" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA802"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit sievert" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:SV ; + qudt:symbol "mSv" ; + qudt:ucumCode "mSv"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C28" ; + rdfs:isDefinedBy ; + rdfs:label "Millisievert"@en . + +unit:MilliSV-PER-HR + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit sievert divided by the unit hour" ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB465" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB465"^^xsd:anyURI ; + qudt:symbol "mSv/h" ; + qudt:ucumCode "mSv.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "mSv/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P71" ; + rdfs:isDefinedBy ; + rdfs:label "millisievert per hour" . + +unit:MilliSV-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit sievert divided by the unit minute" ; + qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-5 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB469" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB469"^^xsd:anyURI ; + qudt:symbol "mSv/min" ; + qudt:ucumCode "mSv.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mSv/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P75" ; + rdfs:isDefinedBy ; + rdfs:label "millisievert per minute" . + +unit:MilliSV-PER-SEC + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit sievert devided by the SI base unit second" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliSV ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB302" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB302"^^xsd:anyURI ; + qudt:symbol "mSv/s" ; + qudt:ucumCode "mSv.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "mSv/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P66" ; + rdfs:isDefinedBy ; + rdfs:label "millisievert per second" . + +unit:MilliT + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit tesla"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAA803" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA803"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit tesla" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:T ; + qudt:symbol "mT" ; + qudt:ucumCode "mT"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C29" ; + rdfs:isDefinedBy ; + rdfs:label "Millitesla"@en . + +unit:MilliTORR + a qudt:Unit ; + dcterms:description "\"MilliTorr\" is a unit for 'Force Per Area' expressed as $utorr$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.133322 ; + qudt:conversionMultiplierSN 1.33322E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:TORR ; + qudt:symbol "mTorr" ; + rdfs:isDefinedBy ; + rdfs:label "MilliTorr"@en . + +unit:MilliV + a qudt:Unit ; + dcterms:description "0,001-fold of the SI derived unit volt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAA804" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA804"^^xsd:anyURI ; + qudt:plainTextDescription "0,001-fold of the SI derived unit volt" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:V ; + qudt:symbol "mV" ; + qudt:ucumCode "mV"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2Z" ; + rdfs:isDefinedBy ; + rdfs:label "Millivolt"@en . + +unit:MilliV-A + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:MilliVA ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB533" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB533"^^xsd:anyURI ; + qudt:symbol "mV·A" ; + qudt:ucumCode "mV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere" . + +unit:MilliV-A-PER-K + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:MilliVA-PER-K ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD906" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD906"^^xsd:anyURI ; + qudt:symbol "mV·A/K" ; + qudt:ucumCode "mV.A.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mV.A/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere per kelvin" . + +unit:MilliV-A_Reactive + a qudt:Unit ; + dcterms:description "0.001 of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:MilliVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC507" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC507"^^xsd:anyURI ; + qudt:symbol "mV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere reactive" . + +unit:MilliV-A_Reactive-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:MilliVAR-PER-K ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD902" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD902"^^xsd:anyURI ; + qudt:symbol "mvar/K" ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere reactive per kelvin" . + +unit:MilliV-PER-M + a qudt:Unit ; + dcterms:description "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA805" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA805"^^xsd:anyURI ; + qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre" ; + qudt:symbol "mV/m" ; + qudt:ucumCode "mV.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "mV/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C30" ; + rdfs:isDefinedBy ; + rdfs:label "Millivolt per Meter"@en-US ; + rdfs:label "Millivolt per Metre"@en . + +unit:MilliV-PER-MIN + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit volt divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001666667 ; + qudt:conversionMultiplierSN 1.666667E-5 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA806" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA806"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit volt divided by the unit minute" ; + qudt:symbol "mV/min" ; + qudt:ucumCode "mV.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "mV/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H62" ; + rdfs:isDefinedBy ; + rdfs:label "Millivolt per Minute"@en . + +unit:MilliV-PER-V + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit volt per SI derived unit volt" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliV ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD863" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD863"^^xsd:anyURI ; + qudt:symbol "mV/V" ; + qudt:ucumCode "mV.V-1"^^qudt:UCUMcs ; + qudt:ucumCode "mV/V"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millivolt per volt" . + +unit:MilliVA + a qudt:Unit ; + dcterms:description "0.001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB533" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB533"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:VA ; + qudt:symbol "mVA" ; + qudt:ucumCode "mVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere" . + +unit:MilliVA-PER-K + a qudt:Unit ; + dcterms:description "product of the 0.001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliVA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD906" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD906"^^xsd:anyURI ; + qudt:symbol "mVA/K" ; + qudt:ucumCode "mVA.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "mVA/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere per kelvin" . + +unit:MilliVAR + a qudt:Unit ; + dcterms:description "0.001 of the unit volt ampere reactive" ; + qudt:conversionMultiplier 0.001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC507" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC507"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:VAR ; + qudt:symbol "mVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere reactive" . + +unit:MilliVAR-PER-K + a qudt:Unit ; + dcterms:description "0.001-fold of the unit volt ampere reactive divided by the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliVAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD902" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD902"^^xsd:anyURI ; + qudt:symbol "mvar/K" ; + rdfs:isDefinedBy ; + rdfs:label "millivolt ampere reactive per kelvin" . + +unit:MilliW + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA807" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA807"^^xsd:anyURI ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:W ; + qudt:symbol "mW" ; + qudt:ucumCode "mW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C31" ; + rdfs:isDefinedBy ; + rdfs:label "MilliW"@en . + +unit:MilliW-PER-CentiM2-MicroM-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000000.0 ; + qudt:conversionMultiplierSN 1.0E7 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mW/(cm²·μm·sr)" ; + qudt:ucumCode "mW.cm-2.um-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliwatts per square centimetre micrometre steradian"@en . + +unit:MilliW-PER-M2 + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit weber divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAA808" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA808"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit weber divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "mW/m²" ; + qudt:ucumCode "mW.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C32" ; + rdfs:isDefinedBy ; + rdfs:label "Milliwatt per Square Meter"@en-US ; + rdfs:label "Milliwatt per Square Metre"@en . + +unit:MilliW-PER-M2-NanoM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "mW/(m²·nm)" ; + qudt:ucumCode "mW.m-2.nm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliwatts per square metre nanometre"@en . + +unit:MilliW-PER-M2-NanoM-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "mW/(m²·nm·sr)" ; + qudt:ucumCode "mW.m-2.nm-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliwatts per square metre nanometre steradian"@en . + +unit:MilliW-PER-MilliGM + a qudt:Unit ; + dcterms:description "SI derived unit milliwatt divided by the SI derived unit milligram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:W-PER-GM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MilliW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:plainTextDescription "SI derived unit milliwatt divided by the SI derived unit milligram" ; + qudt:symbol "mW/mg" ; + qudt:ucumCode "mW.mg-1"^^qudt:UCUMcs ; + qudt:ucumCode "mW/mg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Milliwatt per Milligram"@en . + +unit:MilliWB + a qudt:Unit ; + dcterms:description "0.001-fold of the SI derived unit weber"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAA809" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA809"^^xsd:anyURI ; + qudt:plainTextDescription "0.001-fold of the SI derived unit weber" ; + qudt:prefix prefix:Milli ; + qudt:scalingOf unit:WB ; + qudt:symbol "mWb" ; + qudt:ucumCode "mWb"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C33" ; + rdfs:isDefinedBy ; + rdfs:label "Milliweber"@en . + +unit:MillionUSD-PER-YR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:isReplacedBy unit:MegaCCY_USD-PER-YR ; + qudt:deprecated true ; + qudt:expression "$M\\$/yr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MillionUSD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "$M/a" ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars per Year"@en . + +unit:N + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The \"Newton\" is the SI unit of force. A force of one newton will accelerate a mass of one kilogram at the rate of one meter per second per second. The newton is named for Isaac Newton (1642-1727), the British mathematician, physicist, and natural philosopher. He was the first person to understand clearly the relationship between force (F), mass (m), and acceleration (a) expressed by the formula $F = m \\cdot a$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Newton"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:KiloGM-M-PER-SEC2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA235" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Newton?oldid=488427661"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA235"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:newton ; + qudt:symbol "N" ; + qudt:ucumCode "N"^^qudt:UCUMcs ; + qudt:udunitsCode "N" ; + qudt:uneceCommonCode "NEW" ; + rdfs:isDefinedBy ; + rdfs:label "Newton"@de ; + rdfs:label "newton"@cs ; + rdfs:label "newton"@en ; + rdfs:label "newton"@es ; + rdfs:label "newton"@fr ; + rdfs:label "newton"@hu ; + rdfs:label "newton"@it ; + rdfs:label "newton"@ms ; + rdfs:label "newton"@pt ; + rdfs:label "newton"@ro ; + rdfs:label "newton"@sl ; + rdfs:label "newton"@tr ; + rdfs:label "newtonium"@la ; + rdfs:label "niuton"@pl ; + rdfs:label "νιούτον"@el ; + rdfs:label "ньютон"@ru ; + rdfs:label "нютон"@bg ; + rdfs:label "ניוטון"@he ; + rdfs:label "نيوتن"@ar ; + rdfs:label "نیوتن"@fa ; + rdfs:label "न्यूटन"@hi ; + rdfs:label "ニュートン"@ja ; + rdfs:label "牛顿"@zh . + +unit:N-CentiM + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA237" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA237"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit newton and the 0.01-fold of the SI base unit metre" ; + qudt:symbol "N·cm" ; + qudt:ucumCode "N.cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F88" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Centimeter"@en-US ; + rdfs:label "Newton Centimetre"@en . + +unit:N-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Torque\" is the tendency of a force to cause a rotation, is the product of the force and the distance from the center of rotation to the point where the force is applied. Torque has the same units as work or energy, but it is a different physical concept. To stress the difference, scientists measure torque in newton meters rather than in joules, the SI unit of work. One newton meter is approximately 0.737562 pound foot."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Newton_metre"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:J ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA239" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Newton_metre?oldid=493923333"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA239"^^xsd:anyURI ; + qudt:siUnitsExpression "N.m" ; + qudt:symbol "N·m" ; + qudt:ucumCode "N.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NU" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter"@en-US ; + rdfs:label "Newtonmeter"@de ; + rdfs:label "newton meter"@ms ; + rdfs:label "newton meter"@sl ; + rdfs:label "newton metr"@cs ; + rdfs:label "newton metre"@en ; + rdfs:label "newton metre"@tr ; + rdfs:label "newton metro"@es ; + rdfs:label "newton per metro"@it ; + rdfs:label "newton-metro"@pt ; + rdfs:label "newton-metru"@ro ; + rdfs:label "newton-mètre"@fr ; + rdfs:label "niutonometr; dżul na radian"@pl ; + rdfs:label "νιούτον επί μέτρο; νιουτόμετρο"@el ; + rdfs:label "ньютон-метр"@ru ; + rdfs:label "нютон-метър"@bg ; + rdfs:label "نيوتن متر"@ar ; + rdfs:label "نیوتون متر"@fa ; + rdfs:label "न्यूटन मीटर"@hi ; + rdfs:label "ニュートンメートル"@ja ; + rdfs:label "牛米"@zh . + +unit:N-M-PER-A + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the SI base unit ampere"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAA241" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA241"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit metre divided by the SI base unit ampere" ; + qudt:symbol "N·m/A" ; + qudt:ucumCode "N.m.A-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m/A"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F90" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter per Ampere"@en-US ; + rdfs:label "Newton Metre per Ampere"@en . + +unit:N-M-PER-ARCMIN + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the unit minute [unit of angle]" ; + qudt:conversionMultiplier 3437.746873197331483367149303409351 ; + qudt:conversionMultiplierSN 3.437746873197331483367149303409351E3 ; + qudt:exactMatch unit:N-M-PER-MIN_Angle ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ARCMIN ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerAngle ; + qudt:hasQuantityKind quantitykind:TorsionalSpringConstant ; + qudt:iec61360Code "0112/2///62720#UAD923" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD923"^^xsd:anyURI ; + qudt:symbol "N·m/'" ; + qudt:ucumCode "N.m.'-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "newton metre per minute [unit of angle]" . + +unit:N-M-PER-DEG + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the unit degree" ; + qudt:conversionMultiplier 57.29577957855229894302178227976183 ; + qudt:conversionMultiplierSN 5.729577957855229894302178227976183E1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerAngle ; + qudt:hasQuantityKind quantitykind:TorsionalSpringConstant ; + qudt:iec61360Code "0112/2///62720#UAB308" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB308"^^xsd:anyURI ; + qudt:symbol "N·m/°" ; + qudt:ucumCode "N.m.deg-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m/deg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F89" ; + rdfs:isDefinedBy ; + rdfs:label "newton metre per degree" . + +unit:N-M-PER-DEG-M + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 57.29577957855229894302178227976183 ; + qudt:conversionMultiplierSN 5.729577957855229894302178227976183E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ModulusOfRotationalSubgradeReaction ; + qudt:plainTextDescription "A common unit for measuring the modulus of rotational subgrade reaction." ; + qudt:symbol "N·m/(°·m)" ; + qudt:ucumCode "N.m.deg-1.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton metre per degree metre"@en . + +unit:N-M-PER-KiloGM + a qudt:Unit ; + dcterms:description "product of the derived SI unit newton and the SI base unit metre divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAB490" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB490"^^xsd:anyURI ; + qudt:plainTextDescription "product of the derived SI unit newton and the SI base unit metre divided by the SI base unit kilogram" ; + qudt:symbol "N·m/kg" ; + qudt:ucumCode "N.m.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m/kg"^^qudt:UCUMcs ; + qudt:udunitsCode "gp" ; + qudt:uneceCommonCode "G19" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter per Kilogram"@en-US ; + rdfs:label "Newton Metre per Kilogram"@en . + +unit:N-M-PER-M + a qudt:Unit ; + dcterms:description "This is the SI unit for the rolling resistance, which is equivalent to drag force in newton"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerLength ; + qudt:iec61360Code "0112/2///62720#UAB463" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB463"^^xsd:anyURI ; + qudt:plainTextDescription "This is the SI unit for the rolling resistance, which is equivalent to drag force in newton" ; + qudt:symbol "N·m/m" ; + qudt:ucumCode "N.m.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q27" ; + rdfs:isDefinedBy ; + rdfs:label "Newton meter per meter"@en-US ; + rdfs:label "Newton metre per metre"@en ; + rdfs:label "Newtonmeter pro Meter"@de . + +unit:N-M-PER-M-RAD + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:N-PER-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:ModulusOfRotationalSubgradeReaction ; + qudt:symbol "N·m/(m·rad)" ; + qudt:ucumCode "N.m.m-1.rad-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter per Meter Radian"@en-US ; + rdfs:label "Newton Metre per Metre Radian"@en . + +unit:N-M-PER-M2 + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA244" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA244"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit metre divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "N·m/m²" ; + qudt:ucumCode "N.m.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H86" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter per Square Meter"@en-US ; + rdfs:label "Newton Metre per Square Metre"@en . + +unit:N-M-PER-MIN_Angle + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the unit minute [unit of angle]" ; + qudt:conversionMultiplier 3437.746873197331483367149303409351 ; + qudt:conversionMultiplierSN 3.437746873197331483367149303409351E3 ; + qudt:exactMatch unit:N-M-PER-ARCMIN ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN_Angle ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerAngle ; + qudt:hasQuantityKind quantitykind:TorsionalSpringConstant ; + qudt:iec61360Code "0112/2///62720#UAD923" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD923"^^xsd:anyURI ; + qudt:symbol "N·m/'" ; + qudt:ucumCode "N.m.'-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "newton metre per minute [unit of angle]" . + +unit:N-M-PER-RAD + a qudt:Unit ; + dcterms:description "Newton Meter per Radian is the SI unit for Torsion Constant"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:TorquePerAngle ; + qudt:hasQuantityKind quantitykind:TorsionalSpringConstant ; + qudt:iec61360Code "0112/2///62720#UAB309" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB309"^^xsd:anyURI ; + qudt:plainTextDescription "Newton Meter per Radian is the SI unit for Torsion Constant" ; + qudt:symbol "N·m/rad" ; + qudt:ucumCode "N.m.rad-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m/rad"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M93" ; + rdfs:isDefinedBy ; + rdfs:label "Newton meter per radian"@en-US ; + rdfs:label "Newton metre per radian"@en ; + rdfs:label "Newtonmeter pro Radian"@de . + +unit:N-M-PER-W0dot5 + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the square root out of the SI derived unit watt" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -5 ; + qudt:hasUnit unit:W0dot ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA242" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA242"^^xsd:anyURI ; + qudt:symbol "N·m/√W" ; + qudt:uneceCommonCode "H41" ; + rdfs:isDefinedBy ; + rdfs:label "newton metre watt to the power minus 0.5" . + +unit:N-M-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI derived unit of angular momentum. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Newton_metre"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:AngularImpulse ; + qudt:hasQuantityKind quantitykind:AngularMomentum ; + qudt:iec61360Code "0112/2///62720#UAA245" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/SI_derived_unit"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA245"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:siUnitsExpression "N.m.sec" ; + qudt:symbol "N·m·s" ; + qudt:ucumCode "N.m.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C53" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter Second"@en-US ; + rdfs:label "Newtonmetersekunde"@de ; + rdfs:label "newton meter saat"@ms ; + rdfs:label "newton metr sekunda"@cs ; + rdfs:label "newton metre saniye"@tr ; + rdfs:label "newton metre second"@en ; + rdfs:label "newton metro secondo"@it ; + rdfs:label "newton metro segundo"@es ; + rdfs:label "newton-metro-segundo"@pt ; + rdfs:label "newton-metru-secundă"@ro ; + rdfs:label "newton-mètre-seconde"@fr ; + rdfs:label "niutonometrosekunda"@pl ; + rdfs:label "ньютон-метр-секунда"@ru ; + rdfs:label "نيوتن متر ثانية"@ar ; + rdfs:label "نیوتون ثانیه"@fa ; + rdfs:label "न्यूटन मीटर सैकण्ड"@hi ; + rdfs:label "ニュートンメートル秒"@ja ; + rdfs:label "牛秒"@zh . + +unit:N-M-SEC-PER-M + a qudt:Unit ; + dcterms:description "Newton metre seconds measured per metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:plainTextDescription "Newton metre seconds measured per metre" ; + qudt:symbol "N·m·s/m" ; + qudt:ucumCode "N.m.s.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m.s/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton meter seconds per meter"@en-US ; + rdfs:label "Newton metre seconds per metre"@en ; + rdfs:label "Newtonmetersekunden pro Meter"@de . + +unit:N-M-SEC-PER-RAD + a qudt:Unit ; + dcterms:description "Newton metre seconds measured per radian"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AngularMomentumPerAngle ; + qudt:plainTextDescription "Newton metre seconds measured per radian" ; + qudt:symbol "N·m·s/rad" ; + qudt:ucumCode "N.m.s.rad-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m.s/rad"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton meter seconds per radian"@en-US ; + rdfs:label "Newton metre seconds per radian"@en ; + rdfs:label "Newtonmetersekunden pro Radian"@de . + +unit:N-M2 + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:WarpingMoment ; + qudt:symbol "N·m²" ; + qudt:ucumCode "N.m2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton Square Meter"@en-US ; + rdfs:label "Newton Square Metre"@en . + +unit:N-M2-PER-A + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the power of SI base unit metre with exponent 2 divided by the SI base unit ampere" ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:WB-M ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:iec61360Code "0112/2///62720#UAB332" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB332"^^xsd:anyURI ; + qudt:symbol "N·m²/A" ; + qudt:ucumCode "N.m2.A-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.m2/A"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P49" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Meter Squared per Ampere"@en-US ; + rdfs:label "Newton Metre Squared per Ampere"@en . + +unit:N-M2-PER-KiloGM2 + a qudt:Unit ; + dcterms:description "unit of gravitational constant as product of the derived SI unit newton, the power of the SI base unit metre with the exponent 2 divided by the power of the SI base unit kilogram with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB491" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB491"^^xsd:anyURI ; + qudt:plainTextDescription "unit of gravitational constant as product of the derived SI unit newton, the power of the SI base unit metre with the exponent 2 divided by the power of the SI base unit kilogram with the exponent 2" ; + qudt:symbol "N·m²/kg²" ; + qudt:ucumCode "N.m2.kg-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C54" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Square Meter per Square Kilogram"@en-US ; + rdfs:label "Newton Square Metre per Square Kilogram"@en . + +unit:N-PER-A + a qudt:Unit ; + dcterms:description "SI derived unit newton divided by the SI base unit ampere"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:iec61360Code "0112/2///62720#UAA236" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA236"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit newton divided by the SI base unit ampere" ; + qudt:symbol "N/A" ; + qudt:ucumCode "N.A-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/A"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H40" ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Ampere"@en . + +unit:N-PER-C + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Newton Per Coulomb ( N/C) is a unit in the category of Electric field strength. It is also known as newtons/coulomb. Newton Per Coulomb ( N/C) has a dimension of MLT-3I-1 where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. It essentially the same as the corresponding standard SI unit V/m."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$N/C$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerElectricCharge ; + qudt:symbol "N/C" ; + qudt:ucumCode "N.C-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/C"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Coulomb"@en . + +unit:N-PER-CentiM + a qudt:Unit ; + dcterms:description "SI derived unit newton divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA238" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA238"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit newton divided by the 0.01-fold of the SI base unit metre" ; + qudt:symbol "N/cm" ; + qudt:ucumCode "N.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M23" ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Centimeter"@en-US ; + rdfs:label "Newton per Centimetre"@en . + +unit:N-PER-CentiM2 + a qudt:Unit ; + dcterms:description "derived SI unit newton divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB183" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB183"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit newton divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2" ; + qudt:symbol "N/cm²" ; + qudt:ucumCode "N.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E01" ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Square Centimeter"@en-US ; + rdfs:label "Newton per Square Centimetre"@en . + +unit:N-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Gravitational field strength at a point is the gravitational force per unit mass at that point. It is a vector and its S.I. unit is N kg-1."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$N/kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:ThrustToMassRatio ; + qudt:symbol "N/kg" ; + qudt:ucumCode "N.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Kilogram"@en . + +unit:N-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Newton Per Meter (N/m) is a unit in the category of Surface tension. It is also known as newtons per meter, newton per metre, newtons per metre, newton/meter, newton/metre. This unit is commonly used in the SI unit system. Newton Per Meter (N/m) has a dimension of MT-2 where $M$ is mass, and $T$ is time. This unit is the standard SI unit in this category."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$N/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA246" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA246"^^xsd:anyURI ; + qudt:symbol "N/m" ; + qudt:ucumCode "N.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4P" ; + rdfs:isDefinedBy ; + rdfs:label "Newton je Meter"@de ; + rdfs:label "Newton per Meter"@en-US ; + rdfs:label "newton al metro"@it ; + rdfs:label "newton bölü metre"@tr ; + rdfs:label "newton na meter"@sl ; + rdfs:label "newton par mètre"@fr ; + rdfs:label "newton pe metru"@ro ; + rdfs:label "newton per meter"@ms ; + rdfs:label "newton per metre"@en ; + rdfs:label "newton por metro"@es ; + rdfs:label "newton por metro"@pt ; + rdfs:label "newtonů na metr"@cs ; + rdfs:label "niuton na metr"@pl ; + rdfs:label "ньютон на метр"@ru ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "نیوتن بر متر"@fa ; + rdfs:label "प्रति मीटर न्यूटन"@hi ; + rdfs:label "ニュートン毎メートル"@ja ; + rdfs:label "牛顿每米"@zh . + +unit:N-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ; + qudt:exactMatch unit:KiloGM-PER-M-SEC2 ; + qudt:exactMatch unit:PA ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfLinearSubgradeReaction ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA247" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA247"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ; + qudt:siUnitsExpression "N/m^2" ; + qudt:symbol "N/m²" ; + qudt:ucumCode "N.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C55" ; + rdfs:isDefinedBy ; + rdfs:label "Newtons per Square Meter"@en-US ; + rdfs:label "Newtons per Square Metre"@en . + +unit:N-PER-M3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ModulusOfSubgradeReaction ; + qudt:symbol "N/m³" ; + qudt:ucumCode "N.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newtons per cubic metre"@en . + +unit:N-PER-MilliM + a qudt:Unit ; + dcterms:description "SI derived unit newton divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAA249" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA249"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit newton divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "N/mm" ; + qudt:ucumCode "N.mm-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F47" ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Millimeter"@en-US ; + rdfs:label "Newton per Millimetre"@en . + +unit:N-PER-MilliM2 + a qudt:Unit ; + dcterms:description "SI derived unit newton divided by the 0.000001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA250" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA250"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit newton divided by the 0.000001-fold of the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "N/mm²" ; + qudt:ucumCode "N.mm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C56" ; + rdfs:isDefinedBy ; + rdfs:label "Newton per Square Millimeter"@en-US ; + rdfs:label "Newton per Square Millimetre"@en . + +unit:N-PER-RAD + a qudt:Unit ; + dcterms:description "A one-newton force applied for one angle/torsional torque"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:exactMatch unit:N-M-PER-M-RAD ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAngle ; + qudt:plainTextDescription "A one-newton force applied for one angle/torsional torque" ; + qudt:symbol "N/rad" ; + qudt:ucumCode "N.rad-1"^^qudt:UCUMcs ; + qudt:ucumCode "N/rad"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton per radian"@en ; + rdfs:label "Newton per radian"@en-US ; + rdfs:label "Newton pro Radian"@de . + +unit:N-SEC + a qudt:Unit ; + dcterms:description "product of the SI derived unit newton and the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:iec61360Code "0112/2///62720#UAA251" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA251"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit second" ; + qudt:symbol "N·s" ; + qudt:ucumCode "N.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C57" ; + rdfs:isDefinedBy ; + rdfs:label "Newtonsekunde"@de ; + rdfs:label "newton per secondo"@it ; + rdfs:label "newton saat"@ms ; + rdfs:label "newton saniye"@tr ; + rdfs:label "newton second"@en ; + rdfs:label "newton segundo"@es ; + rdfs:label "newton sekunda"@cs ; + rdfs:label "newton-seconde"@fr ; + rdfs:label "newton-secundă"@ro ; + rdfs:label "newton-segundo"@pt ; + rdfs:label "niutonosekunda"@pl ; + rdfs:label "ньютон-секунда"@ru ; + rdfs:label "نيوتن ثانية"@ar ; + rdfs:label "نیوتون ثانیه"@fa ; + rdfs:label "न्यूटन सैकण्ड"@hi ; + rdfs:label "ニュートン秒"@ja ; + rdfs:label "牛秒"@zh . + +unit:N-SEC-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Newton second measured per metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:expression "$N-s/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA252" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA252"^^xsd:anyURI ; + qudt:plainTextDescription "Newton second measured per metre" ; + qudt:symbol "N·s/m" ; + qudt:ucumCode "N.s.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.s/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C58" ; + rdfs:isDefinedBy ; + rdfs:label "Newton Second per Meter"@en-US ; + rdfs:label "Newton Second per Metre"@en ; + rdfs:label "Newtonsekunden pro Meter"@de . + +unit:N-SEC-PER-M2 + a qudt:Unit ; + dcterms:description "unit of the dynamic viscosity as a product of unit of the pressure (newton by square metre) multiplied with the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB428" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB428"^^xsd:anyURI ; + qudt:symbol "N·s/m²" ; + qudt:ucumCode "N.s.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N36" ; + rdfs:isDefinedBy ; + rdfs:label "newton second per square metre" . + +unit:N-SEC-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The SI unit of specific acoustic impedance. + When sound waves pass through any physical substance the pressure of the waves causes the particles of the substance to move. + The sound specific impedance is the ratio between the sound pressure and the particle velocity it produces. + The specific impedance is $1 N \\cdot s \\cdot m^{-3}$ if unit pressure produces unit velocity. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:expression "$N \\cdot s \\cdot m^{-3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ; + qudt:latexSymbol "$N \\cdot s \\cdot m^{-3}$"^^qudt:LatexString ; + qudt:symbol "N·s/m³" ; + qudt:ucumCode "N.s.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton second per Cubic Meter"@en-US ; + rdfs:label "Newton second per Cubic Metre"@en . + +unit:N-SEC-PER-RAD + a qudt:Unit ; + dcterms:description "Newton seconds measured per radian"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:MomentumPerAngle ; + qudt:plainTextDescription "Newton seconds measured per radian" ; + qudt:symbol "N·s/rad" ; + qudt:ucumCode "N.s.rad-1"^^qudt:UCUMcs ; + qudt:ucumCode "N.s/rad"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Newton seconds per radian"@en ; + rdfs:label "Newton seconds per radian"@en-US ; + rdfs:label "Newtonsekunden pro Radian"@de . + +unit:NAT + a qudt:Unit ; + dcterms:description "A nat is a logarithmic unit of information or entropy, based on natural logarithms and powers of e, rather than the powers of 2 and base 2 logarithms which define the bit. The nat is the natural unit for information entropy. Physical systems of natural units which normalize Boltzmann's constant to 1 are effectively measuring thermodynamic entropy in nats."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nat"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB345" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nat?oldid=474010287"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB345"^^xsd:anyURI ; + qudt:symbol "nat" ; + qudt:uneceCommonCode "Q16" ; + rdfs:isDefinedBy ; + rdfs:label "Nat"@en . + +unit:NAT-PER-SEC + a qudt:Unit ; + dcterms:description "\"Nat per Second\" is information rate in natural units."^^rdf:HTML ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$nat-per-sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NAT ; + ] ; + qudt:hasQuantityKind quantitykind:InformationFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB348" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nat?oldid=474010287"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB348"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:symbol "nat/s" ; + qudt:uneceCommonCode "Q19" ; + rdfs:isDefinedBy ; + rdfs:label "Nat per Second"@en . + +unit:NP + a qudt:DimensionlessUnit, qudt:LogarithmicUnit, qudt:Unit ; + dcterms:description "The neper is a logarithmic unit for ratios of measurements of physical field and power quantities, such as gain and loss of electronic signals. It has the unit symbol Np. The unit's name is derived from the name of John Napier, the inventor of logarithms. As is the case for the decibel and bel, the neper is not a unit in the International System of Units (SI), but it is accepted for use alongside the SI. Like the decibel, the neper is a unit in a logarithmic scale. While the bel uses the decadic (base-10) logarithm to compute ratios, the neper uses the natural logarithm, based on Euler's number"^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Neper"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:iec61360Code "0112/2///62720#UAA253" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA253"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Neper"^^xsd:anyURI ; + qudt:siExactMatch si-unit:neper ; + qudt:symbol "Np" ; + qudt:ucumCode "Np"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C50" ; + rdfs:isDefinedBy ; + rdfs:label "Neper"@en . + +unit:NP-PER-SEC + a qudt:Unit ; + dcterms:description "unit neper divided by the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NP ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA254" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA254"^^xsd:anyURI ; + qudt:symbol "Np/s" ; + qudt:ucumCode "Np.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Np/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C51" ; + rdfs:isDefinedBy ; + rdfs:label "neper per second" . + +unit:NT + a qudt:Unit ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Net_tonnage"^^xsd:anyURI ; + qudt:plainTextDescription """Net tonnage is used in the United States to determine eligibility for registering boats with + the federal government. It is a nonlinear unit derived from the total volume of a ship's cargo space as well as some + dimensionless factors. Net tonnage is not a measure of the weight of the ship or its cargo, and should not be confused + with terms such as deadweight tonnage or displacement. Net tonnage is also used to determine the amount of money that + can be charged to a ship for using a port's facilities.""" ; + qudt:symbol "NT" ; + rdfs:isDefinedBy ; + rdfs:label "Net tonnage"@en ; + rdfs:seeAlso unit:TON_Register . + +unit:NTU + a qudt:Unit ; + dcterms:description "\"Nephelometry Turbidity Unit\" is a C.G.S System unit for 'Turbidity' expressed as $NTU$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Turbidity ; + qudt:symbol "NTU" ; + rdfs:isDefinedBy ; + rdfs:label "Nephelometry Turbidity Unit"@en . + +unit:NUM + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "\"Number\" is a unit for 'Dimensionless' expressed as (\\#$."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:ChargeNumber ; + qudt:hasQuantityKind quantitykind:CoefficientOfPerformance ; + qudt:hasQuantityKind quantitykind:Count ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:hasQuantityKind quantitykind:FrictionCoefficient ; + qudt:hasQuantityKind quantitykind:HyperfineStructureQuantumNumber ; + qudt:hasQuantityKind quantitykind:IonTransportNumber ; + qudt:hasQuantityKind quantitykind:Landau-GinzburgNumber ; + qudt:hasQuantityKind quantitykind:MagneticQuantumNumber ; + qudt:hasQuantityKind quantitykind:MassNumber ; + qudt:hasQuantityKind quantitykind:NeutronNumber ; + qudt:hasQuantityKind quantitykind:NuclearSpinQuantumNumber ; + qudt:hasQuantityKind quantitykind:NucleonNumber ; + qudt:hasQuantityKind quantitykind:OpeningRatio ; + qudt:hasQuantityKind quantitykind:OrbitalAngularMomentumQuantumNumber ; + qudt:hasQuantityKind quantitykind:Population ; + qudt:hasQuantityKind quantitykind:PrincipalQuantumNumber ; + qudt:hasQuantityKind quantitykind:QuantumNumber ; + qudt:hasQuantityKind quantitykind:ReynoldsNumber ; + qudt:hasQuantityKind quantitykind:SpinQuantumNumber ; + qudt:hasQuantityKind quantitykind:StoichiometricNumber ; + qudt:hasQuantityKind quantitykind:TotalAngularMomentumQuantumNumber ; + qudt:symbol "#" ; + qudt:ucumCode "1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number"@en . + +unit:NUM-PER-CentiM-KiloYR + a qudt:Unit ; + qudt:conversionMultiplier 0.000000003168808781402895023702689684893655 ; + qudt:conversionMultiplierSN 3.168808781402895023702689684893655E-9 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloYR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "#/(cm·1000 a)" ; + qudt:ucumCode "{#}.cm-2.ka-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per square centimetre thousand years"@en . + +unit:NUM-PER-GM + a qudt:Unit ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:PER-GM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "#/g" ; + qudt:ucumCode "/g"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per gram"@en . + +unit:NUM-PER-HA + a qudt:Unit ; + dcterms:description "Count of an entity or phenomenon's occurrence in 10,000 times the SI unit area (square metre)."@en ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:symbol "#/ha" ; + qudt:ucumCode "/har"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per hectare"@en . + +unit:NUM-PER-HA-YR + a qudt:Unit ; + qudt:conversionMultiplier 0.000000000003168808781402895 ; + qudt:conversionMultiplierSN 3.168808781402895e-12 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:Flux ; + qudt:plainTextDescription "number divided by the unit hectare and by the unit year" ; + qudt:symbol "#/(ha·a)" ; + qudt:ucumCode "{#}.har-1.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per Hectare Year"@en . + +unit:NUM-PER-HR + a qudt:Unit ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:exactMatch unit:PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:CountRate ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "#/h" ; + qudt:ucumCode "/h"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per hour"@en . + +unit:NUM-PER-HectoGM + a qudt:Unit ; + dcterms:description "Count of an entity or phenomenon occurrence in one 10th of the SI unit of mass (kilogram)."@en ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "#/hg" ; + qudt:ucumCode "/hg"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.hg-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/hg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per 100 grams"@en . + +unit:NUM-PER-KiloGM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Count of an entity or phenomenon's occurrence divided by SI base unit kilogram"@en ; + qudt:conversionMultiplier 1.0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:plainTextDescription "Count of an entity or phenomenon's occurrence divided by SI base unit kilogram" ; + qudt:symbol "#/kg" ; + qudt:ucumCode "{#}.kg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per kilogram"@en . + +unit:NUM-PER-KiloM2 + a qudt:Unit ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:symbol "#/km²" ; + qudt:ucumCode "{#}.km-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per square kilometre"@en . + +unit:NUM-PER-L + a qudt:Unit ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:PER-L ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/L" ; + qudt:ucumCode "/L"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per litre"@en . + +unit:NUM-PER-M + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:PER-M ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:symbol "#/m" ; + qudt:ucumCode "/m"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per metre"@en . + +unit:NUM-PER-M2 + a qudt:Unit ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:symbol "#/m²" ; + qudt:ucumCode "/m2"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per square metre"@en . + +unit:NUM-PER-M2-DAY + a qudt:Unit ; + qudt:conversionMultiplier 0.0000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:Flux ; + qudt:symbol "#/(m²·d)" ; + qudt:ucumCode "{#}.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per square metre day"@en . + +unit:NUM-PER-M3 + a qudt:Unit ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/m³" ; + qudt:ucumCode "/m3"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per cubic metre"@en . + +unit:NUM-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit for count rate."^^qudt:LatexString ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:CountRate ; + qudt:symbol "NPM" ; + rdfs:isDefinedBy ; + rdfs:label "Number per Minute"@en . + +unit:NUM-PER-MicroL + a qudt:Unit ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroL ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/μL" ; + qudt:ucumCode "/uL"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.uL-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per microlitre"@en . + +unit:NUM-PER-MilliGM + a qudt:Unit ; + dcterms:description "Count of an entity or phenomenon occurrence in one millionth of the SI unit of mass (kilogram)."@en ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "#/mg" ; + qudt:ucumCode "/mg"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.mg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per milligram"@en . + +unit:NUM-PER-MilliL + a qudt:Unit ; + dcterms:description "Count of an entity or phenomenon occurrence in one thousandth of the SI unit of volume (litre)."@en ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/mL" ; + qudt:ucumCode "/mL"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.mL-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per milliliter"@en-US ; + rdfs:label "Number per millilitre"@en . + +unit:NUM-PER-MilliM3 + a qudt:Unit ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:exactMatch unit:PER-MilliM3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/mm³" ; + qudt:ucumCode "/mm3"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.mm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per cubic millimeter"@en . + +unit:NUM-PER-NanoL + a qudt:Unit ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoL ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/nL" ; + qudt:ucumCode "/nL"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.nL-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per nanoliter"@en-US ; + rdfs:label "Number per nanolitre"@en . + +unit:NUM-PER-PicoL + a qudt:Unit ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PicoL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:NumberDensity ; + qudt:symbol "#/pL" ; + qudt:ucumCode "/pL"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.pL-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per picoliter"@en . + +unit:NUM-PER-SEC + a qudt:Unit ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:CountRate ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "#/s" ; + qudt:ucumCode "/s"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Counts per second"@en . + +unit:NUM-PER-YR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Number per Year\" is a unit for 'Frequency' expressed as $\\#/yr$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00000003168808781402895023702689684893655 ; + qudt:conversionMultiplierSN 3.168808781402895023702689684893655E-8 ; + qudt:exactMatch unit:PER-YR ; + qudt:expression "$\\#/yr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NUM ; + ] ; + qudt:hasQuantityKind quantitykind:CountRate ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "#/a" ; + qudt:ucumCode "/a"^^qudt:UCUMcs ; + qudt:ucumCode "{#}.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "{#}/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Number per Year"@en . + +unit:NanoA + a qudt:Unit ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA901" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA901"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:A ; + qudt:symbol "nA" ; + qudt:ucumCode "nA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C39" ; + rdfs:isDefinedBy ; + rdfs:label "nanoampere"@en . + +unit:NanoA-PER-K + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPerTemperature ; + qudt:iec61360Code "0112/2///62720#UAD899" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD899"^^xsd:anyURI ; + qudt:symbol "nA/K" ; + qudt:ucumCode "nA.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "nA/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "nanoampere per kelvin" . + +unit:NanoBQ + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:BQ ; + qudt:symbol "nBq" ; + rdfs:isDefinedBy ; + rdfs:label "NanoBecquerel"@en . + +unit:NanoBQ-PER-L + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoBQ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:ActivityConcentration ; + qudt:symbol "nBq/L" ; + qudt:ucumCode "nBq.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "nBq/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanobecquerels per litre"@en . + +unit:NanoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A NanoCoulomb is $10^{-9} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA902" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA902"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:C ; + qudt:symbol "nC" ; + qudt:ucumCode "nC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C40" ; + rdfs:isDefinedBy ; + rdfs:label "NanoCoulomb"@en . + +unit:NanoFARAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A common metric unit of electric capacitance equal to $10^{-9} farad$. This unit was previously called the $millimicrofarad$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA903" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA903"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "nF" ; + qudt:ucumCode "nF"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C41" ; + rdfs:isDefinedBy ; + rdfs:label "Nanofarad"@en . + +unit:NanoFARAD-PER-M + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoFARAD ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA904" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA904"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit farad divided by the SI base unit metre" ; + qudt:symbol "nF/m" ; + qudt:ucumCode "nF.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "nF/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C42" ; + rdfs:isDefinedBy ; + rdfs:label "Nanofarad per Meter"@en-US ; + rdfs:label "Nanofarad per Metre"@en . + +unit:NanoGM + a qudt:Unit ; + dcterms:description "10**-9 grams or one 10**-12 of the SI standard unit of mass (kilogram)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB836" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB836"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:GM ; + qudt:symbol "ng" ; + qudt:ucumCode "ng"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram"@en . + +unit:NanoGM-PER-CentiM2 + a qudt:Unit ; + dcterms:description "0,000,000,000,001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre and exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "0,000,000,000,001-fold of the SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre and exponent 2" ; + qudt:symbol "ng/cm²" ; + qudt:ucumCode "ng.cm-2"^^qudt:UCUMcs ; + qudt:ucumCode "ng/cm2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Square Centimeter"@en-US ; + rdfs:label "Nanogram per Square Centimetre"@en . + +unit:NanoGM-PER-CentiM2-DAY + a qudt:Unit ; + dcterms:description "A rate of change of 1e-12 of the SI unit of mass over 0.00001 of the SI unit of area in a period of one day."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000000011574074 ; + qudt:conversionMultiplierSN 1.1574074E-13 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:symbol "ng/(cm²·d)" ; + qudt:ucumCode "ng.cm-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Square Centimeter Day"@en-US ; + rdfs:label "Nanogram per Square Centimetre Day"@en . + +unit:NanoGM-PER-DAY + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-17 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:symbol "ng/d" ; + qudt:ucumCode "ng.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Day"@en . + +unit:NanoGM-PER-DeciL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A derived unit for amount-of-substance concentration measured in ng/dL."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:expression "$ng/dL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DeciL ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "ng/dL" ; + qudt:ucumCode "ng.dL-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/dL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Decilitre"@en ; + rdfs:label "Nanogram per Decilitre"@en-US . + +unit:NanoGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "mass ratio consisting of the 0.000000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:iec61360Code "0112/2///62720#UAA911" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA911"^^xsd:anyURI ; + qudt:plainTextDescription "mass ratio consisting of the 0.000000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "ng/kg" ; + qudt:ucumCode "ng.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L32" ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Kilogram"@en . + +unit:NanoGM-PER-L + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "ng/L" ; + qudt:ucumCode "ng.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Liter"@nl ; + rdfs:label "Nanogram per Litre"@en . + +unit:NanoGM-PER-M2-PA-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ; + qudt:symbol "ng/(m²·Pa·s)" ; + qudt:ucumCode "ng.m-2.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Square Metre Pascal Second"@en . + +unit:NanoGM-PER-M3 + a qudt:Unit ; + dcterms:description "\"0.000000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3\""^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:plainTextDescription "0.000000000001-fold of the SI base unit kilogram divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "ng/m³" ; + qudt:ucumCode "ng.m-3"^^qudt:UCUMcs ; + rdfs:comment "\"Derived from GM-PER-M3 which exists in QUDT\"" ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Cubic Meter"@en-US ; + rdfs:label "Nanogram per Cubic Metre"@en . + +unit:NanoGM-PER-MicroL + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "ng/μL" ; + qudt:ucumCode "ng.uL-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/uL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Microlitre"@en . + +unit:NanoGM-PER-MilliGM + a qudt:Unit ; + dcterms:description "mass ratio consisting of the 0.000000000001-fold of the SI base unit kilogram divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:plainTextDescription "mass ratio consisting of the 0.000000000001-fold of the SI base unit kilogram divided by the milligram" ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "ng/mg" ; + qudt:ucumCode "ng.mg-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/mg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Milligram"@en . + +unit:NanoGM-PER-MilliL + a qudt:Unit ; + dcterms:description "One 10**12 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "ng/mL" ; + qudt:ucumCode "ng.mL-1"^^qudt:UCUMcs ; + qudt:ucumCode "ng/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanogram per Millilitre"@en . + +unit:NanoGRAY + a qudt:Unit ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:hasQuantityKind quantitykind:Kerma ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:GRAY ; + rdfs:isDefinedBy ; + rdfs:label "NanoGRAY" . + +unit:NanoGRAY-PER-HR + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit gray divided by the unit hour" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGRAY ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB479" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB479"^^xsd:anyURI ; + qudt:symbol "nGy/h" ; + qudt:uneceCommonCode "P64" ; + rdfs:isDefinedBy ; + rdfs:label "nanogray per hour" . + +unit:NanoGRAY-PER-MIN + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit gray divided by the unit minute" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGRAY ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB475" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB475"^^xsd:anyURI ; + qudt:symbol "nGy/min" ; + qudt:uneceCommonCode "P60" ; + rdfs:isDefinedBy ; + rdfs:label "nanogray per minute" . + +unit:NanoGRAY-PER-SEC + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit gray divided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoGRAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB300" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB300"^^xsd:anyURI ; + qudt:symbol "nGy/s" ; + qudt:uneceCommonCode "P56" ; + rdfs:isDefinedBy ; + rdfs:label "nanogray per second" . + +unit:NanoH + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit henry"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:exactMatch unit:H_Ab ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:hasQuantityKind quantitykind:Permeance ; + qudt:iec61360Code "0112/2///62720#UAA905" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA905"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit henry" ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:H ; + qudt:symbol "nH" ; + qudt:ucumCode "nH"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C43" ; + rdfs:isDefinedBy ; + rdfs:label "Nanohenry"@en . + +unit:NanoH-PER-M + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit henry divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoH ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticPermeability ; + qudt:hasQuantityKind quantitykind:Permeability ; + qudt:iec61360Code "0112/2///62720#UAA906" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA906"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit henry divided by the SI base unit metre" ; + qudt:symbol "nH/m" ; + qudt:ucumCode "nH.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "nH/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C44" ; + rdfs:isDefinedBy ; + rdfs:label "Nanohenry per Meter"@en-US ; + rdfs:label "Nanohenry per Metre"@en . + +unit:NanoJ + a qudt:Unit ; + dcterms:description "0.000000001-fold of the unit joule" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ExchangeIntegral ; + qudt:hasQuantityKind quantitykind:HamiltonFunction ; + qudt:hasQuantityKind quantitykind:LagrangeFunction ; + qudt:hasQuantityKind quantitykind:LevelWidth ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB739" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB739"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:J ; + qudt:symbol "nJ" ; + rdfs:isDefinedBy ; + rdfs:label "nanojoule" . + +unit:NanoJ-PER-SEC + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB509" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB509"^^xsd:anyURI ; + qudt:symbol "nJ/s" ; + qudt:ucumCode "nJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "nJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "nanojoule per second" . + +unit:NanoKAT + a qudt:Unit ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:KAT ; + rdfs:isDefinedBy ; + rdfs:label "NanoKAT" . + +unit:NanoKAT-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoKAT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "nkat/L" ; + qudt:ucumCode "nkat/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanokatal per Liter"@en-US ; + rdfs:label "Nanokatal per Litre"@en . + +unit:NanoL + a qudt:Unit ; + dcterms:description "0.000000001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:plainTextDescription "0.000000001-fold of the unit litre" ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:L ; + qudt:symbol "nL" ; + qudt:ucumCode "nL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q34" ; + rdfs:isDefinedBy ; + rdfs:label "Nanolitre"@en ; + rdfs:label "Nanolitre"@en-US . + +unit:NanoM + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA912" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA912"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI base unit metre" ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:M ; + qudt:symbol "nm" ; + qudt:ucumCode "nm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C45" ; + rdfs:isDefinedBy ; + rdfs:label "Nanometer"@en-US ; + rdfs:label "Nanometre"@en . + +unit:NanoM-PER-CentiM-MegaPA + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000001 ; + qudt:conversionMultiplierSN 1.0E-13 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siUnitsExpression "nm/cm/MPa" ; + qudt:symbol "nm/(cm·MPa)" ; + qudt:ucumCode "nm.cm-1.MPa-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanometer per Centimeter Megapascal"@en . + +unit:NanoM-PER-CentiM-PSI + a qudt:DerivedUnit, qudt:Unit ; + qudt:conversionMultiplier 0.0000000000145037738 ; + qudt:conversionMultiplierSN 1.45037738E-11 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siUnitsExpression "nm/cm/PSI" ; + qudt:symbol "nm/(cm·psi)" ; + qudt:ucumCode "nm.cm-1.PSI-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanometer per Centimeter PSI"@en . + +unit:NanoM-PER-MilliM-MegaPA + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:exactMatch unit:BREWSTER ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:qkdvNumerator qkdv:A0E0L1I0M0H0T0D0 ; + qudt:siUnitsExpression "nm/mm/MPa" ; + qudt:symbol "nm/(mm·MPa)" ; + qudt:ucumCode "nm.mm-1.MPa-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanometer per Millimeter Megapascal"@en . + +unit:NanoM2 + a qudt:Unit ; + dcterms:description "A unit of area equal to that of a square, of sides 1nm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-18 ; + qudt:expression "$sqnm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:hasQuantityKind quantitykind:HydraulicPermeability ; + qudt:hasQuantityKind quantitykind:NuclearQuadrupoleMoment ; + qudt:plainTextDescription "A unit of area equal to that of a square, of sides 1nm" ; + qudt:symbol "nm²" ; + qudt:ucumCode "nm2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Nanometer"@en-US ; + rdfs:label "Square Nanometre"@en . + +unit:NanoMOL + a qudt:Unit ; + dcterms:description "0.000000001-fold of the unit mole" ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasQuantityKind quantitykind:ExtentOfReaction ; + qudt:iec61360Code "0112/2///62720#UAB523" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB523"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:MOL ; + qudt:symbol "nmol" ; + qudt:uneceCommonCode "Z9" ; + rdfs:isDefinedBy ; + rdfs:label "NanoMole"@en . + +unit:NanoMOL-PER-CentiM3-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-7 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "nmol/(cm³·h)" ; + qudt:ucumCode "nmol.cm-3.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per cubic centimetre hour"@en . + +unit:NanoMOL-PER-GM + a qudt:Unit ; + dcterms:description "Nanomole Per Gram (\\(nanomol/g\\)) is a unit of Molality"^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:hasQuantityKind quantitykind:IonicStrength ; + qudt:hasQuantityKind quantitykind:MolalityOfSolute ; + qudt:plainTextDescription "0.000000001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram" ; + qudt:symbol "nmol/g" ; + qudt:ucumCode "nmol.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "nmol/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per gram"@en . + +unit:NanoMOL-PER-GM-HR + a qudt:Unit ; + dcterms:description "10^-9 SI unit of the quantity of matter per SI unit of mass per unit of time expressed in hour (3,600 seconds)."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "nmol/(g·h)" ; + qudt:ucumCode "nmol.g-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per gram per hour"@en . + +unit:NanoMOL-PER-GM-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "nmol/(g·s)" ; + qudt:ucumCode "nmol.g-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per gram second"@en . + +unit:NanoMOL-PER-KiloGM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:symbol "nmol/kg" ; + qudt:ucumCode "nmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "nmol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per kilogram"@en . + +unit:NanoMOL-PER-L + a qudt:Unit ; + dcterms:description "A scaled unit of amount-of-substance concentration."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:symbol "nmol/L" ; + qudt:ucumCode "nmol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "nmol/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per litre"@en . + +unit:NanoMOL-PER-L-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-11 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "nmol/(L·d)" ; + qudt:ucumCode "nmol.L-1.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per litre day"@en . + +unit:NanoMOL-PER-L-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-10 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "nmol/(L·h)" ; + qudt:ucumCode "nmol.L-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per litre hour"@en . + +unit:NanoMOL-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-14 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "nmol/(m²·d)" ; + qudt:ucumCode "nmol.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per square metre day"@en . + +unit:NanoMOL-PER-M2-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Molar flux equivalent to 1e-9 moles per meter squared per sec."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFluxDensity ; + qudt:plainTextDescription "Molar flux equivalent to 1e-9 moles per meter squared per sec." ; + qudt:symbol "nmol/(m²·s)" ; + qudt:ucumCode "nmol.m-2.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomole per Square Metre per second"@en . + +unit:NanoMOL-PER-MicroGM-HR + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-4 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "nmol/(μg·h)" ; + qudt:ucumCode "nmol.ug-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per microgram hour"@en . + +unit:NanoMOL-PER-MicroMOL + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:qkdvDenominator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:qkdvNumerator qkdv:A1E0L0I0M0H0T0D0 ; + qudt:symbol "nmol/μmol" ; + qudt:ucumCode "nmol.umol-1"^^qudt:UCUMcs ; + qudt:ucumCode "nmol/umol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per micromole"@en . + +unit:NanoMOL-PER-MicroMOL-DAY + a qudt:Unit ; + dcterms:description "Unavailable."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "nmol/(μmol·d)" ; + qudt:ucumCode "nmol.umol-1.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Nanomoles per micromole day"@en . + +unit:NanoN + a qudt:Unit ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:N ; + rdfs:isDefinedBy ; + rdfs:label "NanoN" . + +unit:NanoN-M-PER-M2 + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit newton divided by the SI base unit metre to the power two" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB547" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB547"^^xsd:anyURI ; + qudt:symbol "nN·m/m²" ; + rdfs:isDefinedBy ; + rdfs:label "nanonewton metre per square metre" . + +unit:NanoOHM + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit ohm" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricalResistance ; + qudt:iec61360Code "0112/2///62720#UAB359" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB359"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:OHM ; + qudt:symbol "nΩ" ; + qudt:uneceCommonCode "P22" ; + rdfs:isDefinedBy ; + rdfs:label "nanoohm" . + +unit:NanoOHM-M + a qudt:Unit ; + dcterms:description "0.000000001-fold of the product of the SI derived unit ohm and the SI base unit metre" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoOHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA900" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA900"^^xsd:anyURI ; + qudt:symbol "nΩ·m" ; + qudt:ucumCode "nOhm.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C46" ; + rdfs:isDefinedBy ; + rdfs:label "nanoohm metre" . + +unit:NanoS + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:S ; + qudt:symbol "nS" ; + rdfs:isDefinedBy ; + rdfs:label "NanoSiemens"@en . + +unit:NanoS-PER-CentiM + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit Siemens by the 0.01 fol of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA907" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA907"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens by the 0.01 fol of the SI base unit metre" ; + qudt:symbol "nS/cm" ; + qudt:ucumCode "nS.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "nS/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G44" ; + rdfs:isDefinedBy ; + rdfs:label "Nanosiemens per Centimeter"@en-US ; + rdfs:label "Nanosiemens per Centimetre"@en . + +unit:NanoS-PER-M + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoS ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA908" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA908"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ; + qudt:symbol "nS/m" ; + qudt:ucumCode "nS.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "nS/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G45" ; + rdfs:isDefinedBy ; + rdfs:label "Nanosiemens per Meter"@en-US ; + rdfs:label "Nanosiemens per Metre"@en . + +unit:NanoSEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A nanosecond is a SI unit of time equal to one billionth of a second (10-9 or 1/1,000,000,000 s). One nanosecond is to one second as one second is to 31.69 years. The word nanosecond is formed by the prefix nano and the unit second."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nanosecond"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA913" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nanosecond?oldid=919778950"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA913"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:SEC ; + qudt:symbol "ns" ; + qudt:ucumCode "ns"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C47" ; + rdfs:isDefinedBy ; + rdfs:label "nanosecond"@en . + +unit:NanoSV + a qudt:Unit ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:SV ; + rdfs:isDefinedBy ; + rdfs:label "NanoSV" . + +unit:NanoSV-PER-HR + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit sievert divided by the unit hour" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoSV ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB467" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB467"^^xsd:anyURI ; + qudt:symbol "nSv/h" ; + qudt:uneceCommonCode "P73" ; + rdfs:isDefinedBy ; + rdfs:label "nanosievert per hour" . + +unit:NanoSV-PER-MIN + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit sievert divided by the unit minute" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB471" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB471"^^xsd:anyURI ; + qudt:symbol "nSv/min" ; + qudt:uneceCommonCode "P77" ; + rdfs:isDefinedBy ; + rdfs:label "nanosievert per minute" . + +unit:NanoSV-PER-SEC + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit sievert devided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoSV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB304" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB304"^^xsd:anyURI ; + qudt:symbol "nSv/s" ; + qudt:uneceCommonCode "P68" ; + rdfs:isDefinedBy ; + rdfs:label "nanosievert per second" . + +unit:NanoT + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit tesla"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAA909" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA909"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit tesla" ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:T ; + qudt:symbol "nT" ; + qudt:ucumCode "nT"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C48" ; + rdfs:isDefinedBy ; + rdfs:label "Nanotesla"@en . + +unit:NanoV + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit volt" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAC771" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC771"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:V ; + qudt:symbol "nV" ; + rdfs:isDefinedBy ; + rdfs:label "nanovolt" . + +unit:NanoV-A + a qudt:Unit ; + dcterms:description "0.000000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:NanoVA ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB531" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB531"^^xsd:anyURI ; + qudt:symbol "nV·A" ; + qudt:ucumCode "nV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "nanovolt ampere" . + +unit:NanoV-A_Reactive + a qudt:Unit ; + dcterms:description "0.000000001-fold of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:NanoVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoV ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC505" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC505"^^xsd:anyURI ; + qudt:symbol "nV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "nanovolt ampere reactive" . + +unit:NanoVA + a qudt:Unit ; + dcterms:description "0.000000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB531" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB531"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:VA ; + qudt:symbol "nVA" ; + qudt:ucumCode "nVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "nanovolt ampere" . + +unit:NanoVAR + a qudt:Unit ; + dcterms:description "0.000000001-fold of the unit volt ampere reactive" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC505" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC505"^^xsd:anyURI ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:VAR ; + qudt:symbol "nVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "nanovolt ampere reactive" . + +unit:NanoW + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA910" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA910"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000001-fold of the SI derived unit watt" ; + qudt:prefix prefix:Nano ; + qudt:scalingOf unit:W ; + qudt:symbol "nW" ; + qudt:ucumCode "nW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C49" ; + rdfs:isDefinedBy ; + rdfs:label "Nanowatt"@en . + +unit:NanoW-PER-M2 + a qudt:Unit ; + dcterms:description "0.000000001-fold of the SI derived unit watt divided by the SI base unit metre to the power two" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:NanoW ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:PoyntingVector ; + qudt:iec61360Code "0112/2///62720#UAB539" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB539"^^xsd:anyURI ; + qudt:symbol "nW/m²" ; + qudt:ucumCode "nW.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "nanowatt per square metre" . + +unit:OCT + a qudt:DimensionlessUnit, qudt:LogarithmicUnit, qudt:Unit ; + dcterms:description "An octave is a doubling or halving of a frequency. One oct is the logarithmic frequency interval between $f1$ and $f2$ when $f2/f1 = 2$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Octave"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:hasQuantityKind quantitykind:LogarithmicFrequencyInterval ; + qudt:iec61360Code "0112/2///62720#UAA914" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Octave_(electronics)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA914"^^xsd:anyURI ; + qudt:symbol "octave" ; + qudt:uneceCommonCode "C59" ; + rdfs:isDefinedBy ; + rdfs:label "Oct"@en . + +unit:OCTET + a qudt:Unit ; + dcterms:description "synonym for byte: 1 octet = 8 bit = 1 byte" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB341" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB341"^^xsd:anyURI ; + qudt:symbol "o" ; + qudt:uneceCommonCode "Q12" ; + rdfs:isDefinedBy ; + rdfs:label "octet" . + +unit:OCTET-PER-SEC + a qudt:Unit ; + dcterms:description "unit octet divided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OCTET ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:BitRate ; + qudt:iec61360Code "0112/2///62720#UAB342" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB342"^^xsd:anyURI ; + qudt:symbol "o/s" ; + qudt:uneceCommonCode "Q13" ; + rdfs:isDefinedBy ; + rdfs:label "octet per second" . + +unit:OERSTED + a qudt:Unit ; + dcterms:description "Oersted (abbreviated as Oe) is the unit of magnetizing field (also known as H-field, magnetic field strength or intensity) in the CGS system of units."^^rdf:HTML ; + prov:wasDerivedFrom unit:GAUSS ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 79.5774715 ; + qudt:conversionMultiplierSN 7.95774715E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Oersted"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:MagneticFieldStrength_H ; + qudt:iec61360Code "0112/2///62720#UAB134" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Oersted?oldid=491396460"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB134"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:A-PER-M ; + qudt:symbol "Oe" ; + qudt:ucumCode "Oe"^^qudt:UCUMcs ; + qudt:udunitsCode "Oe" ; + qudt:uneceCommonCode "66" ; + rdfs:isDefinedBy ; + rdfs:label "Oersted"@en . + +unit:OERSTED-CentiM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Oersted Centimeter\" is a C.G.S System unit for 'Magnetomotive Force' expressed as $Oe-cm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.795774715 ; + qudt:conversionMultiplierSN 7.95774715E-1 ; + qudt:expression "$Oe-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OERSTED ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:symbol "Oe·cm" ; + qudt:ucumCode "Oe.cm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Oersted Centimeter"@en-US ; + rdfs:label "Oersted Centimetre"@en . + +unit:OHM + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The $\\textit{ohm}$ is the SI derived unit of electrical resistance, named after German physicist Georg Simon Ohm. + + It is defined as: + + $$\\Omega \\equiv\\ \\frac{\\text{V}}{\\text{A}}\\ \\equiv\\ \\frac{\\text{volt}}{\\text{amp}}\\ \\equiv\\ \\frac{\\text{W}}{\\text {A}^{2}}\\ \\equiv\\ \\frac{\\text{watt}}{\\text{amp}^{2}}\\ \\equiv\\ \\frac{\\text{H}}{\\text {s}}\\ \\equiv\\ \\frac{\\text{henry}}{\\text{second}}$$ + + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ohm"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Impedance ; + qudt:hasQuantityKind quantitykind:ModulusOfImpedance ; + qudt:hasQuantityKind quantitykind:Reactance ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA017" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ohm?oldid=494685555"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA017"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:ohm ; + qudt:siUnitsExpression "V/A" ; + qudt:symbol "Ω" ; + qudt:ucumCode "Ohm"^^qudt:UCUMcs ; + qudt:udunitsCode "Ω" ; + qudt:uneceCommonCode "OHM" ; + rdfs:isDefinedBy ; + rdfs:label "Ohm"@de ; + rdfs:label "ohm"@cs ; + rdfs:label "ohm"@en ; + rdfs:label "ohm"@fr ; + rdfs:label "ohm"@hu ; + rdfs:label "ohm"@it ; + rdfs:label "ohm"@ms ; + rdfs:label "ohm"@pt ; + rdfs:label "ohm"@ro ; + rdfs:label "ohm"@sl ; + rdfs:label "ohm"@tr ; + rdfs:label "ohmio"@es ; + rdfs:label "ohmium"@la ; + rdfs:label "om"@pl ; + rdfs:label "ωμ"@el ; + rdfs:label "ом"@bg ; + rdfs:label "ом"@ru ; + rdfs:label "אוהם"@he ; + rdfs:label "أوم"@ar ; + rdfs:label "اهم"@fa ; + rdfs:label "ओह्म"@hi ; + rdfs:label "オーム"@ja ; + rdfs:label "欧姆"@zh . + +unit:OHM-CentiM + a qudt:Unit ; + dcterms:description "product of the SI derived unit ohm and the 0.01-fold of the SI base unit metre"@en ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAB090" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB090"^^xsd:anyURI ; + qudt:symbol "Ω·cm" ; + qudt:ucumCode "Ohm.cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C60" ; + rdfs:isDefinedBy ; + rdfs:label "Ohm Centimeter"@en-US ; + rdfs:label "Ohm Centimetre"@en . + +unit:OHM-KiloM + a qudt:Unit ; + dcterms:description "product of the SI derived unit ohm and the 1,000-fold of the SI base unit metre" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:ResidualResistivity ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA018" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA018"^^xsd:anyURI ; + qudt:symbol "Ω·km" ; + qudt:ucumCode "Ohm.km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M24" ; + rdfs:isDefinedBy ; + rdfs:label "ohm kilometre" . + +unit:OHM-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ResidualResistivity ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAA020" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA020"^^xsd:anyURI ; + qudt:symbol "Ω·m" ; + qudt:ucumCode "Ohm.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C61" ; + rdfs:isDefinedBy ; + rdfs:label "Ohm Meter"@en-US ; + rdfs:label "Ohmmeter"@de ; + rdfs:label "ohm meter"@ms ; + rdfs:label "ohm metr"@cs ; + rdfs:label "ohm metre"@en ; + rdfs:label "ohm metre"@tr ; + rdfs:label "ohm per metro"@it ; + rdfs:label "ohm-metro"@pt ; + rdfs:label "ohm-metru"@ro ; + rdfs:label "ohm-mètre"@fr ; + rdfs:label "ohmio metro"@es ; + rdfs:label "ом-метр"@ru ; + rdfs:label "أوم متر"@ar ; + rdfs:label "اهم متر"@fa ; + rdfs:label "ओह्म मीटर"@hi ; + rdfs:label "オームメートル"@ja ; + rdfs:label "欧姆米"@zh . + +unit:OHM-M2-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:symbol "Ω·m²/m" ; + qudt:ucumCode "Ohm2.m.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ohm Square Meter per Meter"@en-US ; + rdfs:label "Ohm Square Metre per Metre"@en . + +unit:OHM-PER-BAR + a qudt:Unit ; + dcterms:description "SI derived unit ohm per metrical non SI unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD879" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD879"^^xsd:anyURI ; + qudt:symbol "Ω/bar" ; + qudt:ucumCode "Ohm.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "Ohm/bar"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ohm per bar" . + +unit:OHM-PER-K + a qudt:Unit ; + dcterms:description "SI derived unit ohm per SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD875" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD875"^^xsd:anyURI ; + qudt:symbol "Ω/K" ; + qudt:ucumCode "Ohm.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "Ohm/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ohm per kelvin" . + +unit:OHM-PER-KiloM + a qudt:Unit ; + dcterms:description "SI derived unit ohm divided by the 1,000-fold of the SI base unit metre" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA019" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA019"^^xsd:anyURI ; + qudt:symbol "Ω/km" ; + qudt:ucumCode "Ohm.km-1"^^qudt:UCUMcs ; + qudt:ucumCode "Ohm/km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F56" ; + rdfs:isDefinedBy ; + rdfs:label "ohm per kilometre" . + +unit:OHM-PER-M + a qudt:Unit ; + dcterms:description "SI derived unit ohm divided by the SI base unit metre" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA021" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA021"^^xsd:anyURI ; + qudt:symbol "Ω/m" ; + qudt:ucumCode "Ohm.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "Ohm/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H26" ; + rdfs:isDefinedBy ; + rdfs:label "ohm per metre" . + +unit:OHM-PER-MI + a qudt:Unit ; + dcterms:description "unit ohm divided by the unit mile according to the Anglo-American system of units" ; + qudt:conversionMultiplier 0.0006213712 ; + qudt:conversionMultiplierSN 6.213712E-4 ; + qudt:hasDimensionVector qkdv:A0E-2L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MI ; + ] ; + qudt:hasQuantityKind quantitykind:LinearResistance ; + qudt:iec61360Code "0112/2///62720#UAA022" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA022"^^xsd:anyURI ; + qudt:symbol "Ω/mi" ; + qudt:ucumCode "Ohm.[mi_i]-1"^^qudt:UCUMcs ; + qudt:ucumCode "Ohm/[mi_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F55" ; + rdfs:isDefinedBy ; + rdfs:label "ohm per mile" . + +unit:OHM_Ab + a qudt:Unit ; + dcterms:description "$\\textit{abohm}$ is the basic unit of electrical resistance in the emu-cgs system of units. One abohm is equal to $10^{-9} ohms$ in the SI system of units; one abohm is a nano ohm."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abohm"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abohm?oldid=480725336"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:OHM ; + qudt:symbol "abΩ" ; + qudt:ucumCode "nOhm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abohm"@en . + +unit:OHM_CIRC-MIL-PER-FT + a qudt:Unit ; + dcterms:description "unit of resistivity" ; + qudt:hasDimensionVector qkdv:A0E-2L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OHM_CIRC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Resistivity ; + qudt:iec61360Code "0112/2///62720#UAB215" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB215"^^xsd:anyURI ; + qudt:symbol "Ω·cmil/ft" ; + rdfs:isDefinedBy ; + rdfs:label "ohm circular mil per foot" . + +unit:OHM_Stat + a qudt:Unit ; + dcterms:description "\"StatOHM\" is the unit of resistance, reactance, and impedance in the electrostatic C.G.S system of units, equal to the resistance between two points of a conductor when a constant potential difference of 1 statvolt between these points produces a current of 1 statampere; it is equal to approximately $8.9876 \\times 10^{11} ohms$. The statohm is an extremely large unit of resistance. In fact, an object with a resistance of 1 stat W would make an excellent insulator or dielectric . In practical applications, the ohm, the kilohm (k W ) and the megohm (M W or M) are most often used to quantify resistance."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 898760000000.0 ; + qudt:conversionMultiplierSN 8.9876E11 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://whatis.techtarget.com/definition/statohm-stat-W"^^xsd:anyURI ; + qudt:latexSymbol "$stat\\Omega$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:scalingOf unit:OHM ; + qudt:symbol "statΩ" ; + rdfs:isDefinedBy ; + rdfs:label "Statohm"@en . + +unit:OKTA + a qudt:Unit ; + dcterms:description """ + "Okta" is the unit of measurement to describe the amount of cloud cover. + Okta is reported in eighths of the celestial dome covered by all clouds visible. The codes represent: + 0: 0/8, the complete absence of cloud; + 1: 1/8 or less, but not zero; + 2: 2/8; + 3: 3/8; + 4: 4/8, half of the sky is covered; + 5: 5/8; + 6: 6/8; + 7: 7/8 or more, but not 8/8; + 8: 8/8, sky is completely covered; + 9: Sky obscured by fog and/or other meteorological phenomena; + /: Cloud cover is indiscernible for reasons other than fog or other meteorological phenomena, or observation is not made. + """^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:AmountOfCloudCover ; + qudt:informativeReference "https://windy.app/blog/okta-cloud-cover.html"^^xsd:anyURI ; + qudt:isoNormativeReference "https://library.wmo.int/viewer/68695/?offset=3#page=514&viewer=picture&o=bookmark&n=0&q="^^xsd:anyURI ; + qudt:plainTextDescription "\"Okta\" is the unit of measurement to describe the amount of cloud cover. Okta is reported in eighths of the celestial dome covered by all clouds visible. The codes represent: 0: 0/8, the complete absence of cloud; 1: 1/8 or less, but not zero; 2: 2/8; 3: 3/8; 4: 4/8, half of the sky is covered; 5: 5/8; 6: 6/8; 7: 7/8 or more, but not 8/8; 8: 8/8, sky is completely covered; 9: Sky obscured by fog and/or other meteorological phenomena; /: Cloud cover is indiscernible for reasons other than fog or other meteorological phenomena, or observation is not made." ; + rdfs:isDefinedBy ; + rdfs:label "Okta"@en . + +unit:ONE + a qudt:Unit ; + dcterms:description "unit consisting of the quotient of two similar sizes, whose units can be reduced against each other and not displayed by other units of the dimension one" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA915" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA915"^^xsd:anyURI ; + qudt:symbol "one" ; + qudt:uneceCommonCode "C62" ; + rdfs:isDefinedBy ; + rdfs:label "one" . + +unit:ONE-PER-ONE + a qudt:Unit ; + dcterms:description "value of the quotient from two physical units of the same kind as a numerator and denominator whereas the units are shortened mutually" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ONE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ONE ; + ] ; + qudt:hasQuantityKind quantitykind:Ratio ; + qudt:iec61360Code "0112/2///62720#UAB443" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB443"^^xsd:anyURI ; + qudt:symbol "one/one" ; + qudt:uneceCommonCode "Q26" ; + rdfs:isDefinedBy ; + rdfs:label "one per one" . + +unit:OSM + a qudt:Unit ; + dcterms:description "One osmole is the amount of osmotically active material that when dissolved in 22.4L of solvent at 0 degrees celsius exerts an osmotic pressure of 1 atmosphere." ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:symbol "Osmol" ; + qudt:ucumCode "Osmol"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "osmole" . + +unit:OZ + a qudt:Unit ; + dcterms:description "An ounce of mass is 1/16th of a pound of mass, based on the international standard definition of the pound as exactly 0.45359237 kg."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.028349523125 ; + qudt:conversionMultiplierSN 2.8349523125E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:OZ_M ; + qudt:factorUnitScalar 0.0625 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA917" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA917"^^xsd:anyURI ; + qudt:symbol "oz" ; + qudt:ucumCode "[oz_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "ONZ" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce Mass"@en . + +unit:OZ-FT + a qudt:Unit ; + dcterms:description "unit of the unbalance as a product of avoirdupois ounce according to the avoirdupois system of units and foot according to the Anglo-American and Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0086409 ; + qudt:conversionMultiplierSN 8.6409E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMass ; + qudt:iec61360Code "0112/2///62720#UAB133" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB133"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to the avoirdupois system of units and foot according to the Anglo-American and Imperial system of units" ; + qudt:symbol "oz·ft" ; + qudt:ucumCode "[oz_av].[ft_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4R" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) Foot"@en . + +unit:OZ-FT-HR-PER-IN3-LB + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour" ; + qudt:conversionMultiplier 4185008.37001674003348006696013391967054969619939239878479756959513918331297668 ; + qudt:conversionMultiplierSN 4.18500837001674003348006696013391967054969619939239878479756959513918331297668E6 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD858" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD858"^^xsd:anyURI ; + qudt:symbol "oz·ft·h/(in³·lbm)" ; + qudt:ucumCode "[oz_av].[ft_i].h.[in_i]-3.[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce foot hour per cubic inch pound" . + +unit:OZ-FT-SEC-PER-IN3-LB + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second" ; + qudt:conversionMultiplier 1162.5023250046500093000186000371999084860267220534441068882137764275509202713 ; + qudt:conversionMultiplierSN 1.1625023250046500093000186000371999084860267220534441068882137764275509202713E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD859" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD859"^^xsd:anyURI ; + qudt:symbol "oz·ft·s/(in³·lbm)" ; + qudt:ucumCode "[oz_av].[ft_i].s.[in_i]-3.[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce foot second per cubic inch pound" . + +unit:OZ-FT2-PER-IN3-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 36.1316752166621861189380447919115019472637943032352378395448512952533951671309544 ; + qudt:conversionMultiplierSN 3.61316752166621861189380447919115019472637943032352378395448512952533951671309544E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD860" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD860"^^xsd:anyURI ; + qudt:symbol "oz·ft²/(in³·lbf·s)" ; + qudt:ucumCode "[oz_av].[ft_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce square foot per cubic inch pound-force second" . + +unit:OZ-HR-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 219938987.18776172506694249178957458290568644187608087388655521718664498878165 ; + qudt:conversionMultiplierSN 2.1993898718776172506694249178957458290568644187608087388655521718664498878165E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC868" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC868"^^xsd:anyURI ; + qudt:symbol "oz·h/(in³·ft³)" ; + qudt:ucumCode "[oz_av].h.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce hour per cubic inch cubic foot" . + +unit:OZ-HR-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour" ; + qudt:conversionMultiplier 1369963762.2210959898659928577066453306815803233918044992564139962693935984065 ; + qudt:conversionMultiplierSN 1.3699637622210959898659928577066453306815803233918044992564139962693935984065E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC866" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC866"^^xsd:anyURI ; + qudt:symbol "oz·h/(in³·gal{UK})" ; + qudt:ucumCode "[oz_av].h.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce hour per cubic inch gallon (UK)" . + +unit:OZ-HR-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour" ; + qudt:conversionMultiplier 1645257878.1837760212799853931272070770270963403487166774326507185648524626875 ; + qudt:conversionMultiplierSN 1.6452578781837760212799853931272070770270963403487166774326507185648524626875E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC865" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC865"^^xsd:anyURI ; + qudt:symbol "oz·h/(in³·gal{US})" ; + qudt:ucumCode "[oz_av].h.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce hour per cubic inch gallon (US)" . + +unit:OZ-HR-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 8145888.41436154537284972191813238826881590685721646580623302553040761112231 ; + qudt:conversionMultiplierSN 8.14588841436154537284972191813238826881590685721646580623302553040761112231E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC869" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC869"^^xsd:anyURI ; + qudt:symbol "oz·h/(in³·yd³)" ; + qudt:ucumCode "[oz_av].h.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce hour per cubic inch cubic yard" . + +unit:OZ-HR-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour" ; + qudt:conversionMultiplier 380054569860.45226091567662581238487547724575 ; + qudt:conversionMultiplierSN 3.8005456986045226091567662581238487547724575E11 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC867" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC867"^^xsd:anyURI ; + qudt:symbol "oz·h/in⁶" ; + qudt:ucumCode "[oz_av].h.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce hour per power of inch with the exponent 6" . + +unit:OZ-IN + a qudt:Unit ; + dcterms:description "unit of the unbalance as a product of avoirdupois ounce according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000720077887375 ; + qudt:conversionMultiplierSN 7.20077887375E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:LengthMass ; + qudt:iec61360Code "0112/2///62720#UAB132" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB132"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units" ; + qudt:symbol "oz·in" ; + qudt:ucumCode "[oz_av].[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4Q" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) Inch"@en . + +unit:OZ-IN2-PER-IN3-LB_F-SEC + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.25091441122682073693706975549938543018933190488357804055239480066148191088285385 ; + qudt:conversionMultiplierSN 2.5091441122682073693706975549938543018933190488357804055239480066148191088285385E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD861" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD861"^^xsd:anyURI ; + qudt:symbol "oz·in²/(in³·lbf·s)" ; + qudt:ucumCode "[oz_av].[in_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce square inch per cubic inch pound-force second" . + +unit:OZ-MIN-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 3665649.7864626954177823748631595763817614406979346812314425869531107498130275 ; + qudt:conversionMultiplierSN 3.6656497864626954177823748631595763817614406979346812314425869531107498130275E6 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD801" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD801"^^xsd:anyURI ; + qudt:symbol "oz·min/(in³·ft³)" ; + qudt:ucumCode "[oz_av].min.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce minute per cubic inch cubic foot" . + +unit:OZ-MIN-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute" ; + qudt:conversionMultiplier 22832729.370351599831099880961777422178026338723196741654273566604489893306775 ; + qudt:conversionMultiplierSN 2.2832729370351599831099880961777422178026338723196741654273566604489893306775E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD867" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD867"^^xsd:anyURI ; + qudt:symbol "oz·min/(in³·gal{UK})" ; + qudt:ucumCode "[oz_av].min.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce minute per cubic inch gallon (UK)" . + +unit:OZ-MIN-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute" ; + qudt:conversionMultiplier 27420964.636396267021333089885453451283784939005811944623877511976080874378125 ; + qudt:conversionMultiplierSN 2.7420964636396267021333089885453451283784939005811944623877511976080874378125E7 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD866" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD866"^^xsd:anyURI ; + qudt:symbol "oz·min/(in³·gal{US})" ; + qudt:ucumCode "[oz_av].min.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce minute per cubic inch gallon (US)" . + +unit:OZ-MIN-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 135764.8069060257562141620319688731378135984476202744301038837588401268520385 ; + qudt:conversionMultiplierSN 1.357648069060257562141620319688731378135984476202744301038837588401268520385E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD802" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD802"^^xsd:anyURI ; + qudt:symbol "oz·min/(in³·yd³)" ; + qudt:ucumCode "[oz_av].min.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce minute per cubic inch cubic yard" . + +unit:OZ-MIN-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute" ; + qudt:conversionMultiplier 6334242831.0075376819279437635397479246207625 ; + qudt:conversionMultiplierSN 6.3342428310075376819279437635397479246207625E9 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD800" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD800"^^xsd:anyURI ; + qudt:symbol "oz·min/in⁶" ; + qudt:ucumCode "[oz_av].min.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce minute per power of inch with the exponent 6" . + +unit:OZ-PER-DAY + a qudt:Unit ; + dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000032812 ; + qudt:conversionMultiplierSN 3.2812E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA919" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA919"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time day" ; + qudt:symbol "oz/d" ; + qudt:ucumCode "[oz_av].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L33" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Day"@en . + +unit:OZ-PER-FT2 + a qudt:Unit ; + dcterms:description "\"Ounce per Square Foot\" is an Imperial unit for 'Mass Per Area' expressed as $oz/ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.305151727 ; + qudt:conversionMultiplierSN 3.05151727E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "oz/ft^{2}" ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAB105" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB105"^^xsd:anyURI ; + qudt:symbol "oz/ft²" ; + qudt:ucumCode "[oz_av].[sft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "37" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Mass Ounce per Square Foot"@en . + +unit:OZ-PER-GAL_IMP + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Ounce per Gallon\" is an Imperial unit for 'Density' expressed as $oz/gal$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 6.23602329 ; + qudt:conversionMultiplierSN 6.23602329E0 ; + qudt:exactMatch unit:OZ-PER-GAL_UK ; + qudt:expression "oz/gal" ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_IMP ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "oz/gal{UK}" ; + qudt:ucumCode "[oz_av].[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Mass Ounce per Gallon"@en . + +unit:OZ-PER-GAL_UK + a qudt:Unit ; + dcterms:description "unit of the density according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 6.23602329 ; + qudt:conversionMultiplierSN 6.23602329E0 ; + qudt:exactMatch unit:OZ-PER-GAL_IMP ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA923" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA923"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density according to the Imperial system of units" ; + qudt:symbol "oz/gal{UK}" ; + qudt:ucumCode "[oz_av].[gal_br]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L37" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Gallon (UK)"@en . + +unit:OZ-PER-GAL_US + a qudt:Unit ; + dcterms:description "unit of the density according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 7.48915170730603928399457848784464 ; + qudt:conversionMultiplierSN 7.48915170730603928399457848784464E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA924" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA924"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Density"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ; + qudt:symbol "oz/gal{US}" ; + qudt:ucumCode "[oz_av].[gal_us]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L38" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Gallon (US)"@en . + +unit:OZ-PER-HR + a qudt:Unit ; + dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000787487 ; + qudt:conversionMultiplierSN 7.87487E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA920" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA920"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time hour" ; + qudt:symbol "oz/h" ; + qudt:ucumCode "[oz_av].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L34" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Hour"@en . + +unit:OZ-PER-IN2 + a qudt:Unit ; + dcterms:description "unit of the surface specific mass (avoirdupois ounce according to the avoirdupois system of units according to the surface square inch according to the Anglo-American and Imperial system of units)" ; + qudt:conversionMultiplier 43.94184872744745489490978981957964 ; + qudt:conversionMultiplierSN 4.394184872744745489490978981957964E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:BodyMassIndex ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:hasQuantityKind quantitykind:MeanMassRange ; + qudt:hasQuantityKind quantitykind:SurfaceDensity ; + qudt:iec61360Code "0112/2///62720#UAB261" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB261"^^xsd:anyURI ; + qudt:symbol "oz/in²" ; + qudt:ucumCode "[oz_av].[in_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N22" ; + rdfs:isDefinedBy ; + rdfs:label "ounce (avoirdupois) per square inch" . + +unit:OZ-PER-IN3 + a qudt:Unit ; + dcterms:description "\"Ounce per Cubic Inch\" is an Imperial unit for 'Density' expressed as $oz/in^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1729.99404 ; + qudt:conversionMultiplierSN 1.72999404E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "oz/in^{3}" ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "oz/in³" ; + qudt:ucumCode "[oz_av].[cin_i]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/[cin_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L39" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Mass Ounce per Cubic Inch"@en . + +unit:OZ-PER-MIN + a qudt:Unit ; + dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000472492 ; + qudt:conversionMultiplierSN 4.72492E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA921" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA921"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time minute" ; + qudt:symbol "oz/min" ; + qudt:ucumCode "[oz_av].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L35" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Minute"@en . + +unit:OZ-PER-SEC + a qudt:Unit ; + dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.02834952 ; + qudt:conversionMultiplierSN 2.834952E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA922" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA922"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the SI base unit second" ; + qudt:symbol "oz/s" ; + qudt:ucumCode "[oz_av].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L36" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Second"@en . + +unit:OZ-PER-YD2 + a qudt:Unit ; + dcterms:description "\"Ounce per Square Yard\" is an Imperial unit for 'Mass Per Area' expressed as $oz/yd^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0339057474748823 ; + qudt:conversionMultiplierSN 3.39057474748823E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "oz/yd²" ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:iec61360Code "0112/2///62720#UAB104" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB104"^^xsd:anyURI ; + qudt:symbol "oz/yd²" ; + qudt:ucumCode "[oz_av].[syd_i]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/[syd_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "ON" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Mass Ounce per Square Yard"@en . + +unit:OZ-PER-YD3 + a qudt:Unit ; + dcterms:description "unit ounce according to the avoirdupois system of units divided by the power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0370798 ; + qudt:conversionMultiplierSN 3.70798E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA918" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA918"^^xsd:anyURI ; + qudt:plainTextDescription "unit ounce according to the avoirdupois system of units divided by the power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3" ; + qudt:symbol "oz/yd³" ; + qudt:ucumCode "[oz_av].[cyd_i]-1"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]/[cyd_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G32" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (avoirdupois) per Cubic Yard"@en . + +unit:OZ-SEC-PER-IN3-FT3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 61094.163107711590296372914385992939696024011632244687190709782551845830217125 ; + qudt:conversionMultiplierSN 6.1094163107711590296372914385992939696024011632244687190709782551845830217125E4 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD826" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD826"^^xsd:anyURI ; + qudt:symbol "oz·s/(in³·ft³)" ; + qudt:ucumCode "[oz_av].s.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce second per cubic inch cubic foot" . + +unit:OZ-SEC-PER-IN3-GAL_UK + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per SI base unit second" ; + qudt:conversionMultiplier 380545.48950585999718499801602962370296710564538661236090455944340816488844625 ; + qudt:conversionMultiplierSN 3.8054548950585999718499801602962370296710564538661236090455944340816488844625E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD824" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD824"^^xsd:anyURI ; + qudt:symbol "oz·s/(in³·gal{UK})" ; + qudt:ucumCode "[oz_av].s.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce second per cubic inch gallon (UK)" . + +unit:OZ-SEC-PER-IN3-GAL_US + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second" ; + qudt:conversionMultiplier 457016.07727327111702221816475755752139641565009686574373129186626801457296875 ; + qudt:conversionMultiplierSN 4.5701607727327111702221816475755752139641565009686574373129186626801457296875E5 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD823" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD823"^^xsd:anyURI ; + qudt:symbol "oz·s/(in³·gal{US})" ; + qudt:ucumCode "[oz_av].s.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce second per cubic inch gallon (US)" . + +unit:OZ-SEC-PER-IN3-YD3 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 2262.746781767095936902700532814552296893307460337907168398062647335447533975 ; + qudt:conversionMultiplierSN 2.262746781767095936902700532814552296893307460337907168398062647335447533975E3 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD827" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD827"^^xsd:anyURI ; + qudt:symbol "oz·s/(in³·yd³)" ; + qudt:ucumCode "[oz_av].s.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce second per cubic inch cubic yard" . + +unit:OZ-SEC-PER-IN6 + a qudt:Unit ; + dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second" ; + qudt:conversionMultiplier 105570713.850125628032132396058995798743679375 ; + qudt:conversionMultiplierSN 1.05570713850125628032132396058995798743679375E8 ; + qudt:hasDimensionVector qkdv:A0E0L-6I0M1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -6 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD825" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD825"^^xsd:anyURI ; + qudt:symbol "oz·s/in⁶" ; + qudt:ucumCode "[oz_av].s.[in_i]-6"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ounce second per power of inch with the exponent 6" . + +unit:OZ_F + a qudt:Unit ; + dcterms:description "\"Ounce Force\" is an Imperial unit for 'Force' expressed as $ozf$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.278013875 ; + qudt:conversionMultiplierSN 2.78013875E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAA926" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA926"^^xsd:anyURI ; + qudt:scalingOf unit:N ; + qudt:symbol "ozf" ; + qudt:ucumCode "[ozf_av]"^^qudt:UCUMcs ; + qudt:udunitsCode "ozf" ; + qudt:uneceCommonCode "L40" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Ounce Force"@en . + +unit:OZ_F-IN + a qudt:Unit ; + dcterms:description "\"Ounce Force Inch\" is an Imperial unit for 'Torque' expressed as $ozf-in$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.007061552425 ; + qudt:conversionMultiplierSN 7.061552425E-3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_F ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAA927" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA927"^^xsd:anyURI ; + qudt:symbol "ozf·in" ; + qudt:ucumCode "[ozf_av].[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L41" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Ounce Force Inch"@en . + +unit:OZ_F-PER-IN3 + a qudt:Unit ; + dcterms:description "unit of specific weight according to the Anglo-American system of units" ; + qudt:conversionMultiplier 16965.44756278488934930625766763345 ; + qudt:conversionMultiplierSN 1.696544756278488934930625766763345E4 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_F ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificWeight ; + qudt:iec61360Code "0112/2///62720#UAA925" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA925"^^xsd:anyURI ; + qudt:symbol "ozf/in³" ; + qudt:ucumCode "[ozf_av].[in_i]-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L39" ; + rdfs:isDefinedBy ; + rdfs:label "ounce of force per cubic inch" . + +unit:OZ_M + a qudt:Unit ; + dcterms:description "An ounce of mass is 1/16th of a pound of mass, based on the international standard definition of the pound as exactly 0.45359237 kg."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.028349523125 ; + qudt:conversionMultiplierSN 2.8349523125E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:OZ ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "oz" ; + qudt:ucumCode "[oz_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "ONZ" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce Mass"@en . + +unit:OZ_TROY + a qudt:Unit ; + dcterms:description "An obsolete unit of mass; the Troy Ounce is 1/12th of a Troy Pound. Based on the international definition of a Troy Pound as 5760 grains, the Troy Ounce is exactly 480 grains, or 0.0311034768 kg."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0311034768 ; + qudt:conversionMultiplierSN 3.11034768E-2 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB082" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB082"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "oz{Troy}" ; + qudt:ucumCode "[oz_tr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "APZ" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce Troy"@en . + +unit:OZ_VOL_UK + a qudt:Unit ; + dcterms:description "$\\textit{Imperial Ounce}$ is an Imperial unit for 'Liquid Volume' expressed as $oz$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000284130625 ; + qudt:conversionMultiplierSN 2.84130625E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA431" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA431"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "oz{UK}" ; + qudt:ucumCode "[foz_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "OZI" ; + rdfs:isDefinedBy ; + rdfs:label "Fluid Ounce (UK)"@en . + +unit:OZ_VOL_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000000003288548900462962962962962962962962 ; + qudt:conversionMultiplierSN 3.288548900462962962962962962962962E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA432" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA432"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "oz{UK}/d" ; + qudt:ucumCode "[foz_br].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_br]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J95" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (UK Fluid) per Day"@en . + +unit:OZ_VOL_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000000007892517361111111111111111111111112 ; + qudt:conversionMultiplierSN 7.892517361111111111111111111111112E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA433" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA433"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "oz{UK}/h" ; + qudt:ucumCode "[foz_br].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_br]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J96" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (UK Fluid) per Hour"@en . + +unit:OZ_VOL_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000004735510416666666666666666666666668 ; + qudt:conversionMultiplierSN 4.735510416666666666666666666666668E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA434" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA434"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "oz{UK}/min" ; + qudt:ucumCode "[foz_br].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_br]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J97" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (UK Fluid) per Minute"@en . + +unit:OZ_VOL_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000284 ; + qudt:conversionMultiplierSN 2.84E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA435" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA435"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (UK) for fluids according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "oz{UK}/s" ; + qudt:ucumCode "[foz_br].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_br]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J98" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (UK Fluid) per Second"@en . + +unit:OZ_VOL_US + a qudt:Unit ; + dcterms:description "\"US Liquid Ounce\" is a unit for 'Liquid Volume' expressed as $oz$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000295735296 ; + qudt:conversionMultiplierSN 2.95735296E-5 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA916" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA916"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "fl oz{US}" ; + qudt:ucumCode "[foz_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "fl oz" ; + qudt:uneceCommonCode "OZA" ; + rdfs:isDefinedBy ; + rdfs:label "US Liquid Ounce"@en . + +unit:OZ_VOL_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000000342286 ; + qudt:conversionMultiplierSN 3.42286E-10 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA436" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA436"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by unit for time day" ; + qudt:symbol "fl oz{US}/d" ; + qudt:ucumCode "[foz_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J99" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (US Fluid) per Day"@en . + +unit:OZ_VOL_US-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000008214869 ; + qudt:conversionMultiplierSN 8.214869E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA437" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA437"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "fl oz{US}/h" ; + qudt:ucumCode "[foz_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K10" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (US Fluid) per Hour"@en . + +unit:OZ_VOL_US-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000492892 ; + qudt:conversionMultiplierSN 4.92892E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA438" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA438"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "fl oz{US}/min" ; + qudt:ucumCode "[foz_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K11" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (US Fluid) per Minute"@en . + +unit:OZ_VOL_US-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000295735296 ; + qudt:conversionMultiplierSN 2.95735296E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:OZ_VOL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA439" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA439"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume fluid ounce (US) for fluids according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "fl oz{US}/s" ; + qudt:ucumCode "[foz_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[foz_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K12" ; + rdfs:isDefinedBy ; + rdfs:label "Ounce (US Fluid) per Second"@en . + +unit:P + qudt:factorUnitScalar 0.00980665 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] . + +unit:PA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of pressure. The pascal is the standard pressure unit in the MKS metric system, equal to one newton per square meter or one \"kilogram per meter per second per second.\" The unit is named for Blaise Pascal (1623-1662), French philosopher and mathematician, who was the first person to use a barometer to measure differences in altitude."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ; + qudt:exactMatch unit:KiloGM-PER-M-SEC2 ; + qudt:exactMatch unit:N-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:BulkModulus ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:Fugacity ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAA258" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA258"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:pascal ; + qudt:siUnitsExpression "N/m^2" ; + qudt:symbol "Pa" ; + qudt:ucumCode "Pa"^^qudt:UCUMcs ; + qudt:udunitsCode "Pa" ; + qudt:uneceCommonCode "PAL" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal"@de ; + rdfs:label "pascal"@cs ; + rdfs:label "pascal"@en ; + rdfs:label "pascal"@es ; + rdfs:label "pascal"@fr ; + rdfs:label "pascal"@hu ; + rdfs:label "pascal"@it ; + rdfs:label "pascal"@ms ; + rdfs:label "pascal"@pt ; + rdfs:label "pascal"@ro ; + rdfs:label "pascal"@sl ; + rdfs:label "pascal"@tr ; + rdfs:label "pascalium"@la ; + rdfs:label "paskal"@pl ; + rdfs:label "πασκάλ"@el ; + rdfs:label "паскал"@bg ; + rdfs:label "паскаль"@ru ; + rdfs:label "פסקל"@he ; + rdfs:label "باسكال"@ar ; + rdfs:label "پاسگال"@fa ; + rdfs:label "पास्कल"@hi ; + rdfs:label "パスカル"@ja ; + rdfs:label "帕斯卡"@zh . + +unit:PA-L-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the SI derived unit pascal and the unit litre divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA261" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA261"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the SI derived unit pascal and the unit litre divided by the SI base unit second" ; + qudt:symbol "Pa·L/s" ; + qudt:ucumCode "Pa.L.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.L/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F99" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Liter per Second"@en-US ; + rdfs:label "Pascal Litre per Second"@en . + +unit:PA-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "Pa·m" ; + qudt:ucumCode "Pa.m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal metres"@en . + +unit:PA-M-PER-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "Pa·m/s" ; + qudt:ucumCode "Pa.m.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.m/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal metres per second"@en . + +unit:PA-M-PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "Pa·m/s²" ; + qudt:ucumCode "Pa.m.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal metres per square second"@en . + +unit:PA-M0dot5 + a qudt:Unit ; + dcterms:description "A metric unit for stress intensity factor and fracture toughness."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-0dot5I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 5 ; + qudt:hasUnit unit:M0dot ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:StressIntensityFactor ; + qudt:plainTextDescription "A metric unit for stress intensity factor and fracture toughness." ; + qudt:symbol "Pa√m" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Square Root Meter"@en-US ; + rdfs:label "Pascal Square Root Metre"@en . + +unit:PA-M2-PER-KiloGM + a qudt:Unit ; + dcterms:description "unit of the burst index as derived unit for pressure pascal related to the substance, represented as a quotient from the SI base unit kilogram divided by the power of the SI base unit metre by exponent 2" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:BurstFactor ; + qudt:iec61360Code "0112/2///62720#UAB462" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB462"^^xsd:anyURI ; + qudt:symbol "Pa·m²/kg" ; + qudt:ucumCode "Pa.m2.kg-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P79" ; + rdfs:isDefinedBy ; + rdfs:label "pascal square metre per kilogram" . + +unit:PA-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product out of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA264" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA264"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the SI derived unit pascal and the power of the SI base unit metre with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "Pa·m³/s" ; + qudt:ucumCode "Pa.m3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.m3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G01" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Cubic Meter per Second"@en-US ; + rdfs:label "Pascal Cubic Metre per Second"@en . + +unit:PA-PER-BAR + a qudt:Unit ; + dcterms:description "SI derived unit pascal divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA260" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA260"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit pascal divided by the unit bar" ; + qudt:symbol "Pa/bar" ; + qudt:ucumCode "Pa.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F07" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Bar"@en . + +unit:PA-PER-HR + a qudt:Unit ; + dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one hour."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000277777778 ; + qudt:conversionMultiplierSN 2.77777778E-4 ; + qudt:expression "$P / h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "Pa/h" ; + qudt:ucumCode "Pa.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Hour"@en . + +unit:PA-PER-K + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$pascal-per-kelvin$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:PressureCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA259" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA259"^^xsd:anyURI ; + qudt:symbol "Pa/K" ; + qudt:ucumCode "Pa.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C64" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Kelvin"@en . + +unit:PA-PER-M + a qudt:Unit ; + dcterms:description "SI derived unit pascal divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAA262" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA262"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit pascal divided by the SI base unit metre" ; + qudt:symbol "Pa/m" ; + qudt:ucumCode "Pa.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H42" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Meter"@en-US ; + rdfs:label "Pascal per Metre"@en . + +unit:PA-PER-MIN + a qudt:Unit ; + dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one minute."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0166666667 ; + qudt:conversionMultiplierSN 1.66666667E-2 ; + qudt:expression "$P / min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "Pa/min" ; + qudt:ucumCode "Pa.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Minute"@en . + +unit:PA-PER-SEC + a qudt:Unit ; + dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one second."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$P / s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:symbol "Pa/s" ; + qudt:ucumCode "Pa.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Pascal per Second"@en . + +unit:PA-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of dynamic viscosity, equal to 10 poises or 1000 centipoises. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$Pa-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA265" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA265"^^xsd:anyURI ; + qudt:siUnitsExpression "Pa.s" ; + qudt:symbol "Pa·s" ; + qudt:ucumCode "Pa.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C65" ; + rdfs:isDefinedBy ; + rdfs:label "Pascalsekunde"@de ; + rdfs:label "pascal per secondo"@it ; + rdfs:label "pascal saat"@ms ; + rdfs:label "pascal saniye"@tr ; + rdfs:label "pascal second"@en ; + rdfs:label "pascal segundo"@es ; + rdfs:label "pascal sekunda"@cs ; + rdfs:label "pascal sekunda"@sl ; + rdfs:label "pascal-seconde"@fr ; + rdfs:label "pascal-secundă"@ro ; + rdfs:label "pascal-segundo"@pt ; + rdfs:label "paskalosekunda"@pl ; + rdfs:label "паскаль-секунда"@ru ; + rdfs:label "باسكال ثانية"@ar ; + rdfs:label "نیوتون ثانیه"@fa ; + rdfs:label "पास्कल सैकण्ड"@hi ; + rdfs:label "パスカル秒"@ja ; + rdfs:label "帕斯卡秒"@zh . + +unit:PA-SEC-PER-BAR + a qudt:Unit ; + dcterms:description "product out of the SI derived unit pascal and the SI base unit second divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA267" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA267"^^xsd:anyURI ; + qudt:plainTextDescription "product out of the SI derived unit pascal and the SI base unit second divided by the unit bar" ; + qudt:symbol "Pa·s/bar" ; + qudt:ucumCode "Pa.s.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.s/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H07" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Second per Bar"@en . + +unit:PA-SEC-PER-K + a qudt:Unit ; + dcterms:description "product out of the SI derived unit pascal and the SI base unit second divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA266" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA266"^^xsd:anyURI ; + qudt:symbol "Pa·s/K" ; + qudt:ucumCode "Pa.s.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.s/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F77" ; + rdfs:isDefinedBy ; + rdfs:label "pascal second per kelvin" . + +unit:PA-SEC-PER-L + a qudt:Unit ; + dcterms:description "product of the SI derived unit pascal and the SI base unit second divided by the unit litre" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PressureInRelationToVolumeFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB499" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB499"^^xsd:anyURI ; + qudt:symbol "Pa·s/L" ; + qudt:ucumCode "Pa.s.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.s/L"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M32" ; + rdfs:isDefinedBy ; + rdfs:label "pascal second per litre" . + +unit:PA-SEC-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Pascal Second Per Meter ($Pa-s/m$) is a unit in the category of Specific acoustic impedance. It is also known as pascal-second/meter. Pascal Second Per Meter has a dimension of $ML^2T^{-1}$ where $M$ is mass, $L$ is length, and $T$ is time. It essentially the same as the corresponding standard SI unit $kg/m2\\cdot s$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Pa-s/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AcousticImpedance ; + qudt:iec61360Code "0112/2///62720#UAA268" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_acoustic_impedance--pascal_second_per_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA268"^^xsd:anyURI ; + qudt:siUnitsExpression "Pa.s/m" ; + qudt:symbol "Pa·s/m" ; + qudt:ucumCode "Pa.s.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pa.s/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C67" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Second per Meter"@en-US ; + rdfs:label "Pascal Second per Metre"@en . + +unit:PA-SEC-PER-M3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Pascal Second Per Cubic Meter}$ ($Pa-s/m^3$) is a unit in the category of Acoustic impedance. It is also known as $\\textit{pascal-second/cubic meter}$. It has a dimension of $ML^{-4}T^{-1}$ where $M$ is mass, $L$ is length, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Pa-s/m3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PressureInRelationToVolumeFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA263" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--acoustic_impedance--pascal_second_per_cubic_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA263"^^xsd:anyURI ; + qudt:siUnitsExpression "Pa.s/m3" ; + qudt:symbol "Pa·s/m³" ; + qudt:ucumCode "Pa.s.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C66" ; + rdfs:isDefinedBy ; + rdfs:label "Pascal Second per Cubic Meter"@en-US ; + rdfs:label "Pascalsekunde je Kubikmeter"@de ; + rdfs:label "pascal per secondo al metro cubo"@it ; + rdfs:label "pascal saat per meter kubik"@ms ; + rdfs:label "pascal saniye bölü metre küp"@tr ; + rdfs:label "pascal second per cubic metre"@en ; + rdfs:label "pascal segundo por metro cúbico"@es ; + rdfs:label "pascal sekunda na metr krychlový"@cs ; + rdfs:label "pascal-seconde par mètre cube"@fr ; + rdfs:label "pascal-secundă pe metru cub"@ro ; + rdfs:label "pascal-segundo por metro cúbico"@pt ; + rdfs:label "paskalosekunda na metr sześcienny"@pl ; + rdfs:label "паскаль-секунда на кубический метр"@ru ; + rdfs:label "باسكال ثانية لكل متر مكعب"@ar ; + rdfs:label "نیوتون ثانیه بر متر مکعب"@fa ; + rdfs:label "पास्कल सैकण्ड प्रति घन मीटर"@hi ; + rdfs:label "パスカル秒毎立方メートル"@ja . + +unit:PA2-PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M2H0T-6D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "Pa²/s²" ; + qudt:ucumCode "Pa2.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square pascal per square second"@en . + +unit:PA2-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Square Pascal Second ($Pa^2\\cdot s$) is a unit in the category of sound exposure."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Pa2-s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M2H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:SoundExposure ; + qudt:iec61360Code "0112/2///62720#UAB339" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_acoustic_impedance--pascal_second_per_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB339"^^xsd:anyURI ; + qudt:siUnitsExpression "Pa2.s" ; + qudt:symbol "Pa²·s" ; + qudt:ucumCode "Pa2.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P42" ; + rdfs:isDefinedBy ; + rdfs:label "Square Pascal Second"@en . + +unit:PARSEC + a qudt:Unit ; + dcterms:description "The parsec (parallax of one arcsecond; symbol: pc) is a unit of length, equal to just under 31 trillion ($31 \\times 10^{12}$) kilometres (about 19 trillion miles), 206265 AU, or about 3.26 light-years. The parsec measurement unit is used in astronomy. It is defined as the length of the adjacent side of an imaginary right triangle in space. The two dimensions that specify this triangle are the parallax angle (defined as 1 arcsecond) and the opposite side (defined as 1 astronomical unit (AU), the distance from the Earth to the Sun). Given these two measurements, along with the rules of trigonometry, the length of the adjacent side (the parsec) can be found."^^qudt:LatexString ; + qudt:conversionMultiplier 30856780000000000.0 ; + qudt:conversionMultiplierSN 3.085678E16 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB067" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB067"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M ; + qudt:symbol "pc" ; + qudt:ucumCode "pc"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C63" ; + rdfs:isDefinedBy ; + rdfs:label "Parsec"@en . + +unit:PCA + a qudt:Unit ; + dcterms:description "A pica is a typographic unit of measure corresponding to 1/72 of its respective foot, and therefore to 1/6 of an inch. The pica contains 12 point units of measure. Notably, Adobe PostScript promoted the pica unit of measure that is the standard in contemporary printing, as in home computers and printers. Usually, pica measurements are represented with an upper-case 'P' with an upper-right-to-lower-left virgule (slash) starting in the upper right portion of the 'P' and ending at the lower left of the upright portion of the 'P'; essentially drawing a virgule (/) through a 'P'. Note that these definitions are different from a typewriter's pica setting, which denotes a type size of ten characters per horizontal inch."^^rdf:HTML ; + qudt:conversionMultiplier 0.0042333 ; + qudt:conversionMultiplierSN 4.2333E-3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pica"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB606" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pica?oldid=458102937"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB606"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "pc" ; + qudt:ucumCode "[pca]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "R1" ; + rdfs:isDefinedBy ; + rdfs:label "Pica"@en . + +unit:PDL + a qudt:Unit ; + dcterms:description "The poundal is a unit of force that is part of the foot-pound-second system of units, in Imperial units introduced in 1877, and is from the specialized subsystem of English absolute (a coherent system). The poundal is defined as the force necessary to accelerate 1 pound-mass to 1 foot per second per second. $1 pdl = 0.138254954376 N$ exactly."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.138254954376 ; + qudt:conversionMultiplierSN 1.38254954376E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Poundal"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB233" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Poundal?oldid=494626458"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB233"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:N ; + qudt:symbol "pdl" ; + qudt:ucumCode "[lb_av].[ft_i].s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M76" ; + rdfs:isDefinedBy ; + rdfs:label "Poundal"@en . + +unit:PDL-FT + a qudt:Unit ; + dcterms:description "product from the non SI-conform unit of the force poundal and the unit foot according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 0.0421401100938048 ; + qudt:conversionMultiplierSN 4.21401100938048E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAB417" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB417"^^xsd:anyURI ; + qudt:symbol "pdl·ft" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.[ft_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M95" ; + rdfs:isDefinedBy ; + rdfs:label "poundal foot" . + +unit:PDL-IN + a qudt:Unit ; + dcterms:description "product of the non SI-conform unit of the force poundal and the unit inch according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 0.0035116758411504 ; + qudt:conversionMultiplierSN 3.5116758411504E-3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:MomentOfForce ; + qudt:hasQuantityKind quantitykind:Torque ; + qudt:iec61360Code "0112/2///62720#UAB418" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB418"^^xsd:anyURI ; + qudt:symbol "pdl·in" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.[in_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M96" ; + rdfs:isDefinedBy ; + rdfs:label "poundal inch" . + +unit:PDL-PER-FT2 + a qudt:Unit ; + dcterms:description """ + A $\\textit{Poundal Per Square Foot}$, ($pdl/ft^2$), is a unit in the category of Pressure. + It is also known as poundals per square foot, poundal/square foot. + This unit is commonly used in the UK, US unit systems. + A $\\textit{Poundal Per Square Foot}$ has a dimension of $ML^{-1}T^{-2}$, + where $M$ is mass, $L$ is length, and $T$ is time. + It can be converted to the corresponding standard SI unit $\\textit{Pa}$ by multiplying its value + by a factor of 1.488163944. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.48816443 ; + qudt:conversionMultiplierSN 1.48816443E0 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$pdl/ft^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB243" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--pressure--poundal_per_square_foot.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB243"^^xsd:anyURI ; + qudt:symbol "pdl/ft²" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.[sft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N21" ; + rdfs:isDefinedBy ; + rdfs:label "Poundal per Square Foot"@en . + +unit:PDL-PER-IN + a qudt:Unit ; + dcterms:description "non SI-conform unit of the surface tension according to the Imperial unit system as quotient poundal by inch" ; + qudt:conversionMultiplier 5.44310844 ; + qudt:conversionMultiplierSN 5.44310844E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerLength ; + qudt:iec61360Code "0112/2///62720#UAB453" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB453"^^xsd:anyURI ; + qudt:symbol "pdl/in" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N32" ; + rdfs:isDefinedBy ; + rdfs:label "poundal per inch" . + +unit:PDL-PER-IN2 + a qudt:Unit ; + dcterms:description "non SI-conform unit of the pressure according to the Imperial system of units (poundal by square inch)" ; + qudt:conversionMultiplier 214.295607874015748031496062992126 ; + qudt:conversionMultiplierSN 2.14295607874015748031496062992126E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfLinearSubgradeReaction ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB427" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB427"^^xsd:anyURI ; + qudt:symbol "pdl/in²" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.[in_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N26" ; + rdfs:isDefinedBy ; + rdfs:label "poundal per square inch" . + +unit:PDL-SEC-PER-FT2 + a qudt:Unit ; + dcterms:description "non SI-conform unit of viscosity" ; + qudt:conversionMultiplier 1.488163943569553805774278215223097 ; + qudt:conversionMultiplierSN 1.488163943569553805774278215223097E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB227" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB227"^^xsd:anyURI ; + qudt:symbol "pdl·s/ft²" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.s.[ft_i]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "poundal second per square foot" . + +unit:PDL-SEC-PER-IN2 + a qudt:Unit ; + dcterms:description "non SI-conforming unit of dynamic viscosity according to the Imperial system of units as product unit of the pressure (poundal by square inch) multiplied by the SI base unit second" ; + qudt:conversionMultiplier 214.295607874015748031496062992126 ; + qudt:conversionMultiplierSN 2.14295607874015748031496062992126E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PDL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAB434" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB434"^^xsd:anyURI ; + qudt:symbol "pdl·s/in²" ; + qudt:ucumCode "[lb_av].[ft_i].s-2.s.[in_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N42" ; + rdfs:isDefinedBy ; + rdfs:label "poundal second per square inch" . + +unit:PENNYWEIGHT + a qudt:Unit ; + dcterms:description "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg"^^rdf:HTML ; + qudt:conversionMultiplier 0.00155517384 ; + qudt:conversionMultiplierSN 1.55517384E-3 ; + qudt:exactMatch unit:DWT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB182" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB182"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg" ; + qudt:symbol "dwt" ; + qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DWT" ; + rdfs:isDefinedBy ; + rdfs:label "Pennyweight"@en . + +unit:PER-ANGSTROM + a qudt:Unit ; + dcterms:description "reciprocal of the unit angstrom"^^rdf:HTML ; + qudt:conversionMultiplier 10000000000.0 ; + qudt:conversionMultiplierSN 1.0E10 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:ANGSTROM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:iec61360Code "0112/2///62720#UAB058" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB058"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the unit angstrom" ; + qudt:symbol "/Å" ; + qudt:ucumCode "/Ao"^^qudt:UCUMcs ; + qudt:ucumCode "Ao-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C85" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Angstrom"@en . + +unit:PER-BAR + a qudt:Unit ; + dcterms:description "reciprocal of the metrical unit with the name bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:hasQuantityKind quantitykind:InversePressure ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:iec61360Code "0112/2///62720#UAA328" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA328"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the metrical unit with the name bar" ; + qudt:symbol "/bar" ; + qudt:ucumCode "/bar"^^qudt:UCUMcs ; + qudt:ucumCode "bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F58" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Bar"@en . + +unit:PER-CentiM + a qudt:Unit ; + dcterms:description "reciprocal of the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:iec61360Code "0112/2///62720#UAA382" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA382"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the 0.01-fold of the SI base unit metre" ; + qudt:symbol "/cm" ; + qudt:ucumCode "/cm"^^qudt:UCUMcs ; + qudt:ucumCode "cm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E90" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Centimeter"@en-US ; + rdfs:label "Reciprocal Centimetre"@en . + +unit:PER-CentiM3 + a qudt:Unit ; + dcterms:description "reciprocal of the 0.000001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA383" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA383"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the 0.000001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "/cm³" ; + qudt:ucumCode "cm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H50" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Centimeter"@en-US ; + rdfs:label "Reciprocal Cubic Centimetre"@en . + +unit:PER-DAY + a qudt:Unit ; + dcterms:description "reciprocal of the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00001157407 ; + qudt:conversionMultiplierSN 1.157407E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA408" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA408"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the unit day" ; + qudt:symbol "/d" ; + qudt:ucumCode "/d"^^qudt:UCUMcs ; + qudt:ucumCode "d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E91" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Day"@en . + +unit:PER-DEG_C + a qudt:Unit ; + dcterms:description "reciprocal of the unit degree Celsius" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB840" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB840"^^xsd:anyURI ; + qudt:plainTextDescription "Unit for expressing the change of some quantity relative to a unit change in temperature." ; + qudt:symbol "/°C" ; + qudt:ucumCode ".Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "/Cel"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal degree Celsius"@en . + +unit:PER-DEG_F + a qudt:Unit ; + dcterms:description "reciprocal of the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 1.799999999999999856000000000000012 ; + qudt:conversionMultiplierSN 1.799999999999999856000000000000012E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:InverseTemperature ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:hasQuantityKind quantitykind:RelativePressureCoefficient ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA047" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA047"^^xsd:anyURI ; + qudt:symbol "/°F" ; + qudt:ucumCode "/[degF]"^^qudt:UCUMcs ; + qudt:ucumCode "[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J26" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal degree Fahrenheit" . + +unit:PER-EV-M3 + a qudt:Unit ; + dcterms:description "complement of the unit for atomic energy electronvolt related to the power of the SI base unit metre by exponent 3" ; + qudt:conversionMultiplier 6241509074460762607.776240980930446 ; + qudt:conversionMultiplierSN 6.241509074460762607776240980930446E18 ; + qudt:hasDimensionVector qkdv:A0E0L-5I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensityOfStates ; + qudt:iec61360Code "0112/2///62720#UAB164" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB164"^^xsd:anyURI ; + qudt:symbol "/(eV·m³)" ; + qudt:ucumCode "eV-1.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C88" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal electron volt per cubic metre" . + +unit:PER-EV2 + a qudt:Unit ; + dcterms:description "Per Square Electron Volt is a denominator unit with dimensions $/eV^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 38956440500000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 3.89564405E37 ; + qudt:expression "$/eV^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M-2H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:EV ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:symbol "/eV²" ; + qudt:ucumCode "eV-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Electron Volt"@en . + +unit:PER-FT3 + a qudt:Unit ; + dcterms:description "reciprocal value of the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 35.31466 ; + qudt:conversionMultiplierSN 3.531466E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA453" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA453"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3" ; + qudt:symbol "/ft³" ; + qudt:ucumCode "/[cft_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[cft_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K20" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Foot"@en . + +unit:PER-GM + a qudt:Unit ; + dcterms:description "reciprocal of the 0.001-fold of the SI base unit kilogram" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:NUM-PER-GM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC004" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC004"^^xsd:anyURI ; + qudt:symbol "/g" ; + qudt:ucumCode "/g"^^qudt:UCUMcs ; + qudt:ucumCode "g-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal gram"@en . + +unit:PER-GigaEV2 + a qudt:Unit ; + dcterms:description "Per Square Giga Electron Volt Unit is a denominator unit with dimensions $/GeV^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 38956440500000000000.0 ; + qudt:conversionMultiplierSN 3.89564405E19 ; + qudt:expression "$/GeV^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M-2H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:GigaEV ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:symbol "/GeV²" ; + qudt:ucumCode "GeV-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Giga Electron Volt Unit"@en . + +unit:PER-H + a qudt:Unit ; + dcterms:description "reciprocal of the SI derived unit henry" ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:H ; + ] ; + qudt:hasQuantityKind quantitykind:Reluctance ; + qudt:iec61360Code "0112/2///62720#UAA169" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA169"^^xsd:anyURI ; + qudt:symbol "/H" ; + qudt:ucumCode "/H"^^qudt:UCUMcs ; + qudt:ucumCode "H-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C89" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Henry"@en . + +unit:PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A reciprocal unit of time for $\\textit{reciprocal hour}$ or \"inverse hour\"."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:exactMatch unit:NUM-PER-HR ; + qudt:expression "$m^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA526" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA526"^^xsd:anyURI ; + qudt:symbol "/h" ; + qudt:ucumCode "/h"^^qudt:UCUMcs ; + qudt:ucumCode "h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H10" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Hour"@en . + +unit:PER-IN + a qudt:Unit ; + dcterms:description "complement of the unit inch according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 39.37007874015748031496062992125984 ; + qudt:conversionMultiplierSN 3.937007874015748031496062992125984E1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Repetency ; + qudt:iec61360Code "0112/2///62720#UAB360" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB360"^^xsd:anyURI ; + qudt:symbol "/in" ; + qudt:ucumCode "/[in_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q24" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal inch" . + +unit:PER-IN2 + a qudt:Unit ; + dcterms:description "complement of the power of the unit inch according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:conversionMultiplier 1550.0031000062000124000248000496 ; + qudt:conversionMultiplierSN 1.5500031000062000124000248000496E3 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:iec61360Code "0112/2///62720#UAB361" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB361"^^xsd:anyURI ; + qudt:symbol "/in²" ; + qudt:ucumCode "[in_i]-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P78" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal square inch" . + +unit:PER-IN3 + a qudt:Unit ; + dcterms:description "reciprocal value of the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 61023.76 ; + qudt:conversionMultiplierSN 6.102376E4 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA546" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA546"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3" ; + qudt:symbol "/in³" ; + qudt:ucumCode "/[cin_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[cin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K49" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Inch"@en . + +unit:PER-J + a qudt:Unit ; + dcterms:description "reciprocal of the SI derived unit joule" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:iec61360Code "0112/2///62720#UAB324" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB324"^^xsd:anyURI ; + qudt:symbol "/J" ; + qudt:ucumCode "/J"^^qudt:UCUMcs ; + qudt:ucumCode "J-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N91" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal joule" . + +unit:PER-J-M3 + a qudt:Unit ; + dcterms:description "unit of the density of states as a reciprocal of the derived unit joule related to the power of the SI base unit metre by exponent 3" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$j^{-1}-m^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-5I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensityOfStates ; + qudt:iec61360Code "0112/2///62720#UAB165" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB165"^^xsd:anyURI ; + qudt:symbol "/(J·m³)" ; + qudt:ucumCode "J-1.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C90" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Joule Cubic Meter"@en-US ; + rdfs:label "Reciprocal Joule Cubic Metre"@en . + +unit:PER-J2 + a qudt:Unit ; + dcterms:description "Per Square Joule is a denominator unit with dimensions $/eV^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$/J^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-4I0M-2H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy_Squared ; + qudt:symbol "/J²" ; + qudt:ucumCode "J-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Joule"@en . + +unit:PER-K + a qudt:Unit ; + dcterms:description "Per Kelvin Unit is a denominator unit with dimensions $/k$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:InverseTemperature ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:hasQuantityKind quantitykind:RelativePressureCoefficient ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA193" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA193"^^xsd:anyURI ; + qudt:symbol "/K" ; + qudt:ucumCode "/K"^^qudt:UCUMcs ; + qudt:ucumCode "K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C91" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Kelvin"@en . + +unit:PER-KiloGM + a qudt:Unit ; + dcterms:description "reciprocal of the SI base unit kilogram" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC003" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC003"^^xsd:anyURI ; + qudt:symbol "/kg" ; + qudt:ucumCode "/kg"^^qudt:UCUMcs ; + qudt:ucumCode "kg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal kilogram" . + +unit:PER-KiloGM-SEC + a qudt:Unit ; + dcterms:description "product of SI base units kilogram to the power of minus one and second to the power of minus one given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD591" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD591"^^xsd:anyURI ; + qudt:symbol "/(kg·s)" ; + qudt:ucumCode "kg-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal kilogram second" . + +unit:PER-KiloGM2 + a qudt:Unit ; + dcterms:description "Per Square Kilogram is a denominator unit with dimensions $/kg^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$/kg^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-2H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass_Squared ; + qudt:symbol "/kg²" ; + qudt:ucumCode "kg-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Kilogram"@en . + +unit:PER-KiloM + a qudt:Unit ; + dcterms:description "Per Kilometer Unit is a denominator unit with dimensions $/km$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:expression "$per-kilometer$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:symbol "/km" ; + qudt:ucumCode "/km"^^qudt:UCUMcs ; + qudt:ucumCode "km-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Kilometer"@en-US ; + rdfs:label "Reciprocal Kilometre"@en . + +unit:PER-KiloV-A-HR + a qudt:Unit ; + dcterms:description "reciprocal of the 1,000-fold of the product of the SI derived unit volt and the SI base unit ampere and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:PER-KiloVA-HR ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:iec61360Code "0112/2///62720#UAA098" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA098"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the 1,000-fold of the product of the SI derived unit volt and the SI base unit ampere and the unit hour" ; + qudt:symbol "/(kV·A·h)" ; + qudt:ucumCode "kV-1.A-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Kilovolt Ampere Hour"@en . + +unit:PER-KiloVA-HR + a qudt:Unit ; + dcterms:description "reciprocal of the 1,000-fold of the product of the SI derived unit volt ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloVA ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:iec61360Code "0112/2///62720#UAA098" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA098"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the 1,000-fold of the product of the SI derived unit volt ampere and the unit hour" ; + qudt:symbol "/(kVA·h)" ; + qudt:ucumCode "kVA-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Kilovolt Ampere Hour"@en . + +unit:PER-L + a qudt:Unit ; + dcterms:description "reciprocal value of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:NUM-PER-L ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA667" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA667"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the unit litre" ; + qudt:symbol "/L" ; + qudt:ucumCode "/L"^^qudt:UCUMcs ; + qudt:ucumCode "L-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K63" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Liter"@en-US ; + rdfs:label "Reciprocal Litre"@en . + +unit:PER-LB + a qudt:Unit ; + dcterms:description "reciprocal of the unit pound (avoirdupois)" ; + qudt:conversionMultiplier 2.20462262184877580722973801345027 ; + qudt:conversionMultiplierSN 2.20462262184877580722973801345027E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC008" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC008"^^xsd:anyURI ; + qudt:symbol "/lbm" ; + qudt:ucumCode "/[lb_av]"^^qudt:UCUMcs ; + qudt:ucumCode "[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal pound (avoirdupois)" . + +unit:PER-M + a qudt:Unit ; + dcterms:description "Per Meter Unit is a denominator unit with dimensions $/m$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:NUM-PER-M ; + qudt:expression "$per-meter$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA738" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA738"^^xsd:anyURI ; + qudt:symbol "/m" ; + qudt:ucumCode "/m"^^qudt:UCUMcs ; + qudt:ucumCode "m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C92" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Meter"@en-US ; + rdfs:label "Reciprocal Metre"@en . + +unit:PER-M-K + a qudt:Unit ; + dcterms:description "Per Meter Kelvin Unit is a denominator unit with dimensions $/m.k$."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$/m.k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:InverseLengthTemperature ; + qudt:symbol "/(m·K)" ; + qudt:ucumCode "m-1.K-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Meter Kelvin"@en-US ; + rdfs:label "Reciprocal Metre Kelvin"@en . + +unit:PER-M-NanoM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:symbol "/(m·nm)" ; + qudt:ucumCode "m-1.nm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal metre per nanometre"@en . + +unit:PER-M-NanoM-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/(m·nm·sr)" ; + qudt:ucumCode "m-1.nm-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal metre nanometre steradian"@en . + +unit:PER-M-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/(m·s)" ; + qudt:ucumCode "m-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal metre per second"@en . + +unit:PER-M-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/(m·sr)" ; + qudt:ucumCode "m-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal metre per steradian"@en . + +unit:PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Per Square Meter\" is a denominator unit with dimensions $/m^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:exactMatch unit:NUM-PER-M2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleFluence ; + qudt:iec61360Code "0112/2///62720#UAD611" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD611"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "/m²" ; + qudt:ucumCode "/m2"^^qudt:UCUMcs ; + qudt:ucumCode "m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C93" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Meter"@en-US ; + rdfs:label "Reciprocal Square Metre"@en . + +unit:PER-M2-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "unit of the particle current density" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^{-2}-s^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Flux ; + qudt:hasQuantityKind quantitykind:ParticleFluenceRate ; + qudt:iec61360Code "0112/2///62720#UAB157" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB157"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "/(m²·s)" ; + qudt:ucumCode "m-2.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "B81" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Square Meter Second"@en-US ; + rdfs:label "Reciprocal Square Metre Second"@en ; + skos:altLabel "Reciprocal square metre per second"@en . + +unit:PER-M3 + a qudt:Unit ; + dcterms:description "\"Per Cubic Meter\" is a denominator unit with dimensions $/m^3$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:NUM-PER-M3 ; + qudt:expression "$/m^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA740" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA740"^^xsd:anyURI ; + qudt:symbol "/m³" ; + qudt:ucumCode "/m3"^^qudt:UCUMcs ; + qudt:ucumCode "m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C86" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Meter"@en-US ; + rdfs:label "Reciprocal Cubic Metre"@en . + +unit:PER-M3-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "unit of the slowing-down density as reciprocal of the power of the SI base unit metre with exponent 3 divided by the SI base unit second" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$m^{-3}-s^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ParticleSourceDensity ; + qudt:hasQuantityKind quantitykind:Slowing-DownDensity ; + qudt:iec61360Code "0112/2///62720#UAB163" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB163"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ; + qudt:symbol "/(m³·s)" ; + qudt:ucumCode "m-3.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C87" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Meter Second"@en-US ; + rdfs:label "Reciprocal Cubic Metre Second"@en ; + skos:altLabel "Reciprocal cubic metre per second"@en . + +unit:PER-MILLE-PSI + a qudt:Unit ; + dcterms:description "thousandth divided by the composed unit for pressure (pound-force per square inch)"^^rdf:HTML ; + qudt:conversionMultiplier 0.0000001450377 ; + qudt:conversionMultiplierSN 1.450377E-7 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MILLE ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:hasQuantityKind quantitykind:InversePressure ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:iec61360Code "0112/2///62720#UAA016" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA016"^^xsd:anyURI ; + qudt:plainTextDescription "thousandth divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:symbol "/ksi" ; + qudt:uneceCommonCode "J12" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Mille Psi"@en . + +unit:PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A reciprocal unit of time for $\\textit{reciprocal minute}$ or $\\textit{inverse minute}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:expression "$m^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA843" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA843"^^xsd:anyURI ; + qudt:symbol "/min" ; + qudt:ucumCode "/min"^^qudt:UCUMcs ; + qudt:ucumCode "min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C94" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Minute"@en . + +unit:PER-MO + a qudt:Unit ; + dcterms:description "reciprocal of the unit month"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000391935077 ; + qudt:conversionMultiplierSN 3.91935077E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MO ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA881" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA881"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the unit month" ; + qudt:symbol "/mo" ; + qudt:ucumCode "/mo"^^qudt:UCUMcs ; + qudt:ucumCode "mo-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H11" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Month"@en . + +unit:PER-MOL + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The $\\textit{Per Mole Unit}$ is a denominator unit with dimensions $mol^{-1}$

."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$/mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L0I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:InverseAmountOfSubstance ; + qudt:iec61360Code "0112/2///62720#UAD514" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD514"^^xsd:anyURI ; + qudt:symbol "/mol" ; + qudt:ucumCode "/mol"^^qudt:UCUMcs ; + qudt:ucumCode "mol-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C95" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Mole"@en . + +unit:PER-MegaK + a qudt:Unit ; + dcterms:description "0.000001-fold of reciprocal of the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaK ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:InverseTemperature ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:hasQuantityKind quantitykind:RelativePressureCoefficient ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA100" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA100"^^xsd:anyURI ; + qudt:symbol "/MK" ; + qudt:uneceCommonCode "M20" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal megakelvin or megakelvin to the power minus one" . + +unit:PER-MegaPA + a qudt:Unit ; + dcterms:description "reciprocal of the 1,000,000-fold of the derived unit pascal" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MegaPA ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:hasQuantityKind quantitykind:InversePressure ; + qudt:hasQuantityKind quantitykind:IsentropicCompressibility ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:iec61360Code "0112/2///62720#UAD929" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD929"^^xsd:anyURI ; + qudt:symbol "/MPa" ; + qudt:ucumCode "/MPa"^^qudt:UCUMcs ; + qudt:ucumCode "MPa-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal megapascal" . + +unit:PER-MicroM + a qudt:Unit ; + dcterms:description "Per Micrometer Unit is a denominator unit with dimensions $/microm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:expression "$per-micrometer$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:symbol "/μm" ; + qudt:ucumCode "/um"^^qudt:UCUMcs ; + qudt:ucumCode "um-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Micrometer"@en-US ; + rdfs:label "Reciprocal Micrometre"@en . + +unit:PER-MicroMOL-L + a qudt:Unit ; + dcterms:description "Units used to describe the sensitivity of detection of a spectrophotometer."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A-1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/(μmol·L)" ; + qudt:ucumCode "umol-1.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal micromole per litre"@en . + +unit:PER-MilliGM + a qudt:Unit ; + dcterms:description "reciprocal of the 0.000001-fold of the SI base unit kilogram" ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:exactMatch unit:NUM-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC005" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC005"^^xsd:anyURI ; + qudt:symbol "/mg" ; + qudt:ucumCode "/mg"^^qudt:UCUMcs ; + qudt:ucumCode "mg-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal milligram" . + +unit:PER-MilliL + a qudt:Unit ; + dcterms:description "reciprocal value of the unit Millilitre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:plainTextDescription "reciprocal value of the unit millilitre" ; + qudt:symbol "/mL" ; + qudt:ucumCode "/mL"^^qudt:UCUMcs ; + qudt:ucumCode "mL-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Milliliter"@en-US ; + rdfs:label "Reciprocal Millilitre"@en . + +unit:PER-MilliM + a qudt:Unit ; + dcterms:description "Per Millimeter Unit is a denominator unit with dimensions $/mm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:expression "$per-millimeter$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:symbol "/mm" ; + qudt:ucumCode "/mm"^^qudt:UCUMcs ; + qudt:ucumCode "mm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Millimeter"@en-US ; + rdfs:label "Reciprocal Millimetre"@en . + +unit:PER-MilliM3 + a qudt:Unit ; + dcterms:description "reciprocal value of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:exactMatch unit:NUM-PER-MilliM3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAA870" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA870"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "/mm³" ; + qudt:ucumCode "/mm3"^^qudt:UCUMcs ; + qudt:ucumCode "mm-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L20" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Millimeter"@en-US ; + rdfs:label "Reciprocal Cubic Millimetre"@en . + +unit:PER-MilliSEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliSEC ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "/ms" ; + qudt:ucumCode "ms-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal millisecond"@en . + +unit:PER-NanoM + a qudt:Unit ; + dcterms:description "Per Nanometer Unit is a denominator unit with dimensions $/nm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:expression "$per-nanometer$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:symbol "/nm" ; + qudt:ucumCode "/nm"^^qudt:UCUMcs ; + qudt:ucumCode "nm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Nanometer"@en-US ; + rdfs:label "Reciprocal Nanometre"@en . + +unit:PER-OZ + a qudt:Unit ; + dcterms:description "reciprocal of the unit ounce (avoirdupois)" ; + qudt:conversionMultiplier 35.27396194958041291567580821520433 ; + qudt:conversionMultiplierSN 3.527396194958041291567580821520433E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:OZ ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC007" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC007"^^xsd:anyURI ; + qudt:symbol "/oz" ; + qudt:ucumCode "/[oz_av]"^^qudt:UCUMcs ; + qudt:ucumCode "[oz_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal ounce (avoirdupois)" . + +unit:PER-PA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "reciprocal of the SI derived unit pascal" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pascal"^^xsd:anyURI ; + qudt:expression "$/Pa$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:hasQuantityKind quantitykind:InversePressure ; + qudt:hasQuantityKind quantitykind:IsentropicCompressibility ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA269" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pascal?oldid=492989202"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA269"^^xsd:anyURI ; + qudt:siUnitsExpression "m^2/N" ; + qudt:symbol "/Pa" ; + qudt:ucumCode "/Pa"^^qudt:UCUMcs ; + qudt:ucumCode "Pa-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C96" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Pascal"@en . + +unit:PER-PA-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/(Pa·s)" ; + qudt:ucumCode "Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Pascal per second"@en . + +unit:PER-PERCENT + a qudt:Unit ; + dcterms:description "reciprocal of one hundredth" ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD873" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD873"^^xsd:anyURI ; + qudt:symbol "/%" ; + qudt:ucumCode "%-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal percent" . + +unit:PER-PSI + a qudt:Unit ; + dcterms:description "reciprocal value of the composed unit for pressure (pound-force per square inch)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0001450377 ; + qudt:conversionMultiplierSN 1.450377E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:InversePressure ; + qudt:hasQuantityKind quantitykind:IsothermalCompressibility ; + qudt:hasQuantityKind quantitykind:StressOpticCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA709" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA709"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the composed unit for pressure (pound-force per square inch)" ; + qudt:symbol "/psi" ; + qudt:ucumCode "[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K93" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Psi"@en . + +unit:PER-PicoM + a qudt:Unit ; + dcterms:description "Per Picoometer Unit is a denominator unit with dimensions $/pm$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:expression "$per-picoometer$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PicoM ; + ] ; + qudt:hasQuantityKind quantitykind:AngularReciprocalLatticeVector ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:CurvatureFromRadius ; + qudt:hasQuantityKind quantitykind:InverseLength ; + qudt:hasQuantityKind quantitykind:LinearAbsorptionCoefficient ; + qudt:hasQuantityKind quantitykind:LinearAttenuationCoefficient ; + qudt:hasQuantityKind quantitykind:LinearIonization ; + qudt:hasQuantityKind quantitykind:PhaseCoefficient ; + qudt:hasQuantityKind quantitykind:PropagationCoefficient ; + qudt:symbol "/pm" ; + qudt:ucumCode "/pm"^^qudt:UCUMcs ; + qudt:ucumCode "pm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Picometer"@en-US ; + rdfs:label "Reciprocal Picometre"@en . + +unit:PER-PlanckMass2 + a qudt:Unit ; + dcterms:description "In physics, the Planck mass, denoted by $m_P$, is the unit of mass in the system of natural units known as Planck units. It is defined so that $\\approx 1.2209 \\times 10 GeV/c_0 = 2.17651(13) \\times 10 kg$, (or $21.7651 \\mu g$), where $c_0$ is the speed of light in a vacuum, $G$ is the gravitational constant, and $\\hbar$ is the reduced Planck constant. Particle physicists and cosmologists often use the reduced Planck mass, which is $\\approx 4.341 \\times 10 kg = 2.435 \\times 10 GeV/c$. The added factor of $1/{\\sqrt{8\\pi}}$ simplifies a number of equations in general relativity. Quantum effects are typified by the magnitude of Planck's constant."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 2111089000000000.0 ; + qudt:conversionMultiplierSN 2.111089E15 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-2H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:PlanckMass ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass_Squared ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_mass?oldid=493648632"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:latexDefinition "$m_P = \\sqrt{\\frac{ \\hbar c^3}{G}} \\approx 1.2209 \\times 10^{19} GeV/c^2 = 2.17651(13) \\times 10^{-8}$, where $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant, and $G$ is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ; + qudt:symbol "/planckmass²" ; + rdfs:isDefinedBy ; + rdfs:label "Inverse Square Planck Mass"@en . + +unit:PER-RAD + a qudt:Unit ; + dcterms:description "reciprocal of the unit radian" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB327" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB327"^^xsd:anyURI ; + qudt:symbol "/rad" ; + qudt:ucumCode "/rad"^^qudt:UCUMcs ; + qudt:ucumCode "rad-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P97" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal radian" . + +unit:PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A reciprical unit of time for $\\textit{reciprocal second}$ or $\\textit{inverse second}$. The $\\textit{Per Second}$ is a unit of rate."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:HZ ; + qudt:exactMatch unit:NUM-PER-SEC ; + qudt:exactMatch unit:SAMPLE-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:iec61360Code "0112/2///62720#UAD544" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD544"^^xsd:anyURI ; + qudt:symbol "/s" ; + qudt:ucumCode "/s"^^qudt:UCUMcs ; + qudt:ucumCode "s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C97" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Second"@en . + +unit:PER-SEC-M2 + a qudt:Unit ; + dcterms:description "$\\textit{Per Second Square Meter}$ is a measure of flux with dimensions $/sec-m^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$per-sec-m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Flux ; + qudt:iec61360Code "0112/2///62720#UAA974" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA974"^^xsd:anyURI ; + qudt:symbol "/(s·m²)" ; + qudt:ucumCode "/(s1.m2)"^^qudt:UCUMcs ; + qudt:ucumCode "s-1.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C99" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Second Square Meter"@en-US ; + rdfs:label "Reciprocal Second Square Metre"@en . + +unit:PER-SEC-M2-SR + a qudt:Unit ; + dcterms:description "Per Second Square Meter Steradian is a denominator unit with dimensions $/sec-m^2-sr$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$/sec-m^2-sr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PhotonRadiance ; + qudt:symbol "/(s·m²·sr)" ; + qudt:ucumCode "/(s.m2.sr)"^^qudt:UCUMcs ; + qudt:ucumCode "s-1.m-2.sr-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D2" ; + rdfs:comment "It is not clear this unit is ever used. [Editor]" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Second Square Meter Steradian"@en-US ; + rdfs:label "Reciprocal Second Square Metre Steradian"@en . + +unit:PER-SEC-M3 + a qudt:Unit ; + dcterms:description "reciprocal of the SI base unit second divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Slowing-DownDensity ; + qudt:iec61360Code "0112/2///62720#UAA975" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA975"^^xsd:anyURI ; + qudt:symbol "/(s·m³)" ; + qudt:ucumCode "s-1.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C98" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal second per cubic metre" . + +unit:PER-SEC-SR + a qudt:Unit ; + dcterms:description "Per Second Steradian Unit is a denominator unit with dimensions $/sec-sr$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$/sec-sr$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:PhotonIntensity ; + qudt:hasQuantityKind quantitykind:TemporalSummationFunction ; + qudt:iec61360Code "0112/2///62720#UAA976" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA976"^^xsd:anyURI ; + qudt:symbol "/(s·sr)" ; + qudt:ucumCode "/(s.sr)"^^qudt:UCUMcs ; + qudt:ucumCode "s-1.sr-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D1" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Second Steradian"@en . + +unit:PER-SEC-SR-M2 + a qudt:Unit ; + dcterms:description "reciprocal of the SI base unit second divided by the product of the SI derived unit steradian and the power of the SI base unit metre and te exponent 2" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA977" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA977"^^xsd:anyURI ; + qudt:symbol "/(s·sr·m²)" ; + qudt:ucumCode "s-1.sr-1.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D2" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal second per steradian square metre" . + +unit:PER-SEC2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:InverseTime_Squared ; + qudt:symbol "/s²" ; + qudt:ucumCode "s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal square second"@en . + +unit:PER-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "/sr" ; + qudt:ucumCode "/sr"^^qudt:UCUMcs ; + qudt:ucumCode "sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal steradian"@en . + +unit:PER-T-M + a qudt:Unit ; + dcterms:description """ + A $\\textit{Per Tesla Meter Unit}$ is a denominator unit with dimensions $/m .\\cdot T$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L-1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticReluctivity ; + qudt:latexSymbol "$m^{-1} \\cdot T^{-1}$"^^qudt:LatexString ; + qudt:symbol "/(T·m)" ; + qudt:ucumCode "T-1.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Tesla Meter"@en-US ; + rdfs:label "Reciprocal Tesla Metre"@en . + +unit:PER-T-SEC + a qudt:Unit ; + dcterms:description "Per Tesla Second Unit is a denominator unit with dimensions $/s . T$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$/s . T$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:symbol "/(T·s)" ; + qudt:ucumCode "T-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Tesla Second Unit"@en . + +unit:PER-TON + a qudt:Unit ; + dcterms:description "reciprocal of the 2,000-fold of the SI base unit pound" ; + qudt:conversionMultiplier 0.001102311310924387903614869006725135 ; + qudt:conversionMultiplierSN 1.102311310924387903614869006725135E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:TON ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:symbol "/tn" ; + qudt:ucumCode "ston_av-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal ton" . + +unit:PER-TONNE + a qudt:Unit ; + dcterms:description "reciprocal of the 1,000-fold of the SI base unit kilogram" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMass ; + qudt:iec61360Code "0112/2///62720#UAC006" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC006"^^xsd:anyURI ; + qudt:symbol "/t" ; + qudt:ucumCode "/t"^^qudt:UCUMcs ; + qudt:ucumCode "t-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal tonne" . + +unit:PER-V + a qudt:Unit ; + dcterms:description "reciprocal of the SI derived unit volt" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:ReciprocalVoltage ; + qudt:iec61360Code "0112/2///62720#UAB326" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB326"^^xsd:anyURI ; + qudt:symbol "/V" ; + qudt:ucumCode "/V"^^qudt:UCUMcs ; + qudt:ucumCode "V-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P96" ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal volt" . + +unit:PER-V-A-SEC + a qudt:Unit ; + dcterms:description "reciprocal of the product of the SI derived unit volt, the SI base unit ampere and the SI base unit second" ; + dcterms:isReplacedBy unit:PER-VA-SEC ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:iec61360Code "0112/2///62720#UAB498" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB498"^^xsd:anyURI ; + qudt:symbol "/(V·A·s)" ; + qudt:ucumCode "V-1.A-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal volt ampere second" . + +unit:PER-VA-SEC + a qudt:Unit ; + dcterms:description "reciprocal of the product of the SI derived unit volt ampere and the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:VA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:InverseEnergy ; + qudt:iec61360Code "0112/2///62720#UAB498" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB498"^^xsd:anyURI ; + qudt:symbol "/(VA·s)" ; + qudt:ucumCode "VA-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "reciprocal volt ampere second" . + +unit:PER-WB + a qudt:Unit ; + dcterms:description "complement of the SI derived unit weber as unit of the Josephson constant, which value is equal to the 384,597,891-fold of the reference value gigahertz divided by volt" ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$Wb^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasQuantityKind quantitykind:InverseMagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAB354" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB354"^^xsd:anyURI ; + qudt:symbol "/Wb" ; + qudt:ucumCode "/Wb"^^qudt:UCUMcs ; + qudt:ucumCode "Wb-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q23" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Weber"@en . + +unit:PER-WK + a qudt:Unit ; + dcterms:description "reciprocal of the unit week"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000001653439 ; + qudt:conversionMultiplierSN 1.653439E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:WK ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA099" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA099"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the unit week" ; + qudt:symbol "/wk" ; + qudt:ucumCode "/wk"^^qudt:UCUMcs ; + qudt:ucumCode "wk-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H85" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Week"@en . + +unit:PER-YD3 + a qudt:Unit ; + dcterms:description "reciprocal value of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.307951 ; + qudt:conversionMultiplierSN 1.307951E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:InverseVolume ; + qudt:iec61360Code "0112/2///62720#UAB033" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB033"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal value of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3" ; + qudt:symbol "/yd³" ; + qudt:ucumCode "[cyd_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M10" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Cubic Yard"@en . + +unit:PER-YR + a qudt:Unit ; + dcterms:description "reciprocal of the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000003168808781402895023702689684893655 ; + qudt:conversionMultiplierSN 3.168808781402895023702689684893655E-8 ; + qudt:exactMatch unit:NUM-PER-YR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAB027" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB027"^^xsd:anyURI ; + qudt:plainTextDescription "reciprocal of the unit year" ; + qudt:symbol "/a" ; + qudt:ucumCode "/a"^^qudt:UCUMcs ; + qudt:ucumCode "a-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H09" ; + rdfs:isDefinedBy ; + rdfs:label "Reciprocal Year"@en . + +unit:PERCENT + a qudt:Unit ; + dcterms:description "\"Percent\" is a unit for 'Dimensionless Ratio' expressed as $\\%$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Percentage"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:hasQuantityKind quantitykind:DutyCycle ; + qudt:hasQuantityKind quantitykind:LengthRatio ; + qudt:hasQuantityKind quantitykind:LuminousFluxRatio ; + qudt:hasQuantityKind quantitykind:OpeningRatio ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:hasQuantityKind quantitykind:Prevalence ; + qudt:hasQuantityKind quantitykind:Reflectance ; + qudt:hasQuantityKind quantitykind:RelativeHumidity ; + qudt:hasQuantityKind quantitykind:RelativePartialPressure ; + qudt:hasQuantityKind quantitykind:ResistanceRatio ; + qudt:hasQuantityKind quantitykind:ServiceFactor ; + qudt:hasQuantityKind quantitykind:TimeRatio ; + qudt:hasQuantityKind quantitykind:VoltageRatio ; + qudt:iec61360Code "0112/2///62720#UAA000" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Percentage?oldid=495284540"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA000"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "%" ; + qudt:ucumCode "%"^^qudt:UCUMcs ; + qudt:udunitsCode "%" ; + qudt:uneceCommonCode "P1" ; + rdfs:isDefinedBy ; + rdfs:label "Percent"@en . + +unit:PERCENT-FT-HR-PER-LB + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units and the product of the units foot and unit for time hour" ; + qudt:conversionMultiplier 24.19088310502224717757046927398712 ; + qudt:conversionMultiplierSN 2.419088310502224717757046927398712E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC808" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC808"^^xsd:anyURI ; + qudt:symbol "ft·h·%/lbm" ; + qudt:ucumCode "[ft_i].h.%.[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent foot hour per pound (avoirdupois)" . + +unit:PERCENT-FT-SEC-PER-LB + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units and the product of the units foot and SI base unit second" ; + qudt:conversionMultiplier 0.006719689751395068660436241464996423 ; + qudt:conversionMultiplierSN 6.719689751395068660436241464996423E-3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC809" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC809"^^xsd:anyURI ; + qudt:symbol "ft·%·s/lbm" ; + qudt:ucumCode "[ft_i].%.s.[lb_av]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent foot second per pound (avoirdupois)" . + +unit:PERCENT-FT2-PER-LB_F-SEC + a qudt:Unit ; + dcterms:description "hundredth relating to the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second and power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.0002088543329607266931093922420396694 ; + qudt:conversionMultiplierSN 2.088543329607266931093922420396694E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Fluidity ; + qudt:iec61360Code "0112/2///62720#UAC810" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC810"^^xsd:anyURI ; + qudt:symbol "ft²·%/(lbf·s)" ; + qudt:ucumCode "[ft_i]2.%.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent square foot per pound-force second" . + +unit:PERCENT-HR-PER-CentiM3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit for time hour" ; + qudt:conversionMultiplier 36000000.0 ; + qudt:conversionMultiplierSN 3.6E7 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC781" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC781"^^xsd:anyURI ; + qudt:symbol "h·%/cm³" ; + qudt:ucumCode "h.%.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per cubic centimetre" . + +unit:PERCENT-HR-PER-FT3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour" ; + qudt:conversionMultiplier 1271.328001973589249015768372744095 ; + qudt:conversionMultiplierSN 1.271328001973589249015768372744095E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC786" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC786"^^xsd:anyURI ; + qudt:symbol "h·%/ft³" ; + qudt:ucumCode "h.%.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per cubic foot" . + +unit:PERCENT-HR-PER-GAL_UK + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the unit for time hour" ; + qudt:conversionMultiplier 7918.892938767160350982932586024475 ; + qudt:conversionMultiplierSN 7.918892938767160350982932586024475E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC784" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC784"^^xsd:anyURI ; + qudt:symbol "h·%/gal{UK}" ; + qudt:ucumCode "h.%.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per gallon (UK)" . + +unit:PERCENT-HR-PER-GAL_US + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the unit for time hour" ; + qudt:conversionMultiplier 9510.19388489334295367639717792985 ; + qudt:conversionMultiplierSN 9.51019388489334295367639717792985E3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC783" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC783"^^xsd:anyURI ; + qudt:symbol "h·%/gal{US}" ; + qudt:ucumCode "h.%.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per gallon (US)" . + +unit:PERCENT-HR-PER-IN3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour" ; + qudt:conversionMultiplier 2196854.787410362222299247748101795 ; + qudt:conversionMultiplierSN 2.196854787410362222299247748101795E6 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC785" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC785"^^xsd:anyURI ; + qudt:symbol "h·%/in³" ; + qudt:ucumCode "h.%.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per cubic inch" . + +unit:PERCENT-HR-PER-L + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit litre and the unit for time hour" ; + qudt:conversionMultiplier 36000.0 ; + qudt:conversionMultiplierSN 3.6E4 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC782" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC782"^^xsd:anyURI ; + qudt:symbol "h·%/L" ; + qudt:ucumCode "h.%.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "h.%/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per litre" . + +unit:PERCENT-HR-PER-M3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the unit for time hour" ; + qudt:conversionMultiplier 36.0 ; + qudt:conversionMultiplierSN 3.6E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC780" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC780"^^xsd:anyURI ; + qudt:symbol "h·%/m³" ; + qudt:ucumCode "h.%.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per cubic metre" . + +unit:PERCENT-HR-PER-YD3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour" ; + qudt:conversionMultiplier 47.08622229531812033391734713867015 ; + qudt:conversionMultiplierSN 4.708622229531812033391734713867015E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC787" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC787"^^xsd:anyURI ; + qudt:symbol "h·%/yd³" ; + qudt:ucumCode "h.%.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent hour per cubic yard" . + +unit:PERCENT-IN2-PER-LB_F-SEC + a qudt:Unit ; + dcterms:description "hundredth relating to the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second and power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2" ; + qudt:conversionMultiplier 0.000001450377312227268702148557236386593 ; + qudt:conversionMultiplierSN 1.450377312227268702148557236386593E-6 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasQuantityKind quantitykind:Fluidity ; + qudt:iec61360Code "0112/2///62720#UAC811" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC811"^^xsd:anyURI ; + qudt:symbol "in²·%/(lbf·s)" ; + qudt:ucumCode "[in_i]2.%.[lbf_av]-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent square inch per pound-force second" . + +unit:PERCENT-MIN-PER-CentiM3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit for time minute" ; + qudt:conversionMultiplier 600000.0 ; + qudt:conversionMultiplierSN 6.0E5 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC789" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC789"^^xsd:anyURI ; + qudt:symbol "min·%/cm³" ; + qudt:ucumCode "min.%.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per cubic centimetre" . + +unit:PERCENT-MIN-PER-FT3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute" ; + qudt:conversionMultiplier 21.18880003289315415026280621240158 ; + qudt:conversionMultiplierSN 2.118880003289315415026280621240158E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC794" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC794"^^xsd:anyURI ; + qudt:symbol "min·%/ft³" ; + qudt:ucumCode "min.%.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per cubic foot" . + +unit:PERCENT-MIN-PER-GAL_UK + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the unit for time minute" ; + qudt:conversionMultiplier 131.9815489794526725163822097670746 ; + qudt:conversionMultiplierSN 1.319815489794526725163822097670746E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC792" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC792"^^xsd:anyURI ; + qudt:symbol "min·%/gal{UK}" ; + qudt:ucumCode "min.%.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per gallon (UK)" . + +unit:PERCENT-MIN-PER-GAL_US + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the unit for time minute" ; + qudt:conversionMultiplier 158.5032314148890492279399529654975 ; + qudt:conversionMultiplierSN 1.585032314148890492279399529654975E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC791" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC791"^^xsd:anyURI ; + qudt:symbol "min·%/gal{US}" ; + qudt:ucumCode "min.%.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per gallon (US)" . + +unit:PERCENT-MIN-PER-IN3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute" ; + qudt:conversionMultiplier 36614.24645683937037165412913502992 ; + qudt:conversionMultiplierSN 3.661424645683937037165412913502992E4 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC793" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC793"^^xsd:anyURI ; + qudt:symbol "min·%/in³" ; + qudt:ucumCode "min.%.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per cubic inch" . + +unit:PERCENT-MIN-PER-L + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit litre and the unit for time minute" ; + qudt:conversionMultiplier 600.0 ; + qudt:conversionMultiplierSN 6.0E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC790" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC790"^^xsd:anyURI ; + qudt:symbol "min·%/L" ; + qudt:ucumCode "min.%.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per litre" . + +unit:PERCENT-MIN-PER-M3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the unit for time minute" ; + qudt:conversionMultiplier 0.6 ; + qudt:conversionMultiplierSN 6.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC788" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC788"^^xsd:anyURI ; + qudt:symbol "min·%/m³" ; + qudt:ucumCode "min.%.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per cubic metre" . + +unit:PERCENT-MIN-PER-YD3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute" ; + qudt:conversionMultiplier 0.7847703715886353388986224523111692 ; + qudt:conversionMultiplierSN 7.847703715886353388986224523111692E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC795" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC795"^^xsd:anyURI ; + qudt:symbol "min·%/yd³" ; + qudt:ucumCode "min.%.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent minute per cubic yard" . + +unit:PERCENT-PER-100KiloCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100,000" ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:exactMatch unit:PERCENT-PER-HectoKiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:100KiloCOUNT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "%/100k" ; + rdfs:isDefinedBy ; + rdfs:label "percent per one hundred thousand" . + +unit:PERCENT-PER-100KiloCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100,000" ; + dcterms:isReplacedBy unit:PERCENT-PER-100KiloCOUNT ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:deprecated true ; + qudt:exactMatch unit:PERCENT-PER-HectoKiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:100KiloCount ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "%/100k" ; + rdfs:isDefinedBy ; + rdfs:label "percent per one hundred thousand" . + +unit:PERCENT-PER-10KiloCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 10,000" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:exactMatch unit:PERCENT-PER-DecaKiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:10KiloCOUNT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA004" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA004"^^xsd:anyURI ; + qudt:symbol "%/10k" ; + qudt:uneceCommonCode "H91" ; + rdfs:isDefinedBy ; + rdfs:label "percent per ten thousand" . + +unit:PERCENT-PER-10KiloCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 10,000" ; + dcterms:isReplacedBy unit:PERCENT-PER-10KiloCOUNT ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:deprecated true ; + qudt:exactMatch unit:PERCENT-PER-DecaKiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:10KiloCount ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA004" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA004"^^xsd:anyURI ; + qudt:symbol "%/10k" ; + qudt:uneceCommonCode "H91" ; + rdfs:isDefinedBy ; + rdfs:label "percent per ten thousand" . + +unit:PERCENT-PER-BAR + a qudt:Unit ; + dcterms:description "hundredth relating to the unit bar" ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:iec61360Code "0112/2///62720#UAA010" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA010"^^xsd:anyURI ; + qudt:symbol "%/bar" ; + qudt:ucumCode "%.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H96" ; + rdfs:isDefinedBy ; + rdfs:label "percent per bar" . + +unit:PERCENT-PER-CentiPOISE + a qudt:Unit ; + dcterms:description "[CGS] hundredth relating to the 0.01-fold of the unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiPOISE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC807" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC807"^^xsd:anyURI ; + qudt:symbol "%/cP" ; + qudt:ucumCode "%.cP-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/cP"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent per centipoise" . + +unit:PERCENT-PER-DAY + a qudt:Unit ; + qudt:conversionMultiplier 0.0000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "%/d" ; + qudt:ucumCode "%.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/d"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Percent per day"@en . + +unit:PERCENT-PER-DEG + a qudt:Unit ; + dcterms:description "hundredth relating to the unit degree" ; + qudt:conversionMultiplier 0.5729577957855229894302178227976183 ; + qudt:conversionMultiplierSN 5.729577957855229894302178227976183E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA002" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA002"^^xsd:anyURI ; + qudt:symbol "%/°" ; + qudt:ucumCode "%.deg-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/deg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H90" ; + rdfs:isDefinedBy ; + rdfs:label "percent per degree" . + +unit:PERCENT-PER-DEG_C + a qudt:Unit ; + dcterms:description "hundredth divided by the unit degree Celsius" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA003" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA003"^^xsd:anyURI ; + qudt:symbol "%/°C" ; + qudt:ucumCode "%.Cel-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/Cel"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M25" ; + rdfs:isDefinedBy ; + rdfs:label "percent per degree Celsius" . + +unit:PERCENT-PER-DecaCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100" ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DecaCOUNT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA006" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA006"^^xsd:anyURI ; + qudt:symbol "%/100" ; + qudt:uneceCommonCode "H93" ; + rdfs:isDefinedBy ; + rdfs:label "percent per hundred" . + +unit:PERCENT-PER-DecaCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100" ; + dcterms:isReplacedBy unit:PERCENT-PER-DecaCOUNT ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DecaCount ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA006" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA006"^^xsd:anyURI ; + qudt:symbol "%/100" ; + qudt:uneceCommonCode "H93" ; + rdfs:isDefinedBy ; + rdfs:label "percent per hundred" . + +unit:PERCENT-PER-DecaK + a qudt:Unit ; + dcterms:description "hundredth relating to the 10-fold of the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DecaK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA011" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA011"^^xsd:anyURI ; + qudt:symbol "%/daK" ; + qudt:uneceCommonCode "H73" ; + rdfs:isDefinedBy ; + rdfs:label "percent per decakelvin" . + +unit:PERCENT-PER-DecaKiloCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 10,000" ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:exactMatch unit:PERCENT-PER-10KiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DecaKiloCOUNT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA005" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA005"^^xsd:anyURI ; + qudt:symbol "%/10000" ; + qudt:uneceCommonCode "H92" ; + rdfs:isDefinedBy ; + rdfs:label "percent per ten thousand" . + +unit:PERCENT-PER-DecaKiloCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 10,000" ; + dcterms:isReplacedBy unit:PERCENT-PER-DecaKiloCOUNT ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:deprecated true ; + qudt:exactMatch unit:PERCENT-PER-10KiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DecaKiloCount ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA005" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA005"^^xsd:anyURI ; + qudt:symbol "%/10000" ; + qudt:uneceCommonCode "H92" ; + rdfs:isDefinedBy ; + rdfs:label "percent per ten thousand" . + +unit:PERCENT-PER-HR + a qudt:Unit ; + qudt:conversionMultiplier 0.000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "%/h" ; + qudt:ucumCode "%.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Percent per hour"@en . + +unit:PERCENT-PER-HectoBAR + a qudt:Unit ; + dcterms:description "hundredths relating to the 100-fold of unit bar" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoBAR ; + ] ; + qudt:hasQuantityKind quantitykind:Compressibility ; + qudt:iec61360Code "0112/2///62720#UAB373" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB373"^^xsd:anyURI ; + qudt:symbol "%/hbar" ; + qudt:ucumCode "%.hbar-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/hbar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H72" ; + rdfs:isDefinedBy ; + rdfs:label "percent per hectobar" . + +unit:PERCENT-PER-HectoKiloCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100,000" ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:exactMatch unit:PERCENT-PER-100KiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoKiloCOUNT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "%/100k" ; + rdfs:isDefinedBy ; + rdfs:label "percent per one hundred thousand" . + +unit:PERCENT-PER-HectoKiloCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 100,000" ; + dcterms:isReplacedBy unit:PERCENT-PER-HectoKiloCOUNT ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:deprecated true ; + qudt:exactMatch unit:PERCENT-PER-100KiloCOUNT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoKiloCount ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "%/100k" ; + rdfs:isDefinedBy ; + rdfs:label "percent per one hundred thousand" . + +unit:PERCENT-PER-IN + a qudt:Unit ; + dcterms:description "hundredth divided by the unit inch according to the Anglo-American and the Imperial system of units" ; + qudt:conversionMultiplier 0.3937007874015748031496062992125984 ; + qudt:conversionMultiplierSN 3.937007874015748031496062992125984E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Repetency ; + qudt:iec61360Code "0112/2///62720#UAA012" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA012"^^xsd:anyURI ; + qudt:symbol "%/in" ; + qudt:ucumCode "%.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H98" ; + rdfs:isDefinedBy ; + rdfs:label "percent per inch" . + +unit:PERCENT-PER-K + a qudt:Unit ; + dcterms:description "hundredth divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearExpansionCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA008" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA008"^^xsd:anyURI ; + qudt:symbol "%/K" ; + qudt:ucumCode "%.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H25" ; + rdfs:isDefinedBy ; + rdfs:label "percent per kelvin" . + +unit:PERCENT-PER-KiloCOUNT + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 1,000" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloCOUNT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA007" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA007"^^xsd:anyURI ; + qudt:symbol "%/1000" ; + qudt:uneceCommonCode "H94" ; + rdfs:isDefinedBy ; + rdfs:label "percent per thousand" . + +unit:PERCENT-PER-KiloCount + a qudt:Unit ; + dcterms:description "hundredth relating to the co-efficient 1,000" ; + dcterms:isReplacedBy unit:PERCENT-PER-KiloCOUNT ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloCount ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA007" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA007"^^xsd:anyURI ; + qudt:symbol "%/1000" ; + qudt:uneceCommonCode "H94" ; + rdfs:isDefinedBy ; + rdfs:label "percent per thousand" . + +unit:PERCENT-PER-M + a qudt:Unit ; + dcterms:description "hundredth relating to the SI base unit metre" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:AttenuationCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA013" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA013"^^xsd:anyURI ; + qudt:symbol "%/m" ; + qudt:ucumCode "%.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H99" ; + rdfs:isDefinedBy ; + rdfs:label "Percent per metre"@en . + +unit:PERCENT-PER-MO + a qudt:Unit ; + dcterms:description "hundredths relating to the unit month" ; + qudt:conversionMultiplier 0.000000003919350772901616281311709002114104 ; + qudt:conversionMultiplierSN 3.919350772901616281311709002114104E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MO ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAB372" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB372"^^xsd:anyURI ; + qudt:symbol "%/mo" ; + qudt:ucumCode "%.mo-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/mo"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H71" ; + rdfs:isDefinedBy ; + rdfs:label "percent per month" . + +unit:PERCENT-PER-MilliM + a qudt:Unit ; + dcterms:description "hundredth relating to the 0.001-fold of the SI base unit metre" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasQuantityKind quantitykind:Repetency ; + qudt:iec61360Code "0112/2///62720#UAA014" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA014"^^xsd:anyURI ; + qudt:symbol "%/mm" ; + qudt:ucumCode "%.mm-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J10" ; + rdfs:isDefinedBy ; + rdfs:label "percent per millimetre" . + +unit:PERCENT-PER-MilliPA-SEC + a qudt:Unit ; + dcterms:description "hundredth relating to the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC804" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC804"^^xsd:anyURI ; + qudt:symbol "%/(mPa·s)" ; + qudt:ucumCode "%.mPa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent per millipascal second" . + +unit:PERCENT-PER-OHM + a qudt:Unit ; + dcterms:description "hundredth relating to the SI unit ohm" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:OHM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA001" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA001"^^xsd:anyURI ; + qudt:symbol "%/Ω" ; + qudt:ucumCode "%.Ohm-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/Ohm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H89" ; + rdfs:isDefinedBy ; + rdfs:label "percent per ohm" . + +unit:PERCENT-PER-PA-SEC + a qudt:Unit ; + dcterms:description "hundredth relating to the product of the SI derived unit pascal and the SI base unit second" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC805" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC805"^^xsd:anyURI ; + qudt:symbol "%/(Pa·s)" ; + qudt:ucumCode "%.Pa-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent per pascal second" . + +unit:PERCENT-PER-PERCENT + a qudt:Unit ; + dcterms:description "hundredth relating to a hundreth" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD871" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD871"^^xsd:anyURI ; + qudt:symbol "%/%" ; + qudt:ucumCode "%.%-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/%"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent per percent" . + +unit:PERCENT-PER-POISE + a qudt:Unit ; + dcterms:description "[CGS] hundredth relating to the unit of the dynamic viscosity poise" ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC806" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC806"^^xsd:anyURI ; + qudt:symbol "%/P" ; + qudt:ucumCode "%.P-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/P"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent per poise" . + +unit:PERCENT-PER-V + a qudt:Unit ; + dcterms:description "hundredth relating to the SI unit volt" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA009" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA009"^^xsd:anyURI ; + qudt:symbol "%/V" ; + qudt:ucumCode "%.V-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/V"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H95" ; + rdfs:isDefinedBy ; + rdfs:label "percent per volt" . + +unit:PERCENT-PER-WK + a qudt:Unit ; + dcterms:description "A rate of change in percent over a period of 7 days"@en ; + qudt:conversionMultiplier 0.00000001653439153439153439153439153439153 ; + qudt:conversionMultiplierSN 1.653439153439153439153439153439153E-8 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:WK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "%/wk" ; + qudt:ucumCode "%.wk-1"^^qudt:UCUMcs ; + qudt:ucumCode "%/wk"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Percent per week"@en . + +unit:PERCENT-PER-YR + a qudt:Unit ; + qudt:conversionMultiplier 0.0000000003168808781402895023702689684893655 ; + qudt:conversionMultiplierSN 3.168808781402895023702689684893655e-10 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:plainTextDescription "percent divided by the unit year" ; + qudt:symbol "%/a" ; + qudt:ucumCode "%.a-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Percent per Year"@en . + +unit:PERCENT-SEC-PER-CentiM3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit second" ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC797" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC797"^^xsd:anyURI ; + qudt:symbol "%·s/cm³" ; + qudt:ucumCode "%.s.cm-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per cubic centimetre" . + +unit:PERCENT-SEC-PER-FT3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second" ; + qudt:conversionMultiplier 0.3531466672148859025043801035400263 ; + qudt:conversionMultiplierSN 3.531466672148859025043801035400263E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC802" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC802"^^xsd:anyURI ; + qudt:symbol "%·s/ft³" ; + qudt:ucumCode "%.s.[ft_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per cubic foot" . + +unit:PERCENT-SEC-PER-GAL_UK + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the SI base unit second" ; + qudt:conversionMultiplier 2.199692482990877875273036829451243 ; + qudt:conversionMultiplierSN 2.199692482990877875273036829451243E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC800" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC800"^^xsd:anyURI ; + qudt:symbol "%·s/gal{UK}" ; + qudt:ucumCode "%.s.[gal_br]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per gallon (UK)" . + +unit:PERCENT-SEC-PER-GAL_US + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the SI base unit second" ; + qudt:conversionMultiplier 2.641720523581484153798999216091625 ; + qudt:conversionMultiplierSN 2.641720523581484153798999216091625E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC799" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC799"^^xsd:anyURI ; + qudt:symbol "%·s/gal{US}" ; + qudt:ucumCode "%.s.[gal_us]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per gallon (US)" . + +unit:PERCENT-SEC-PER-IN3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second" ; + qudt:conversionMultiplier 610.2374409473228395275688189171654 ; + qudt:conversionMultiplierSN 6.102374409473228395275688189171654E2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC801" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC801"^^xsd:anyURI ; + qudt:symbol "%·s/in³" ; + qudt:ucumCode "%.s.[in_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per cubic inch" . + +unit:PERCENT-SEC-PER-L + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the unit litre and the SI base unit second" ; + qudt:conversionMultiplier 10.0 ; + qudt:conversionMultiplierSN 1.0E1 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC798" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC798"^^xsd:anyURI ; + qudt:symbol "%·s/L" ; + qudt:ucumCode "%.s.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "%.s/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per litre" . + +unit:PERCENT-SEC-PER-M3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the SI base unit second" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC796" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC796"^^xsd:anyURI ; + qudt:symbol "%·s/m³" ; + qudt:ucumCode "%.s.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per cubic metre" . + +unit:PERCENT-SEC-PER-YD3 + a qudt:Unit ; + dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second" ; + qudt:conversionMultiplier 0.01307950619314392231497704087185282 ; + qudt:conversionMultiplierSN 1.307950619314392231497704087185282E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PERCENT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAC803" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC803"^^xsd:anyURI ; + qudt:symbol "%·s/yd³" ; + qudt:ucumCode "%.s.[yd_i]-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "percent second per cubic yard" . + +unit:PERCENT_RH + a qudt:Unit ; + dcterms:description "Percent relative humidity is the ratio of the partial pressure of water vapor to the equilibrium vapor pressure of water at a given temperature, expressed as a percentage."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:RelativeHumidity ; + qudt:plainTextDescription "Percent relative humidity is the ratio of the partial pressure of water vapor to the equilibrium vapor pressure of water at a given temperature, expressed as a percentage." ; + qudt:symbol "%RH" ; + rdfs:isDefinedBy ; + rdfs:label "Percent Relative Humidity"@en . + +unit:PERMEABILITY_EM_REL + a qudt:Unit ; + dcterms:description "Relative permeability, denoted by the symbol $\\mu _T$, is the ratio of the permeability of a specific medium to the permeability of free space $\\mu _0$"^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:ElectromagneticPermeabilityRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ; + qudt:latexSymbol "$\\mu\\,T$"^^qudt:LatexString ; + qudt:symbol "μₜ" ; + qudt:ucumCode "[mu_0]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Relative Electromagnetic Permeability"@en . + +unit:PERMEABILITY_REL + a qudt:Unit ; + dcterms:description "In multiphase flow in porous media, the relative permeability of a phase is a dimensionless measure of the effective permeability of that phase. It is the ratio of the effective permeability of that phase to the absolute permeability. It can be viewed as an adaptation of Darcy's law to multiphase flow. For two-phase flow in porous media given steady-state conditions, we can write where is the flux, is the pressure drop, is the viscosity."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.00000125663706 ; + qudt:conversionMultiplierSN 1.25663706E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:PermeabilityRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ; + qudt:symbol "kᵣ" ; + rdfs:isDefinedBy ; + rdfs:label "Relative Permeability"@en . + +unit:PERMITTIVITY_REL + a qudt:Unit ; + dcterms:description """ + The $\\textit{relative permittivity}$ of a material under given conditions reflects the extent to which it concentrates electrostatic lines of flux. + In technical terms, it is the ratio of the amount of electrical energy stored in a material by an applied voltage, + relative to that stored in a vacuum. + Likewise, it is also the ratio of the capacitance of a capacitor using that material as a dielectric, compared to a similar capacitor that has a vacuum as its dielectric. + Relative permittivity is a dimensionless number that is in general complex. + The imaginary portion of the permittivity corresponds to a phase shift of the polarization $P$ relative to $E$ and leads to the attenuation of electromagnetic waves passing through the medium. + $$\\epsilon_r(w) = \\frac{\\epsilon(w)}{\\epsilon_O}$$, + where $\\epsilon_r(w)$ is the complex frequency-dependent absolute permittivity of the material, + and $\\epsilon_O$ is the vacuum permittivity. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000000000008854187817 ; + qudt:conversionMultiplierSN 8.854187817E-12 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_static_permittivity"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permittivity?oldid=489664437"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_static_permittivity?oldid=334224492"^^xsd:anyURI ; + qudt:qkdvDenominator qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:qkdvNumerator qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:symbol "εᵣ" ; + qudt:ucumCode "[eps_0]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Relative Permittivity"@en . + +unit:PERM_0DEG_C + a qudt:Unit ; + dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 0 °C as steam transmittance, where the mass of one grain steam penetrates an area of one foot squared at a pressure from one inch mercury per hour" ; + qudt:exactMatch unit:PERM_Metric_0DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:WaterVapourPermeability ; + qudt:iec61360Code "0112/2///62720#UAB294" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB294"^^xsd:anyURI ; + qudt:symbol "perm (0 °C)" ; + qudt:uneceCommonCode "P91" ; + rdfs:isDefinedBy ; + rdfs:label "perm (0 °C)" . + +unit:PERM_23DEG_C + a qudt:Unit ; + dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 23 °C as steam transmittance at which the mass of one grain of steam penetrates an area of one square foot at a pressure of one inch mercury per hour" ; + qudt:exactMatch unit:PERM_Metric_23DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:WaterVapourPermeability ; + qudt:iec61360Code "0112/2///62720#UAB295" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB295"^^xsd:anyURI ; + qudt:symbol "perm (23 °C)" ; + qudt:uneceCommonCode "P92" ; + rdfs:isDefinedBy ; + rdfs:label "perm (23 °C)" . + +unit:PERM_Metric + a qudt:Unit ; + dcterms:description "A perm is a unit of permeance or \"water vapor transmission\" given a certain differential in partial pressures on either side of a material or membrane. The metric perm (not an SI unit) is defined as 1 gram of water vapor per day, per square metre, per millimeter of mercury."@en ; + qudt:conversionMultiplier 0.0000000000868127 ; + qudt:conversionMultiplierSN 8.68127E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ; + qudt:scalingOf unit:SEC-PER-M ; + qudt:symbol "perm{Metric}" ; + rdfs:isDefinedBy ; + rdfs:label "Metric Perm"@en . + +unit:PERM_Metric_0DEG_C + a qudt:Unit ; + dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 0 °C as steam transmittance, where the mass of one grain steam penetrates an area of one foot squared at a pressure from one inch mercury per hour" ; + qudt:exactMatch unit:PERM_0DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:iec61360Code "0112/2///62720#UAB294" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB294"^^xsd:anyURI ; + qudt:symbol "perm (0 °C)" ; + qudt:uneceCommonCode "P91" ; + rdfs:isDefinedBy ; + rdfs:label "perm (0 °C)" . + +unit:PERM_Metric_23DEG_C + a qudt:Unit ; + dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 23 °C as steam transmittance at which the mass of one grain of steam penetrates an area of one square foot at a pressure of one inch mercury per hour" ; + qudt:exactMatch unit:PERM_23DEG_C ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:iec61360Code "0112/2///62720#UAB295" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB295"^^xsd:anyURI ; + qudt:symbol "perm (23 °C)" ; + qudt:uneceCommonCode "P92" ; + rdfs:isDefinedBy ; + rdfs:label "perm (23 °C)" . + +unit:PERM_US + a qudt:Unit ; + dcterms:description "A perm is a unit of permeance or \"water vapor transmission\" given a certain differential in partial pressures on either side of a material or membrane. The U.S. perm is defined as 1 grain of water vapor per hour, per square foot, per inch of mercury."@en ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000000000572135 ; + qudt:conversionMultiplierSN 5.72135E-11 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:VaporPermeance ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ; + qudt:scalingOf unit:SEC-PER-M ; + qudt:symbol "perm{US}" ; + rdfs:isDefinedBy ; + rdfs:label "U.S. Perm"@en . + +unit:PFERDESTAERKE + a qudt:Unit ; + dcterms:description "obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979" ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB438" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB438"^^xsd:anyURI ; + qudt:symbol "PS" ; + qudt:uneceCommonCode "N12" ; + rdfs:isDefinedBy ; + rdfs:label "Pferdestaerke" . + +unit:PFUND + a qudt:Unit ; + dcterms:description "outdated unit of the mass in Germany" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB387" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB387"^^xsd:anyURI ; + qudt:symbol "pfd" ; + qudt:uneceCommonCode "M86" ; + rdfs:isDefinedBy ; + rdfs:label "pfund" . + +unit:PH + a qudt:Unit ; + dcterms:description """ + In chemistry the unit $\\textit{pH}$, also referred to as $\\textit{acidity}$ or $\\textit{basicity}$, + is the negative logarithm (base 10) of the concentration of free protons (or hydronium ions). + The definition of $pH$ in terms of hydrogen ions in solution is: + + $$\\text{pH}=-\\log_{10}(a_{H^+})\\equiv-\\log_{10}\\left(\\left[H^+\\right]\\right)$$ + + Where $a_{H^+}$ is the equilibrium molar concentration of $H^+$ in the solution, the activity of + the hydrogen ion in the solution. + $$$$ + This definition is appropriate for concentrations equal to, or less than $1\\ mol/l$, + where $aH+ \\equiv [H+]$, that is, $1\\ mol/L\\ HCl$ has a $pH$ of zero. + $$$$ + To relate this to standard molality ($b^\\circ$), typically taken as $1 \\ mol/kg$, + consideration is given to the activity ($a_{H^+}$) of the hydrogen ions. + $$$$ + The activity can be expressed as: + + $$a_{H^+} = \\gamma_{H^+} \\times m_{H^+}$$ + + Where, $\\gamma_{H^+}$ is the activity coefficient, which adjusts the molality to account for + non-ideal behavior due to interactions between ions in the solution. + $m_{H^+}$ is the molality of hydrogen ions in the solution relative to the standard molality, + expressed in $mol/kg$. + $$$$ + The expansion of $pH$ then becomes: + + $$\\text{pH} = -log_{10}\\left(m_{H+}\\times\\gamma_{H^+}\\right)$$ + + $$$$ + This definition is relevant in more concentrated solutions or when precise thermodynamic calculations are required. + It reflects how the properties of the solution deviate from ideal behavior and provides a more accurate understanding of the $pH$ under various conditions. + $$$$ + While $pH$ is a universally recognized scale for expressing hydrogen ion activity, + its appropriateness and accuracy can diminish under conditions of extremely high + ionic strength, non-aqueous environments, high temperatures, or very high or low $pH$ values. + In such cases, alternative measurement strategies might be required to obtain meaningful and accurate descriptions of acidity or basicity. + """^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Acidity ; + qudt:hasQuantityKind quantitykind:Basicity ; + qudt:informativeReference "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ; + qudt:symbol "pH" ; + qudt:ucumCode "[pH]"^^qudt:UCUMcs ; + rdfs:comment "Unsure about dimensionality of pH; conversion requires a log function not just a multiplier"@en ; + rdfs:isDefinedBy ; + rdfs:label "Acidity"@en . + +unit:PHON + a qudt:Unit ; + dcterms:description "psychoacoustical unit for the loudness level, to describe the emotionally sense of the sound level, with which a human will understand an acoustic noise event as an hearing event" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SoundPressureLevel ; + qudt:iec61360Code "0112/2///62720#UAA937" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA937"^^xsd:anyURI ; + qudt:symbol "phon" ; + qudt:uneceCommonCode "C69" ; + rdfs:isDefinedBy ; + rdfs:label "phon" . + +unit:PHOT + a qudt:Unit ; + dcterms:description "A phot (ph) is a photometric unit of illuminance, or luminous flux through an area. It is not an SI unit, but rather is associated with the older centimetre gram second system of units. Metric dimensions: $illuminance = luminous intensity \\times solid angle / length$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Phot"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:LuminousFluxPerArea ; + qudt:iec61360Code "0112/2///62720#UAB255" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Phot?oldid=477198725"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB255"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:CD-PER-M2 ; + qudt:symbol "ph" ; + qudt:ucumCode "ph"^^qudt:UCUMcs ; + qudt:udunitsCode "ph" ; + qudt:uneceCommonCode "P26" ; + rdfs:isDefinedBy ; + rdfs:label "Phot"@en . + +unit:PINT + a qudt:Unit ; + dcterms:description "\"Imperial Pint\" is an Imperial unit for 'Volume' expressed as $pint$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00056826125 ; + qudt:conversionMultiplierSN 5.6826125E-4 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:exactMatch unit:PINT_UK ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:scalingOf unit:M3 ; + qudt:symbol "pt" ; + qudt:ucumCode "[pt_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "PTI" ; + rdfs:isDefinedBy ; + rdfs:label "Imperial Pint"@en . + +unit:PINT_UK + a qudt:Unit ; + dcterms:description "unit of the volume (both for fluids and for dry measures) according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00056826125 ; + qudt:conversionMultiplierSN 5.6826125E-4 ; + qudt:exactMatch unit:PINT ; + qudt:factorUnitScalar 0.5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA952" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA952"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume (both for fluids and for dry measures) according to the Imperial system of units" ; + qudt:symbol "pt{UK}" ; + qudt:ucumCode "[pt_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "PTI" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (UK)"@en . + +unit:PINT_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000000006577098 ; + qudt:conversionMultiplierSN 6.577098E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA953" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA953"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "pt{UK}/d" ; + qudt:ucumCode "[pt_br].d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L53" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (UK) per Day"@en . + +unit:PINT_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000001578504 ; + qudt:conversionMultiplierSN 1.578504E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA954" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA954"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "pt{UK}/h" ; + qudt:ucumCode "[pt_br].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_br]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L54" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (UK) per Hour"@en . + +unit:PINT_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000009471022 ; + qudt:conversionMultiplierSN 9.471022E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA955" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA955"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "pt{UK}/min" ; + qudt:ucumCode "[pt_br].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_br]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L55" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (UK) per Minute"@en . + +unit:PINT_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0005682613 ; + qudt:conversionMultiplierSN 5.682613E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA956" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA956"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (UK) (both for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "pt{UK}/s" ; + qudt:ucumCode "[pt_br].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_br]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L56" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (UK) per Second"@en . + +unit:PINT_US + a qudt:Unit ; + dcterms:description "\"US Liquid Pint\" is a unit for 'Liquid Volume' expressed as $pt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0004731765 ; + qudt:conversionMultiplierSN 4.731765E-4 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 0.5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_US ; + ] ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:iec61360Code "0112/2///62720#UAA957" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA957"^^xsd:anyURI ; + qudt:symbol "pt{US}" ; + qudt:ucumCode "[pt_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "pt" ; + qudt:uneceCommonCode "PT" ; + qudt:uneceCommonCode "PTL" ; + rdfs:isDefinedBy ; + rdfs:label "US Liquid Pint"@en . + +unit:PINT_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000000547658 ; + qudt:conversionMultiplierSN 5.47658E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA958" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA958"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time day" ; + qudt:symbol "pt{US}/d" ; + qudt:ucumCode "[pt_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L57" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (US Liquid) per Day"@en . + +unit:PINT_US-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000001314379 ; + qudt:conversionMultiplierSN 1.314379E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA959" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA959"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "pt{US}/h" ; + qudt:ucumCode "[pt_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L58" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (US Liquid) per Hour"@en . + +unit:PINT_US-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000007886275 ; + qudt:conversionMultiplierSN 7.886275E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA960" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA960"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "pt{US}/min" ; + qudt:ucumCode "[pt_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L59" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (US Liquid) per Minute"@en . + +unit:PINT_US-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0004731765 ; + qudt:conversionMultiplierSN 4.731765E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PINT_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA961" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA961"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume pint (US liquid) according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "pt{US}/s" ; + qudt:ucumCode "[pt_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pt_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L60" ; + rdfs:isDefinedBy ; + rdfs:label "Pint (US Liquid) per Second"@en . + +unit:PINT_US_DRY + a qudt:Unit ; + dcterms:description "\"US Dry Pint\" is a C.G.S System unit for 'Dry Volume' expressed as $dry_pt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000550610471 ; + qudt:conversionMultiplierSN 5.50610471E-4 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAA962" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA962"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "pt{US Dry}" ; + qudt:ucumCode "[dpt_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L61" ; + qudt:uneceCommonCode "PTD" ; + rdfs:isDefinedBy ; + rdfs:label "US Dry Pint"@en . + +unit:PIXEL + a qudt:Unit ; + dcterms:description "both, the smallest unit of a digital raster graphic as well as the display on a screen with raster control" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:PictureElement ; + qudt:iec61360Code "0112/2///62720#UAA938" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA938"^^xsd:anyURI ; + qudt:symbol "pixel" ; + qudt:uneceCommonCode "E37" ; + rdfs:isDefinedBy ; + rdfs:label "pixel" . + +unit:PK_UK + a qudt:Unit ; + dcterms:description "unit of the volume according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.009092181 ; + qudt:conversionMultiplierSN 9.092181E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA939" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA939"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume according to the Imperial system of units" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "peck{UK}" ; + qudt:ucumCode "[pk_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L43" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (UK)"@en . + +unit:PK_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000000105233576 ; + qudt:conversionMultiplierSN 1.05233576E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA940" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA940"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "peck{UK}/d" ; + qudt:ucumCode "[pk_br].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_br]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L44" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (UK) per Day"@en . + +unit:PK_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.000002525605833 ; + qudt:conversionMultiplierSN 2.525605833E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA941" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA941"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "peck{UK}/h" ; + qudt:ucumCode "[pk_br].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_br]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L45" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (UK) per Hour"@en . + +unit:PK_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00015153635 ; + qudt:conversionMultiplierSN 1.5153635E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA942" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA942"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "peck{UK}/min" ; + qudt:ucumCode "[pk_br].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_br]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L46" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (UK) per Minute"@en . + +unit:PK_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume peck (UK) according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.009092181 ; + qudt:conversionMultiplierSN 9.092181E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA943" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA943"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (UK) according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "peck{UK}/s" ; + qudt:ucumCode "[pk_br].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_br]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L47" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (UK) per Second"@en . + +unit:PK_US_DRY + a qudt:Unit ; + dcterms:description "A peck is an imperial and U.S. customary unit of dry volume, equivalent to 2 gallons or 8 dry quarts or 16 dry pints. Two pecks make a kenning (obsolete), and four pecks make a bushel. In Scotland, the peck was used as a dry measure until the introduction of imperial units as a result of the Weights and Measures Act of 1824. The peck was equal to about 9 litres (in the case of certain crops, such as wheat, peas, beans and meal) and about 13 litres (in the case of barley, oats and malt). A firlot was equal to 4 pecks and the peck was equal to 4 lippies or forpets. "^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00880976754 ; + qudt:conversionMultiplierSN 8.80976754E-3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAA948" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA948"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "peck{US Dry}" ; + qudt:ucumCode "[pk_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "pk" ; + qudt:uneceCommonCode "G23" ; + qudt:uneceCommonCode "PY" ; + rdfs:isDefinedBy ; + rdfs:label "US Peck"@en . + +unit:PK_US_DRY-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000101964902 ; + qudt:conversionMultiplierSN 1.01964902E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_US_DRY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA944" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA944"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time day" ; + qudt:symbol "peck{US Dry}/d" ; + qudt:ucumCode "[pk_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L48" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (US Dry) per Day"@en . + +unit:PK_US_DRY-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000002447157651 ; + qudt:conversionMultiplierSN 2.447157651E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_US_DRY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA945" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA945"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "peck{US Dry}/h" ; + qudt:ucumCode "[pk_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L49" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (US Dry) per Hour"@en . + +unit:PK_US_DRY-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000146829459067 ; + qudt:conversionMultiplierSN 1.46829459067E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_US_DRY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA946" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA946"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "peck{US Dry}/min" ; + qudt:ucumCode "[pk_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L50" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (US Dry) per Minute"@en . + +unit:PK_US_DRY-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00880976754 ; + qudt:conversionMultiplierSN 8.80976754E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PK_US_DRY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA947" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA947"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume peck (US dry) as dry measure according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "peck{US Dry}/s" ; + qudt:ucumCode "[pk_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[pk_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L51" ; + rdfs:isDefinedBy ; + rdfs:label "Peck (US Dry) per Second"@en . + +unit:POISE + a qudt:Unit ; + dcterms:description "The poise is the unit of dynamic viscosity in the centimetre gram second system of units. It is named after Jean Louis Marie Poiseuille."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Poise"^^xsd:anyURI ; + qudt:derivedCoherentUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:derivedUnitOfSystem sou:CGS-GAUSS ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA255" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Poise?oldid=487835641"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA255"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:KiloGM-PER-M-SEC ; + qudt:symbol "P" ; + qudt:ucumCode "P"^^qudt:UCUMcs ; + qudt:uneceCommonCode "89" ; + rdfs:isDefinedBy ; + rdfs:label "Poise"@en . + +unit:POISE-PER-BAR + a qudt:Unit ; + dcterms:description "CGS unit poise divided by the unit bar"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA257" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA257"^^xsd:anyURI ; + qudt:plainTextDescription "CGS unit poise divided by the unit bar" ; + qudt:symbol "P/bar" ; + qudt:ucumCode "P.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "P/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F06" ; + rdfs:isDefinedBy ; + rdfs:label "Poise per Bar"@en . + +unit:POISE-PER-K + a qudt:Unit ; + dcterms:description "[CGS] unit poise divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA256" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA256"^^xsd:anyURI ; + qudt:symbol "P/K" ; + qudt:ucumCode "P.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "P/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F86" ; + rdfs:isDefinedBy ; + rdfs:label "poise per kelvin" . + +unit:POISE-PER-PA + a qudt:Unit ; + dcterms:description "[CGS] unit poise divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:POISE ; + ] ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB311" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB311"^^xsd:anyURI ; + qudt:symbol "P/Pa" ; + qudt:ucumCode "P.Pa-1"^^qudt:UCUMcs ; + qudt:ucumCode "P/Pa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N35" ; + rdfs:isDefinedBy ; + rdfs:label "poise per pascal" . + +unit:POND + a qudt:Unit ; + dcterms:description "0.001-fold of the unit of the weight, defined as a mass of 1 kg which finds out about a weight strength from 1 kp by the gravitational force at sea level which corresponds to a strength of 9,806 65 newton" ; + qudt:conversionMultiplier 0.00980665 ; + qudt:conversionMultiplierSN 9.80665E-3 ; + qudt:factorUnitScalar 0.00980665 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:N ; + ] ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB412" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB412"^^xsd:anyURI ; + qudt:symbol "p" ; + qudt:uneceCommonCode "M78" ; + rdfs:isDefinedBy ; + rdfs:label "pond" . + +unit:PPB + a qudt:Unit ; + dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as $ug/l$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:iec61360Code "0112/2///62720#UAD926" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD926"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Parts-per_notation"^^xsd:anyURI ; + qudt:symbol "PPB" ; + qudt:ucumCode "[ppb]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "61" ; + rdfs:isDefinedBy ; + rdfs:label "Parts per billion"@en . + +unit:PPM + a qudt:Unit ; + dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as $ug/l$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:iec61360Code "0112/2///62720#UAD925" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD925"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Parts-per_notation"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "PPM" ; + qudt:ucumCode "[ppm]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "59" ; + rdfs:isDefinedBy ; + rdfs:label "Parts per million"@en . + +unit:PPM-PER-K + a qudt:Unit ; + dcterms:description "Unit for expansion ratios expressed as parts per million per Kelvin."^^qudt:LatexString ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:expression "$PPM/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PPM ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:symbol "PPM/K" ; + qudt:ucumCode "ppm.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "ppm/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Parts-Per-Million per Kelvin"@en . + +unit:PPQ + a qudt:Unit ; + dcterms:description "unit of proportion equal to 10⁻¹⁶" ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000001 ; + qudt:conversionMultiplierSN 1.0E-16 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:iec61360Code "0112/2///62720#UAD928" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD928"^^xsd:anyURI ; + qudt:symbol "ppq" ; + qudt:ucumCode "[ppq]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "part per quadrillion" . + +unit:PPT + a qudt:Unit ; + dcterms:description "trillionth of a quantity, unit of proportion equal to 10⁻¹²" ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:iec61360Code "0112/2///62720#UAD927" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD927"^^xsd:anyURI ; + qudt:symbol "ppt" ; + qudt:ucumCode "[ppt]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NX" ; + rdfs:isDefinedBy ; + rdfs:label "part per trillion"@en . + +unit:PPTH + a qudt:Unit ; + dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as $ug/l$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:iec61360Code "0112/2///62720#UAA015" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA015"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Parts-per_notation"^^xsd:anyURI ; + qudt:symbol "‰" ; + qudt:ucumCode "[ppth]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "NX" ; + rdfs:isDefinedBy ; + rdfs:label "Parts per thousand"@en ; + skos:altLabel "per mil" . + +unit:PPTH-PER-HR + a qudt:Unit ; + qudt:conversionMultiplier 0.000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PPTH ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "‰/h" ; + qudt:ucumCode "[ppth].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ppth]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Parts-per-thousand per hour"@en . + +unit:PPTM + a qudt:Unit ; + dcterms:description "Dimensionless unit for concentration. Recommended practice is to use specific units such as $ug/l$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:symbol "PPTM" ; + rdfs:isDefinedBy ; + rdfs:label "Parts per Ten Million"@en . + +unit:PPTM-PER-K + a qudt:Unit ; + dcterms:description "Unit for expansion ratios expressed as parts per ten million per Kelvin."^^qudt:LatexString ; + qudt:conversionMultiplier 0.0000001 ; + qudt:conversionMultiplierSN 1.0E-7 ; + qudt:expression "$PPTM/K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PPTM ; + ] ; + qudt:hasQuantityKind quantitykind:ExpansionRatio ; + qudt:hasQuantityKind quantitykind:ThermalExpansionCoefficient ; + qudt:symbol "PPTM/K" ; + rdfs:isDefinedBy ; + rdfs:label "Parts-Per-Ten Million per Kelvin"@en . + +unit:PPTR_VOL + a qudt:Unit ; + dcterms:isReplacedBy unit:PPT_VOL ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "pptr" ; + qudt:ucumCode "[pptr]{vol}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Parts per trillion by volume"@en . + +unit:PPT_VOL + a qudt:ContextualUnit, qudt:Unit ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "ppt (volume)" ; + qudt:ucumCode "[pptr]{vol}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Parts per trillion by volume"@en ; + skos:broader unit:PPT . + +unit:PSI + a qudt:Unit ; + dcterms:description "Pounds of force per square inch, the unit for pressure as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 6894.75789 ; + qudt:conversionMultiplierSN 6.89475789E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:LB_F-PER-IN2 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:plainTextDescription "Pounds of force per square inch, the unit for pressure as a compounded unit pound-force according to the Anglo-American system of units divided by the power of the unit Inch according to the Anglo-American and Imperial system of units by exponent 2" ; + qudt:symbol "psi" ; + qudt:ucumCode "[psi]"^^qudt:UCUMcs ; + qudt:udunitsCode "psi" ; + qudt:uneceCommonCode "PS" ; + rdfs:isDefinedBy ; + rdfs:label "PSI"@en . + +unit:PSI-IN3-PER-SEC + a qudt:Unit ; + dcterms:description "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic inch per second)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.1129848 ; + qudt:conversionMultiplierSN 1.129848E-1 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA703" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA703"^^xsd:anyURI ; + qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic inch per second)" ; + qudt:symbol "psi·in³/s" ; + qudt:ucumCode "[psi].[cin_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K87" ; + rdfs:isDefinedBy ; + rdfs:label "Psi Cubic Inch per Second"@en . + +unit:PSI-L-PER-SEC + a qudt:Unit ; + dcterms:description "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (litre per second)"^^rdf:HTML ; + qudt:conversionMultiplier 6.894757 ; + qudt:conversionMultiplierSN 6.894757E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA704" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA704"^^xsd:anyURI ; + qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (litre per second)" ; + qudt:symbol "psi·L/s" ; + qudt:ucumCode "[psi].L.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K88" ; + rdfs:isDefinedBy ; + rdfs:label "Psi Liter per Second"@en-US ; + rdfs:label "Psi Litre per Second"@en . + +unit:PSI-M3-PER-SEC + a qudt:Unit ; + dcterms:description "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic metre per second)"^^rdf:HTML ; + qudt:conversionMultiplier 6894.757 ; + qudt:conversionMultiplierSN 6.894757E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA705" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA705"^^xsd:anyURI ; + qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the composed unit for volume flow (cubic metre per second)" ; + qudt:symbol "psi·m³/s" ; + qudt:ucumCode "[psi].m3.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[psi].m3/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K89" ; + rdfs:isDefinedBy ; + rdfs:label "PSI Cubic Meter per Second"@en-US ; + rdfs:label "PSI Cubic Metre per Second"@en . + +unit:PSI-PER-IN + a qudt:Unit ; + dcterms:description "compound unit for pressure (pound-force according to the Anglo-American unit system divided by the power of the unit inch according to the Anglo-American and Imperial system of units with the exponent 2) divided by the unit inch according to the Anglo-American and Imperial system of units" ; + qudt:conversionMultiplier 271447.1497054715109430218860437721 ; + qudt:conversionMultiplierSN 2.714471497054715109430218860437721E5 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB426" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB426"^^xsd:anyURI ; + qudt:symbol "psi/in" ; + qudt:ucumCode "[psi].[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P86" ; + rdfs:isDefinedBy ; + rdfs:label "psi per inch" . + +unit:PSI-PER-PSI + a qudt:Unit ; + dcterms:description "composed unit for pressure (pound-force per square inch) divided by the composed unit for pressure (pound-force per square inch)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:PressureRatio ; + qudt:iec61360Code "0112/2///62720#UAA951" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA951"^^xsd:anyURI ; + qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:symbol "psi/psi" ; + qudt:ucumCode "[psi].[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L52" ; + rdfs:isDefinedBy ; + rdfs:label "Psi per Psi"@en . + +unit:PSI-YD3-PER-SEC + a qudt:Unit ; + dcterms:description "product of the composed unit for pressure (pound-force per square inch) and the square inch) and the composed unit for volume flow (cubic yard per second)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 5271.42 ; + qudt:conversionMultiplierSN 5.27142E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA706" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA706"^^xsd:anyURI ; + qudt:plainTextDescription "product of the composed unit for pressure (pound-force per square inch) and the square inch) and the composed unit for volume flow (cubic yard per second)" ; + qudt:symbol "psi·yd³/s" ; + qudt:ucumCode "[psi].[cyd_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K90" ; + rdfs:isDefinedBy ; + rdfs:label "Psi Cubic Yard per Second"@en . + +unit:PSU + a qudt:Unit ; + dcterms:description "Practical salinity scale 1978 (PSS-78) is used for ionic content of seawater determined by electrical conductivity. Salinities measured using PSS-78 do not have units, but are approximately scaled to parts-per-thousand for the valid range. The suffix psu or PSU (denoting practical salinity unit) is sometimes added to PSS-78 measurement values. The addition of PSU as a unit after the value is \"formally incorrect and strongly discouraged\"."^^rdf:HTML ; + dcterms:source ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Salinity#PSU"^^xsd:anyURI ; + qudt:symbol "PSU" ; + rdfs:isDefinedBy ; + rdfs:label "Practical Salinity Unit"@en ; + rdfs:seeAlso unit:PPTH . + +unit:PT + a qudt:Unit ; + dcterms:description "In typography, a point is the smallest unit of measure, being a subdivision of the larger pica. It is commonly abbreviated as pt. The point has long been the usual unit for measuring font size and leading and other minute items on a printed page."^^rdf:HTML ; + qudt:conversionMultiplier 0.0000254 ; + qudt:conversionMultiplierSN 2.54E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB605" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB605"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "pt" ; + qudt:ucumCode "[pnt]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N3" ; + rdfs:isDefinedBy ; + rdfs:label "Point"@en . + +unit:PT_BIG + a qudt:Unit ; + dcterms:description "unit for the type size correspondening to: 1 bp = 1/72 in" ; + qudt:conversionMultiplier 0.0003527778 ; + qudt:conversionMultiplierSN 3.527778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Distance ; + qudt:iec61360Code "0112/2///62720#UAB379" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB379"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "pb" ; + qudt:uneceCommonCode "H82" ; + rdfs:isDefinedBy ; + rdfs:label "big point" . + +unit:PebiBIT + a qudt:Unit ; + qudt:conversionMultiplier 87267165460724.59169291379527415124404265746432 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:prefix prefix:Pebi ; + qudt:scalingOf unit:BIT ; + rdfs:isDefinedBy ; + rdfs:label "PebiBIT" . + +unit:PebiBIT-PER-M + a qudt:Unit ; + dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 1125899906842624.0 ; + qudt:conversionMultiplierSN 1.125899906842624E15 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA271" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA271"^^xsd:anyURI ; + qudt:symbol "Pibit/m" ; + qudt:uneceCommonCode "E80" ; + rdfs:isDefinedBy ; + rdfs:label "pebibit per metre" . + +unit:PebiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 1125899906842620.0 ; + qudt:conversionMultiplierSN 1.12589990684262E15 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA272" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA272"^^xsd:anyURI ; + qudt:symbol "Pibit/m²" ; + qudt:uneceCommonCode "E81" ; + rdfs:isDefinedBy ; + rdfs:label "pebibit per square metre" . + +unit:PebiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 1125899906842620.0 ; + qudt:conversionMultiplierSN 1.12589990684262E15 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PebiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA273" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA273"^^xsd:anyURI ; + qudt:symbol "Pibit/m³" ; + qudt:uneceCommonCode "E82" ; + rdfs:isDefinedBy ; + rdfs:label "pebibit per cubic metre" . + +unit:PebiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The pebibyte is a standards-based binary multiple (prefix pebi, symbol Pi) of the byte, a unit of digital information storage. The pebibyte unit symbol is PiB. 1 pebibyte = 1125899906842624bytes = 1024 tebibytes The pebibyte is closely related to the petabyte, which is defined as $10^{15} bytes = 1,000,000,000,000,000 bytes$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 698137323685796.7335433103621932049 ; + qudt:conversionMultiplierSN 6.981373236857967335433103621932049E14 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pebibyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA274" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pebibyte?oldid=492685015"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA274"^^xsd:anyURI ; + qudt:prefix prefix:Pebi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "PiB" ; + qudt:uneceCommonCode "E60" ; + rdfs:isDefinedBy ; + rdfs:label "PebiByte"@en . + +unit:Pennyweight + a qudt:Unit ; + dcterms:description "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg"^^rdf:HTML ; + dcterms:isReplacedBy unit:PENNYWEIGHT ; + qudt:conversionMultiplier 0.00155517384 ; + qudt:conversionMultiplierSN 1.55517384E-3 ; + qudt:deprecated true ; + qudt:exactMatch unit:DWT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB182" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB182"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "dwt" ; + qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "DWT" ; + rdfs:isDefinedBy ; + rdfs:label "Pennyweight"@en . + +unit:PetaA + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit ampere" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAB641" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB641"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:A ; + qudt:symbol "PA" ; + rdfs:isDefinedBy ; + rdfs:label "petaampere" . + +unit:PetaBIT + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit bit" ; + qudt:conversionMultiplier 693147180559945.2 ; + qudt:conversionMultiplierSN 6.931471805599452E14 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB190" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB190"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Pbit" ; + qudt:uneceCommonCode "E78" ; + rdfs:isDefinedBy ; + rdfs:label "petabit" . + +unit:PetaBIT-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit bit divided by the SI base unit second" ; + qudt:conversionMultiplier 693147180559945.30941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E14 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PetaBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA270" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA270"^^xsd:anyURI ; + qudt:symbol "Pbit/s" ; + qudt:ucumCode "Pbit.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Pbit/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E79" ; + rdfs:isDefinedBy ; + rdfs:label "petabit per second" . + +unit:PetaBQ + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit becquerel" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAB590" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB590"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:BQ ; + qudt:symbol "PBq" ; + rdfs:isDefinedBy ; + rdfs:label "petabecquerel" . + +unit:PetaBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "A petabyte is a unit of information equal to one quadrillion bytes, or 1024 terabytes. The unit symbol for the petabyte is PB. The prefix peta (P) indicates the fifth power to 1000: 1 PB = 1000000000000000B, 1 million gigabytes = 1 thousand terabytes The pebibyte (PiB), using a binary prefix, is the corresponding power of 1024, which is more than $12\\% $greater ($2^{50} bytes = 1,125,899,906,842,624 bytes$)."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545177444479562.4753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E15 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Petabyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB187" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Petabyte?oldid=494735969"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB187"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "PB" ; + qudt:ucumCode "PBy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E36" ; + rdfs:isDefinedBy ; + rdfs:label "PetaByte"@en . + +unit:PetaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A PetaCoulomb is $10^{15} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:C ; + qudt:symbol "PC" ; + qudt:ucumCode "PC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "PetaCoulomb"@en . + +unit:PetaFLOPS + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit floating point operations divided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:FloatingPointCalculationCapability ; + qudt:iec61360Code "0112/2///62720#UAB594" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB594"^^xsd:anyURI ; + qudt:symbol "PFLOPS" ; + rdfs:isDefinedBy ; + rdfs:label "petafloating point operations per second" . + +unit:PetaHZ + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit hertz" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAB699" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB699"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:HZ ; + qudt:symbol "PHz" ; + rdfs:isDefinedBy ; + rdfs:label "petahertz" . + +unit:PetaJ + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the derived SI unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB123" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB123"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000,000-fold of the derived SI unit joule" ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:J ; + qudt:symbol "PJ" ; + qudt:ucumCode "PJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C68" ; + rdfs:isDefinedBy ; + rdfs:label "Petajoule"@en . + +unit:PetaJ-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PetaJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB514" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB514"^^xsd:anyURI ; + qudt:symbol "PJ/s" ; + qudt:ucumCode "PJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "PJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "petajoule per second" . + +unit:PetaV + a qudt:Unit ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:V ; + rdfs:isDefinedBy ; + rdfs:label "PetaV" . + +unit:PetaV-A + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:PetaVA ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PetaV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB536" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB536"^^xsd:anyURI ; + qudt:symbol "PV·A" ; + rdfs:isDefinedBy ; + rdfs:label "petavolt ampere" . + +unit:PetaVA + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the SI derived unit ampere" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB536" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB536"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:VA ; + qudt:symbol "PVA" ; + rdfs:isDefinedBy ; + rdfs:label "petavolt ampere" . + +unit:PetaW + a qudt:Unit ; + dcterms:description "1,000,000,000,000,000-fold of the unit watt" ; + qudt:conversionMultiplier 1000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E15 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB506" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB506"^^xsd:anyURI ; + qudt:prefix prefix:Peta ; + qudt:scalingOf unit:W ; + qudt:symbol "PW" ; + rdfs:isDefinedBy ; + rdfs:label "petawatt" . + +unit:PicoA + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:iec61360Code "0112/2///62720#UAA928" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA928"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:A ; + qudt:symbol "pA" ; + qudt:ucumCode "pA"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C70" ; + rdfs:isDefinedBy ; + rdfs:label "picoampere"@en . + +unit:PicoA-PER-HectoPA + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI base unit ampere divided by the 100-fold of the SI derived unit pascal" ; + qudt:conversionMultiplier 0.00000000000001 ; + qudt:conversionMultiplierSN 1.0E-14 ; + qudt:hasDimensionVector qkdv:A0E1L1I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HectoPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD930" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD930"^^xsd:anyURI ; + qudt:symbol "pA/hPa" ; + qudt:ucumCode "pA.hPa-1"^^qudt:UCUMcs ; + qudt:ucumCode "pA/hPa"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "picoampere per hectopascal" . + +unit:PicoA-PER-MicroMOL-L + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.001 ; + qudt:conversionMultiplierSN 1.0E-3 ; + qudt:hasDimensionVector qkdv:A-1E1L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "pA/(μmol·L)" ; + qudt:ucumCode "pA.umol-1.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picoamps per micromole litre"@en . + +unit:PicoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A PicoCoulomb is $10^{-12} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA929" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA929"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:C ; + qudt:symbol "pC" ; + qudt:ucumCode "pC"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C71" ; + rdfs:isDefinedBy ; + rdfs:label "PicoCoulomb"@en . + +unit:PicoFARAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"PicoF\" is a common unit of electric capacitance equal to $10^{-12} farad$. This unit was formerly called the micromicrofarad."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T4D0 ; + qudt:hasQuantityKind quantitykind:Capacitance ; + qudt:iec61360Code "0112/2///62720#UAA930" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA930"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:FARAD ; + qudt:symbol "pF" ; + qudt:ucumCode "pF"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4T" ; + rdfs:isDefinedBy ; + rdfs:label "Picofarad"@en . + +unit:PicoFARAD-PER-M + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoFARAD ; + ] ; + qudt:hasQuantityKind quantitykind:Permittivity ; + qudt:iec61360Code "0112/2///62720#UAA931" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA931"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit farad divided by the SI base unit metre" ; + qudt:symbol "pF/m" ; + qudt:ucumCode "pF.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "pF/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C72" ; + rdfs:isDefinedBy ; + rdfs:label "Picofarad per Meter"@en-US ; + rdfs:label "Picofarad per Metre"@en . + +unit:PicoGM + a qudt:Unit ; + dcterms:description "10**-12 grams or one 10**-15 of the SI standard unit of mass (kilogram)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB835" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB835"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:GM ; + qudt:symbol "pg" ; + qudt:ucumCode "pg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms"@en . + +unit:PicoGM-PER-GM + a qudt:Unit ; + dcterms:description "One part per 10**12 (trillion) by mass of the measurand in the matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "pg/g" ; + qudt:ucumCode "pg.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "pg/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms per gram"@en . + +unit:PicoGM-PER-KiloGM + a qudt:Unit ; + dcterms:description "One part per 10**15 by mass of the measurand in the matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "pg/kg" ; + qudt:ucumCode "pg.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "pg/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms per kilogram"@en . + +unit:PicoGM-PER-L + a qudt:Unit ; + dcterms:description "One 10**15 part of the SI standard unit of mass of the measurand per litre volume of matrix.."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "pg/L" ; + qudt:ucumCode "pg.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "pg/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms per litre"@en . + +unit:PicoGM-PER-MilliGM + a qudt:Unit ; + dcterms:description "One part per 10**9 (billion) by mass of the measurand in the matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoGM ; + ] ; + qudt:hasQuantityKind quantitykind:MassRatio ; + qudt:qkdvDenominator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M1H0T0D0 ; + qudt:symbol "pg/mg" ; + qudt:ucumCode "pg.mg-1"^^qudt:UCUMcs ; + qudt:ucumCode "pg/mg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms per milligram"@en . + +unit:PicoGM-PER-MilliL + a qudt:Unit ; + dcterms:description "One 10**15 part of the SI standard unit of mass of the measurand per millilitre volume of matrix."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoGM ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassConcentration ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "pg/mL" ; + qudt:ucumCode "pg/mL"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picograms per millilitre"@en . + +unit:PicoH + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit henry"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Inductance ; + qudt:iec61360Code "0112/2///62720#UAA932" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA932"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit henry" ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:H ; + qudt:symbol "pH" ; + qudt:ucumCode "pH"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C73" ; + rdfs:isDefinedBy ; + rdfs:label "Picohenry"@en . + +unit:PicoJ + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the unit joule" ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ExchangeIntegral ; + qudt:hasQuantityKind quantitykind:HamiltonFunction ; + qudt:hasQuantityKind quantitykind:LagrangeFunction ; + qudt:hasQuantityKind quantitykind:LevelWidth ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB738" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB738"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:J ; + qudt:symbol "pJ" ; + rdfs:isDefinedBy ; + rdfs:label "picojoule" . + +unit:PicoJ-PER-SEC + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoJ ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB508" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB508"^^xsd:anyURI ; + qudt:symbol "pJ/s" ; + qudt:ucumCode "pJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "pJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "picojoule per second" . + +unit:PicoKAT + a qudt:Unit ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:CatalyticActivity ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:KAT ; + rdfs:isDefinedBy ; + rdfs:label "PicoKAT" . + +unit:PicoKAT-PER-L + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoKAT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "pkat/L" ; + qudt:ucumCode "pkat/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picokatal per Liter"@en-US ; + rdfs:label "Picokatal per Litre"@en . + +unit:PicoL + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the unit litre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:plainTextDescription "0.000000000001-fold of the unit litre" ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:L ; + qudt:symbol "pL" ; + qudt:ucumCode "pL"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q33" ; + rdfs:isDefinedBy ; + rdfs:label "Picolitre"@en ; + rdfs:label "Picolitre"@en-US . + +unit:PicoM + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA949" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA949"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI base unit metre" ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:M ; + qudt:symbol "pm" ; + qudt:ucumCode "pm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C52" ; + rdfs:isDefinedBy ; + rdfs:label "Picometer"@en-US ; + rdfs:label "Picometre"@en . + +unit:PicoMOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:hasQuantityKind quantitykind:ExtentOfReaction ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:MOL ; + qudt:symbol "pmol" ; + rdfs:isDefinedBy ; + rdfs:label "PicoMole"@en . + +unit:PicoMOL-PER-KiloGM + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass ; + qudt:symbol "pmol/kg" ; + qudt:ucumCode "pmol.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "pmol/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per kilogram"@en . + +unit:PicoMOL-PER-L + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:symbol "pmol/L" ; + qudt:ucumCode "pmol.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "pmol/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per litre"@en . + +unit:PicoMOL-PER-L-DAY + a qudt:Unit ; + dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 86400 seconds."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-14 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "pmol/(L·d)" ; + qudt:ucumCode "pmol.L-1.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per litre day"@en . + +unit:PicoMOL-PER-L-HR + a qudt:Unit ; + dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 3600 seconds."@en ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-13 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "pmol/(L·h)" ; + qudt:ucumCode "pmol.L-1.h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per litre hour"@en . + +unit:PicoMOL-PER-M-W-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "pmol/(m·W·s)" ; + qudt:ucumCode "pmol.m-1.W-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per metre watt second"@en . + +unit:PicoMOL-PER-M2-DAY + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0000000000000000115740740740741 ; + qudt:conversionMultiplierSN 1.15740740740741E-17 ; + qudt:hasDimensionVector qkdv:A1E0L-2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasQuantityKind quantitykind:PhotosyntheticPhotonFluxDensity ; + qudt:symbol "pmol/(m²·d)" ; + qudt:ucumCode "pmol.m-2.d-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per square metre day"@en . + +unit:PicoMOL-PER-M3 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Concentration ; + qudt:hasQuantityKind quantitykind:Solubility_Water ; + qudt:symbol "pmol/m³" ; + qudt:ucumCode "pmol.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per cubic metre"@en . + +unit:PicoMOL-PER-M3-SEC + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A1E0L-3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoMOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:CatalyticActivityConcentration ; + qudt:symbol "pmol/(m³·s)" ; + qudt:ucumCode "pmol.m-3.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picomoles per cubic metre second"@en . + +unit:PicoPA + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:BulkModulus ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:Fugacity ; + qudt:hasQuantityKind quantitykind:ModulusOfElasticity ; + qudt:hasQuantityKind quantitykind:ShearModulus ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:PA ; + qudt:symbol "pPa" ; + rdfs:isDefinedBy ; + rdfs:label "PicoPascal"@en . + +unit:PicoPA-PER-KiloM + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit pascal divided by the 1 000-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000001 ; + qudt:conversionMultiplierSN 1.0E-15 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoPA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloM ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ; + qudt:iec61360Code "0112/2///62720#UAA933" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA933"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit pascal divided by the 1 000-fold of the SI base unit metre" ; + qudt:symbol "pPa/km" ; + qudt:ucumCode "pPa.km-1"^^qudt:UCUMcs ; + qudt:ucumCode "pPa/km"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H69" ; + rdfs:isDefinedBy ; + rdfs:label "Picopascal per Kilometer"@en-US ; + rdfs:label "Picopascal per Kilometre"@en . + +unit:PicoS + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit siemens" ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:hasQuantityKind quantitykind:ElectricalConductance ; + qudt:iec61360Code "0112/2///62720#UAB357" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB357"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:S ; + qudt:symbol "pS" ; + qudt:uneceCommonCode "N92" ; + rdfs:isDefinedBy ; + rdfs:label "PicoSiemens"@en . + +unit:PicoS-PER-M + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoS ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA934" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA934"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit Siemens divided by the SI base unit metre" ; + qudt:symbol "pS/m" ; + qudt:ucumCode "pS.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "pS/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L42" ; + rdfs:isDefinedBy ; + rdfs:label "Picosiemens per Meter"@en-US ; + rdfs:label "Picosiemens per Metre"@en . + +unit:PicoSEC + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA950" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA950"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI base unit second" ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:SEC ; + qudt:symbol "ps" ; + qudt:ucumCode "ps"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H70" ; + rdfs:isDefinedBy ; + rdfs:label "Picosecond"@en . + +unit:PicoV + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit volt" ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAB363" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB363"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:V ; + qudt:symbol "pV" ; + qudt:uneceCommonCode "N99" ; + rdfs:isDefinedBy ; + rdfs:label "picovolt" . + +unit:PicoV-A + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:PicoVA ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoV ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB530" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB530"^^xsd:anyURI ; + qudt:symbol "pV·A" ; + qudt:ucumCode "pV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "picovolt ampere" . + +unit:PicoV-A_Reactive + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:PicoVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoV ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC504" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC504"^^xsd:anyURI ; + qudt:symbol "pV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "picovolt ampere reactive" . + +unit:PicoVA + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB530" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB530"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:VA ; + qudt:symbol "pVA" ; + qudt:ucumCode "pVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "picovolt ampere" . + +unit:PicoVAR + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the unit volt ampere reactive" ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC504" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC504"^^xsd:anyURI ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:VAR ; + qudt:symbol "pVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "picovolt ampere reactive" . + +unit:PicoW + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA935" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA935"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit watt" ; + qudt:prefix prefix:Pico ; + qudt:scalingOf unit:W ; + qudt:symbol "pW" ; + qudt:ucumCode "pW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C75" ; + rdfs:isDefinedBy ; + rdfs:label "Picowatt"@en . + +unit:PicoW-PER-CentiM2-L + a qudt:Unit ; + dcterms:description "The power (scaled by 10^-12) per SI unit of area (scaled by 10^-4) produced per SI unit of volume (scaled by 10^-3)."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoW ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "pW/(cm²·L)" ; + qudt:ucumCode "pW.cm-2.L-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Picowatts per square centimetre litre"@en . + +unit:PicoW-PER-M2 + a qudt:Unit ; + dcterms:description "0.000000000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000001 ; + qudt:conversionMultiplierSN 1.0E-12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:PicoW ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAA936" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA936"^^xsd:anyURI ; + qudt:plainTextDescription "0.000000000001-fold of the SI derived unit watt divided by the power of the SI base unit metre with the exponent 2" ; + qudt:symbol "pW/m²" ; + qudt:ucumCode "pW.m-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C76" ; + rdfs:isDefinedBy ; + rdfs:label "Picowatt per Square Meter"@en-US ; + rdfs:label "Picowatt per Square Metre"@en . + +unit:PlanckArea + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.0000000000000000000000000000000000000000000000000000000000000000000000261223 ; + qudt:conversionMultiplierSN 2.61223E-71 ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:scalingOf unit:M2 ; + qudt:symbol "planckarea" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Area"@en . + +unit:PlanckCharge + a qudt:Unit ; + dcterms:description "In physics, the Planck charge, denoted by, is one of the base units in the system of natural units called Planck units. It is a quantity of electric charge defined in terms of fundamental physical constants. The Planck charge is defined as: coulombs, where: is the speed of light in the vacuum, is Planck's constant, is the reduced Planck constant, is the permittivity of free space is the elementary charge = (137.03599911) is the fine structure constant. The Planck charge is times greater than the elementary charge $e$ carried by an electron."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.00000000000000000187554587 ; + qudt:conversionMultiplierSN 1.87554587E-18 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:latexSymbol "$Q_P$"^^qudt:LatexString ; + qudt:scalingOf unit:A-SEC ; + qudt:symbol "planckcharge" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Charge"@en . + +unit:PlanckCurrent + a qudt:Unit ; + dcterms:description "The Planck current is the unit of electric current, denoted by IP, in the system of natural units known as Planck units. $\\approx 3.479 \\times 10 A$, where: the Planck time is the permittivity in vacuum and the reduced Planck constant G is the gravitational constant c is the speed of light in vacuum. The Planck current is that current which, in a conductor, carries a Planck charge in Planck time. Alternatively, the Planck current is that constant current which, if maintained in two straight parallel conductors of infinite length and negligible circular cross-section, and placed a Planck length apart in vacuum, would produce between these conductors a force equal to a Planck force per Planck length."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 34789000000000000000000000.0 ; + qudt:conversionMultiplierSN 3.4789E25 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_current"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_current?oldid=493640689"^^xsd:anyURI ; + qudt:scalingOf unit:A ; + qudt:symbol "planckcurrent" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Current"@en . + +unit:PlanckCurrentDensity + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 133177400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.331774E95 ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E1L-2I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:ElectricCurrentDensity ; + qudt:scalingOf unit:A-PER-M2 ; + qudt:symbol "planckcurrentdensity" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Current Density"@en . + +unit:PlanckDensity + a qudt:Unit ; + dcterms:description "The Planck density is the unit of density, denoted by $\\rho_P$, in the system of natural units known as Planck units. $1\\ \\rho_P \\ is \\approx 5.155 \\times 10^{96} kg/m^3$. This is a unit which is very large, about equivalent to $10^{23}$ solar masses squeezed into the space of a single atomic nucleus. At one unit of Planck time after the Big Bang, the mass density of the universe is thought to have been approximately one unit of Planck density."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 5155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 5.155E96 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_density"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_density?oldid=493642128"^^xsd:anyURI ; + qudt:scalingOf unit:GM-PER-DeciM3 ; + qudt:symbol "planckdensity" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Density"@en . + +unit:PlanckEnergy + a qudt:Unit ; + dcterms:description "In physics, the unit of energy in the system of natural units known as Planck units is called the Planck energy, denoted by $E_P$. $E_P$ is a derived, as opposed to basic, Planck unit. An equivalent definition is:$E_P = \\hbar / T_P$ where $T_P$ is the Planck time. Also: $E_P = m_P c^2$ where $m_P$ is the Planck mass."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 1956100000.0 ; + qudt:conversionMultiplierSN 1.9561E9 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_energy"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_energy?oldid=493639955"^^xsd:anyURI ; + qudt:latexDefinition "$E_\\rho = \\sqrt{\\frac{ \\hbar c^5}{G}} \\approx 1.936 \\times 10^9 J \\approx 1.22 \\times 10^{28} eV \\approx 0.5433 MWh$, where $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant, and $G$ is the gravitational constant."^^qudt:LatexString ; + qudt:scalingOf unit:J ; + qudt:symbol "Eᵨ" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Energy"@en . + +unit:PlanckForce + a qudt:Unit ; + dcterms:description "Planck force is the derived unit of force resulting from the definition of the base Planck units for time, length, and mass. It is equal to the natural unit of momentum divided by the natural unit of time."^^rdf:HTML ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 121027000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.21027E44 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_force"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_force?oldid=493643031"^^xsd:anyURI ; + qudt:scalingOf unit:N ; + qudt:symbol "planckforce" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Force"@en . + +unit:PlanckFrequency + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 18548700000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.85487E43 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_angular_frequency"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_angular_frequency?oldid=493641308"^^xsd:anyURI ; + qudt:scalingOf unit:BQ ; + qudt:symbol "planckfrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Frequency"@en . + +unit:PlanckFrequency_Ang + a qudt:Unit ; + qudt:conversionMultiplier 18548000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.8548E43 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_angular_frequency"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:scalingOf unit:BQ ; + qudt:symbol "planckangularfrequency" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Angular Frequency"@en . + +unit:PlanckImpedance + a qudt:Unit ; + dcterms:description "The Planck impedance is the unit of electrical resistance, denoted by ZP, in the system of natural units known as Planck units. The Planck impedance is directly coupled to the impedance of free space, Z0, and differs in value from Z0 only by a factor of $4\\pi$. If the Planck charge were instead defined to normalize the permittivity of free space, $\\epsilon_0$, rather than the Coulomb constant, $1/(4\\pi\\epsilon_0)$, then the Planck impedance would be identical to the characteristic impedance of free space."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 29.9792458 ; + qudt:conversionMultiplierSN 2.99792458E1 ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_impedance"^^xsd:anyURI ; + qudt:latexDefinition "$Z_P = \\frac{V_P}{I_P}= \\frac{1}{4\\pi\\epsilon_0c}=\\frac{\\mu_oc}{4\\pi}=\\frac{Z_0}{4\\pi}=29.9792458\\Omega$\\where $V_P$ is the Planck voltage, $I_P$ is the Planck current, $c$ is the speed of light in a vacuum, $\\epsilon_0$ is the permittivity of free space, $\\mu_0$ is the permeability of free space, and $Z_0$ is the impedance of free space."^^qudt:LatexString ; + qudt:scalingOf unit:OHM ; + qudt:symbol "Zₚ" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Impedance"@en . + +unit:PlanckLength + a qudt:Unit ; + dcterms:description "In physics, the Planck length, denoted $\\ell_P$, is a unit of length, equal to $1.616199(97)×10^{-35}$ metres. It is a base unit in the system of Planck units. The Planck length can be defined from three fundamental physical constants: the speed of light in a vacuum, Planck's constant, and the gravitational constant. "^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.00000000000000000000000000000000001616252 ; + qudt:conversionMultiplierSN 1.616252E-35 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_length"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_length?oldid=495093067"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:latexDefinition "$\\ell_P = \\sqrt{\\frac{ \\hbar G}{c^3}} \\approx 1.616199(97)) \\times 10^{-35} m$, where $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant, and $G$ is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ; + qudt:latexSymbol "$\\ell_P$"^^qudt:LatexString ; + qudt:scalingOf unit:M ; + qudt:symbol "plancklength" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Length"@en . + +unit:PlanckMass + a qudt:Unit ; + dcterms:description "In physics, the Planck mass, denoted by $m_P$, is the unit of mass in the system of natural units known as Planck units. It is defined so that $\\approx 1.2209 \\times 10 GeV/c_0 = 2.17651(13) \\times 10 kg$, (or $21.7651 \\mu g$), where $c_0$ is the speed of light in a vacuum, $G$ is the gravitational constant, and $\\hbar$ is the reduced Planck constant. Particle physicists and cosmologists often use the reduced Planck mass, which is $\\approx 4.341 \\times 10 kg = 2.435 \\times 10 GeV/c$. The added factor of $1/{\\sqrt{8\\pi}}$ simplifies a number of equations in general relativity. Quantum effects are typified by the magnitude of Planck's constant."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.0000000217644 ; + qudt:conversionMultiplierSN 2.17644E-8 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_mass?oldid=493648632"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:latexDefinition "$m_P = \\sqrt{\\frac{ \\hbar c^3}{G}} \\approx 1.2209 \\times 10^{19} GeV/c^2 = 2.17651(13) \\times 10^{-8}$, where $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant, and $G$ is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ; + qudt:latexSymbol "$m_P$"^^qudt:LatexString ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "planckmass" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Mass"@en . + +unit:PlanckMomentum + a qudt:Unit ; + dcterms:description "Planck momentum is the unit of momentum in the system of natural units known as Planck units. It has no commonly used symbol of its own, but can be denoted by, where is the Planck mass and is the speed of light in a vacuum. Then where is the reduced Planck's constant, is the Planck length, is the gravitational constant. In SI units Planck momentum is $\\approx 6.5 kg m/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 6.52485 ; + qudt:conversionMultiplierSN 6.52485E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_momentum"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:LinearMomentum ; + qudt:hasQuantityKind quantitykind:Momentum ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_momentum?oldid=493644981"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM-M-PER-SEC ; + qudt:symbol "planckmomentum" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Momentum"@en . + +unit:PlanckPower + a qudt:Unit ; + dcterms:description "The Planck energy divided by the Planck time is the Planck power $P_p $, equal to about $3.62831 \\times 10^{52} W$. This is an extremely large unit; even gamma-ray bursts, the most luminous phenomena known, have output on the order of $1 \\times 10^{45} W$, less than one ten-millionth of the Planck power."^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 36283100000000000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 3.62831E52 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_power"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_power?oldid=493642483"^^xsd:anyURI ; + qudt:latexDefinition "$P_p = {\\frac{ c^5}{G}}$, where $c$ is the speed of light in a vacuum, and $G$ is the gravitational constant."^^qudt:LatexString ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "planckpower" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Power"@en . + +unit:PlanckPressure + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 463309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0 ; + qudt:conversionMultiplierSN 4.63309E113 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_pressure"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_pressure?oldid=493640883"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM-PER-M-SEC2 ; + qudt:symbol "planckpressure" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Pressure"@en . + +unit:PlanckTemperature + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 141678400000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.416784E32 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H1T0D0 ; + qudt:hasQuantityKind quantitykind:BoilingPoint ; + qudt:hasQuantityKind quantitykind:FlashPoint ; + qudt:hasQuantityKind quantitykind:MeltingPoint ; + qudt:hasQuantityKind quantitykind:Temperature ; + qudt:hasQuantityKind quantitykind:ThermodynamicTemperature ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:scalingOf unit:DEG_C ; + qudt:symbol "plancktemperature" ; + rdfs:isDefinedBy ; + rdfs:label "PlanckTemperature"@en . + +unit:PlanckTime + a qudt:Unit ; + dcterms:description """ + In physics, the Planck time, denoted by $t_P$, is the unit of time in the system of natural units known as Planck units. + It is the time required for light to travel, in a vacuum, a distance of 1 Planck length. + The unit is named after Max Planck, who was the first to propose it. + + The formula for $\\textit{PlankTime}$ is: + + $$ \\\\ t_P \\equiv \\sqrt{\\frac{\\hbar G}{c^5}} \\approx 5.39106(32) \\times 10^{-44} s$$ + + where, $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant + (defined as $\\hbar = \\frac{h}{2 \\pi}$ and $G$ is the gravitational constant. + The two digits between parentheses denote the standard error of the estimated value. + """^^qudt:LatexString ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.000000000000000000000000000000000000000000000000539124 ; + qudt:conversionMultiplierSN 5.39124E-49 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_time"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_time?oldid=495362103"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ; + qudt:latexSymbol "$t_P$"^^qudt:LatexString ; + qudt:scalingOf unit:SEC ; + qudt:symbol "tₚ" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Time"@en . + +unit:PlanckVolt + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 1042950000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.04295E27 ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:scalingOf unit:V ; + qudt:symbol "Vₚ" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Volt"@en . + +unit:PlanckVolume + a qudt:Unit ; + qudt:applicableSystem sou:PLANCK ; + qudt:conversionMultiplier 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000422419 ; + qudt:conversionMultiplierSN 4.22419E-105 ; + qudt:derivedUnitOfSystem sou:PLANCK ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:scalingOf unit:M3 ; + qudt:symbol "l³ₚ" ; + rdfs:isDefinedBy ; + rdfs:label "Planck Volume"@en . + +unit:QT_UK + a qudt:Unit ; + dcterms:description "unit of the volume for fluids according to the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0011365225 ; + qudt:conversionMultiplierSN 1.1365225E-3 ; + qudt:factorUnitScalar 0.25 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_UK ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA963" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA963"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume for fluids according to the Imperial system of units" ; + qudt:symbol "qt{UK}" ; + qudt:ucumCode "[qt_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "QTI" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (UK)"@en . + +unit:QT_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000000131542 ; + qudt:conversionMultiplierSN 1.31542E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA710" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA710"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time day" ; + qudt:symbol "qt{UK}/d" ; + qudt:ucumCode "[qt_br].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K94" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (UK Liquid) per Day"@en . + +unit:QT_UK-PER-HR + a qudt:Unit ; + dcterms:description "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0000003157007 ; + qudt:conversionMultiplierSN 3.157007E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA711" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA711"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time hour" ; + qudt:symbol "qt{UK}/h" ; + qudt:ucumCode "[qt_br].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K95" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (UK Liquid) per Hour"@en . + +unit:QT_UK-PER-MIN + a qudt:Unit ; + dcterms:description "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00001894205 ; + qudt:conversionMultiplierSN 1.894205E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA712" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA712"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the unit for time minute" ; + qudt:symbol "qt{UK}/min" ; + qudt:ucumCode "[qt_br].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K96" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (UK Liquid) per Minute"@en . + +unit:QT_UK-PER-SEC + a qudt:Unit ; + dcterms:description "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.0011365225 ; + qudt:conversionMultiplierSN 1.1365225E-3 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_UK ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA713" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA713"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the volume quart (UK liquid) for fluids according to the Imperial system of units divided by the SI base unit second" ; + qudt:symbol "qt{UK}/s" ; + qudt:ucumCode "[qt_br].h-1.s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K97" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (UK Liquid) per Second"@en . + +unit:QT_US + a qudt:Unit ; + dcterms:description "\"US Liquid Quart\" is a unit for 'Liquid Volume' expressed as $qt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000946353 ; + qudt:conversionMultiplierSN 9.46353E-4 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 0.25 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:GAL_US ; + ] ; + qudt:hasQuantityKind quantitykind:LiquidVolume ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA964" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA964"^^xsd:anyURI ; + qudt:symbol "qt{US liq}" ; + qudt:ucumCode "[qt_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "QT" ; + qudt:uneceCommonCode "QTL" ; + rdfs:isDefinedBy ; + rdfs:label "US Liquid Quart"@en . + +unit:QT_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000001095316 ; + qudt:conversionMultiplierSN 1.095316E-8 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA714" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA714"^^xsd:anyURI ; + qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time day" ; + qudt:symbol "qt{US liq}/d" ; + qudt:ucumCode "[qt_us].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[qt_us]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K98" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (US Liquid) per Day"@en . + +unit:QT_US-PER-HR + a qudt:Unit ; + dcterms:description "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000000262875833 ; + qudt:conversionMultiplierSN 2.62875833E-7 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA715" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA715"^^xsd:anyURI ; + qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time hour" ; + qudt:symbol "qt{US liq}/h" ; + qudt:ucumCode "[qt_us].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[qt_us]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "K99" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (US Liquid) per Hour"@en . + +unit:QT_US-PER-MIN + a qudt:Unit ; + dcterms:description "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00001577255 ; + qudt:conversionMultiplierSN 1.577255E-5 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA716" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA716"^^xsd:anyURI ; + qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the unit for time minute" ; + qudt:symbol "qt{US liq}/min" ; + qudt:ucumCode "[qt_us].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[qt_us]/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L10" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (US Liquid) per Minute"@en . + +unit:QT_US-PER-SEC + a qudt:Unit ; + dcterms:description "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.000946353 ; + qudt:conversionMultiplierSN 9.46353E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:QT_US ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAA717" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA717"^^xsd:anyURI ; + qudt:plainTextDescription "unit fo the volume quart (US liquid) for fluids according to the Anglo-American system of units divided by the SI base unit second" ; + qudt:symbol "qt{US liq}/s" ; + qudt:ucumCode "[qt_us].s-1"^^qudt:UCUMcs ; + qudt:ucumCode "[qt_us]/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L11" ; + rdfs:isDefinedBy ; + rdfs:label "Quart (US Liquid) per Second"@en . + +unit:QT_US_DRY + a qudt:Unit ; + dcterms:description "\"US Dry Quart\" is a unit for 'Dry Volume' expressed as $dry_qt$."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.001101220942715 ; + qudt:conversionMultiplierSN 1.101220942715E-3 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:DryVolume ; + qudt:iec61360Code "0112/2///62720#UAA965" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA965"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "qt{US Dry}" ; + qudt:ucumCode "[dqt_us]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L62" ; + qudt:uneceCommonCode "QTD" ; + rdfs:isDefinedBy ; + rdfs:label "US Dry Quart"@en . + +unit:QUAD + a qudt:Unit ; + dcterms:description """ + A $\\textit{quad}$ is a unit of energy equal to $10 BTU$, or $1.055 \\times 10\\,\\text{joule}$, + which is $1.055 exajoule$ or $EJ$ in SI units. + The unit is used by the U.S. Department of Energy in discussing world and national energy budgets. + + Some common types of an energy carrier approximately equal 1 quad are: + + 8,007,000,000 Gallons (US) of gasoline, 293,083,000,000 Kilowatt-hours (kWh), 36,000,000 Tonnes of coal, + 970,434,000,000 Cubic feet of natural gas, 5,996,000,000 UK gallons of diesel oil, 25,200,000 Tonnes of oil, + 252,000,000 tonnes of TNT which is five times the energy of the Tsar Bomba nuclear test. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1055000000000000000.0 ; + qudt:conversionMultiplierSN 1.055E18 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quad"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAB221" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quad?oldid=492086827"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB221"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:J ; + qudt:symbol "quad" ; + qudt:uneceCommonCode "N70" ; + rdfs:isDefinedBy ; + rdfs:label "Quad"@en . + +unit:Quarter_UK + a qudt:Unit ; + dcterms:description "unit of the mass according to the avoirdupois system of units: 1 qr. l. = 28 lb"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 12.70058636 ; + qudt:conversionMultiplierSN 1.270058636E1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB202" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB202"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass according to the avoirdupois system of units: 1 qr. l. = 28 lb" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "quarter" ; + qudt:ucumCode "28.[lb_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "QTR" ; + rdfs:isDefinedBy ; + rdfs:label "Quarter (UK)"@en . + +unit:R + a qudt:Unit ; + dcterms:description "Not to be confused with roentgen equivalent man or roentgen equivalent physical. The roentgen (symbol R) is an obsolete unit of measurement for the kerma of X-rays and gamma rays up to 3 MeV."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000258 ; + qudt:conversionMultiplierSN 2.58E-4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Roentgen"^^xsd:anyURI ; + qudt:factorUnitScalar 0.000258 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:C ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricChargePerMass ; + qudt:iec61360Code "0112/2///62720#UAA275" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Roentgen?oldid=491213233"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA275"^^xsd:anyURI ; + qudt:symbol "R" ; + qudt:ucumCode "R"^^qudt:UCUMcs ; + qudt:udunitsCode "R" ; + qudt:uneceCommonCode "2C" ; + rdfs:isDefinedBy ; + rdfs:label "Roentgen"@en . + +unit:R-PER-SEC + a qudt:Unit ; + dcterms:description "unit roentgen, the use of which is no longer permitted divided by the SI base unit second" ; + qudt:conversionMultiplier 0.000258 ; + qudt:conversionMultiplierSN 2.58E-4 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:R ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:ExposureRate ; + qudt:iec61360Code "0112/2///62720#UAA276" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA276"^^xsd:anyURI ; + qudt:symbol "R/s" ; + qudt:ucumCode "R.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "R/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D6" ; + rdfs:isDefinedBy ; + rdfs:label "roentgen per second" . + +unit:RAD + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The radian is the standard unit of angular measure, used in many areas of mathematics. It describes the plane angle subtended by a circular arc as the length of the arc divided by the radius of the arc. In the absence of any symbol radians are assumed, and when degrees are meant the symbol $^{\\ circ}$ is used. "^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Radian"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:guidance "

See NIST section SP811 section7.10

"^^rdf:HTML ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAA966" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Radian?oldid=492309312"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA966"^^xsd:anyURI ; + qudt:omUnit ; + qudt:plainTextDescription "The radian is the standard unit of angular measure, used in many areas of mathematics. It describes the plane angle subtended by a circular arc as the length of the arc divided by the radius of the arc. The unit was formerly a SI supplementary unit, but this category was abolished in 1995 and the radian is now considered a SI derived unit. The SI unit of solid angle measurement is the steradian. The radian is represented by the symbol \"rad\" or, more rarely, by the superscript c (for \"circular measure\"). For example, an angle of 1.2 radians would be written as \"1.2 rad\" or \"1.2c\" (the second symbol is often mistaken for a degree: \"1.2u00b0\"). As the ratio of two lengths, the radian is a \"pure number\" that needs no unit symbol, and in mathematical writing the symbol \"rad\" is almost always omitted. In the absence of any symbol radians are assumed, and when degrees are meant the symbol u00b0 is used. [Wikipedia]" ; + qudt:siExactMatch si-unit:radian ; + qudt:symbol "rad" ; + qudt:ucumCode "rad"^^qudt:UCUMcs ; + qudt:udunitsCode "rad" ; + qudt:uneceCommonCode "C81" ; + rdfs:comment "The radian and steradian are special names for the number one that may be used to convey information about the quantity concerned. In practice the symbols rad and sr are used where appropriate, but the symbol for the derived unit one is generally omitted in specifying the values of dimensionless quantities." ; + rdfs:isDefinedBy ; + rdfs:label "Radiant"@de ; + rdfs:label "radian"@en ; + rdfs:label "radian"@fr ; + rdfs:label "radian"@la ; + rdfs:label "radian"@ms ; + rdfs:label "radian"@pl ; + rdfs:label "radian"@ro ; + rdfs:label "radian"@sl ; + rdfs:label "radiano"@pt ; + rdfs:label "radiante"@it ; + rdfs:label "radián"@cs ; + rdfs:label "radián"@es ; + rdfs:label "radián"@hu ; + rdfs:label "radyan"@tr ; + rdfs:label "ακτίνιο"@el ; + rdfs:label "радиан"@bg ; + rdfs:label "радиан"@ru ; + rdfs:label "רדיאן"@he ; + rdfs:label "راديان"@ar ; + rdfs:label "رادیان"@fa ; + rdfs:label "वर्ग मीटर"@hi ; + rdfs:label "ラジアン"@ja ; + rdfs:label "弧度"@zh . + +unit:RAD-M2-PER-KiloGM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$rad m^2 / kg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificOpticalRotatoryPower ; + qudt:iec61360Code "0112/2///62720#UAB162" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB162"^^xsd:anyURI ; + qudt:symbol "rad·m²/kg" ; + qudt:ucumCode "rad.m2.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad.m2/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C83" ; + rdfs:isDefinedBy ; + rdfs:label "Radian Square Meter per Kilogram"@en-US ; + rdfs:label "Radian Square Metre per Kilogram"@en . + +unit:RAD-M2-PER-MOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$rad m^2 / mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:MolarOpticalRotatoryPower ; + qudt:iec61360Code "0112/2///62720#UAB161" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB161"^^xsd:anyURI ; + qudt:symbol "rad·m²/mol" ; + qudt:ucumCode "rad.m2.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad.m2/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C82" ; + rdfs:isDefinedBy ; + rdfs:label "Radian Square Meter per Mole"@en-US ; + rdfs:label "Radian Square Metre per Mole"@en . + +unit:RAD-PER-HR + a qudt:Unit ; + dcterms:description "\"Radian per Hour\" is a unit for 'Angular Velocity' expressed as $rad/h$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:expression "$rad/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:symbol "rad/h" ; + qudt:ucumCode "rad.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Radian per Hour"@en . + +unit:RAD-PER-M + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$rad/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AngularWavenumber ; + qudt:hasQuantityKind quantitykind:DebyeAngularWavenumber ; + qudt:hasQuantityKind quantitykind:FermiAngularWavenumber ; + qudt:iec61360Code "0112/2///62720#UAA967" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA967"^^xsd:anyURI ; + qudt:symbol "rad/m" ; + qudt:ucumCode "rad.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C84" ; + rdfs:isDefinedBy ; + rdfs:label "Radian per Meter"@en-US ; + rdfs:label "Radiant je Meter"@de ; + rdfs:label "radian na metr"@pl ; + rdfs:label "radian par mètre"@fr ; + rdfs:label "radian per meter"@ms ; + rdfs:label "radian per metre"@en ; + rdfs:label "radiane pe metru"@ro ; + rdfs:label "radiano por metro"@pt ; + rdfs:label "radiante al metro"@it ; + rdfs:label "radián por metro"@es ; + rdfs:label "radiánů na metr"@cs ; + rdfs:label "radyan bölü metre"@tr ; + rdfs:label "радиан на метр"@ru ; + rdfs:label "رادیان بر متر"@fa ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "प्रति मीटर वर्ग मीटर"@hi ; + rdfs:label "ラジアン毎メートル"@ja ; + rdfs:label "弧度每米"@zh . + +unit:RAD-PER-MIN + a qudt:Unit ; + dcterms:description "Radian Per Minute (rad/min) is a unit in the category of Angular velocity. It is also known as radians per minute, radian/minute. Radian Per Minute (rad/min) has a dimension of aT-1 where $T$ is time. It can be converted to the corresponding standard SI unit rad/s by multiplying its value by a factor of 0.0166666666667. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:expression "$rad/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:symbol "rad/min" ; + qudt:ucumCode "rad.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad/min"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Radian per Minute"@en . + +unit:RAD-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Radian per Second\" is the SI unit of rotational speed (angular velocity), and, also the unit of angular frequency. The radian per second is defined as the change in the orientation of an object, in radians, every second."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$rad/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:AngularFrequency ; + qudt:hasQuantityKind quantitykind:AngularVelocity ; + qudt:iec61360Code "0112/2///62720#UAA968" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA968"^^xsd:anyURI ; + qudt:symbol "rad/s" ; + qudt:ucumCode "rad.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "rad/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2A" ; + rdfs:isDefinedBy ; + rdfs:label "Radian je Sekunde"@de ; + rdfs:label "radian na sekundo"@sl ; + rdfs:label "radian na sekundę"@pl ; + rdfs:label "radian par seconde"@fr ; + rdfs:label "radian pe secundă"@ro ; + rdfs:label "radian per saat"@ms ; + rdfs:label "radian per second"@en ; + rdfs:label "radiano por segundo"@pt ; + rdfs:label "radiante al secondo"@it ; + rdfs:label "radián por segundo"@es ; + rdfs:label "radián za sekundu"@cs ; + rdfs:label "radyan bölü saniye"@tr ; + rdfs:label "радиан в секунду"@ru ; + rdfs:label "راديان في الثانية"@ar ; + rdfs:label "رادیان بر ثانیه"@fa ; + rdfs:label "वर्ग मीटर प्रति सैकिण्ड"@hi ; + rdfs:label "ラジアン毎秒"@ja ; + rdfs:label "弧度每秒"@zh . + +unit:RAD-PER-SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Angular acceleration is the rate of change of angular velocity. In SI units, it is measured in radians per Square second ($rad/s^2$), and is usually denoted by the Greek letter $\\alpha$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$rad/s2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:iec61360Code "0112/2///62720#UAA969" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA969"^^xsd:anyURI ; + qudt:symbol "rad/s²" ; + qudt:ucumCode "rad.s-2"^^qudt:UCUMcs ; + qudt:ucumCode "rad/s2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "2B" ; + rdfs:isDefinedBy ; + rdfs:label "Radian per Square Second"@en . + +unit:RAD_R + a qudt:Unit ; + dcterms:description "The $rad$ is a deprecated unit of absorbed radiation dose, defined as $1 rad = 0.01\\,Gy = 0.01 J/kg$. It was originally defined in CGS units in 1953 as the dose causing 100 ergs of energy to be absorbed by one gram of matter. It has been replaced by the gray in most of the world. A related unit, the $roentgen$, was formerly used to quantify the number of rad deposited into a target when it was exposed to radiation. The F-factor can used to convert between rad and roentgens. The material absorbing the radiation can be human tissue or silicon microchips or any other medium (for example, air, water, lead shielding, etc.)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/RAD"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:AbsorbedDose ; + qudt:informativeReference "http://en.wikipedia.org/wiki/RAD?oldid=493716376"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M2-PER-SEC2 ; + qudt:symbol "rad" ; + qudt:ucumCode "RAD"^^qudt:UCUMcs ; + qudt:uneceCommonCode "C80" ; + rdfs:isDefinedBy ; + rdfs:label "Rad"@en . + +unit:RAYL + a qudt:Unit ; + dcterms:description "The $Rayl$ is one of two units of specific acoustic impedance. When sound waves pass through any physical substance the pressure of the waves causes the particles of the substance to move. The sound specific impedance is the ratio between the sound pressure and the particle velocity it produces. The specific impedance is one rayl if unit pressure produces unit velocity. It is defined as follows: $1\\; rayl = 1 dyn\\cdot s\\cdot cm^{-3}$ Or in SI as: $1 \\; rayl = 10^{-1}Pa\\cdot s\\cdot m^{-1}$, which equals $10\\,N \\cdot s\\cdot m^{-3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Rayl"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rayl?oldid=433570842"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM-PER-M2-SEC ; + qudt:symbol "rayl" ; + rdfs:isDefinedBy ; + rdfs:label "Rayl"@en . + +unit:REM + a qudt:Unit ; + dcterms:description "A Rem is a deprecated unit used to measure the biological effects of ionizing radiation. The rem is defined as equal to 0.01 sievert, which is the more commonly used unit outside of the United States. Equivalent dose, effective dose, and committed dose can all be measured in units of rem. These quantities are products of the absorbed dose in rads and weighting factors. These factors must be selected for each exposure situation; there is no universally applicable conversion constant from rad to rem. A rem is a large dose of radiation, so the millirem (mrem), which is one thousandth of a rem, is often used for the dosages commonly encountered, such as the amount of radiation received from medical x-rays and background sources."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:R_man ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:iec61360Code "0112/2///62720#UAA971" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA971"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M2-PER-SEC2 ; + qudt:symbol "rem" ; + qudt:ucumCode "REM"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D91" ; + rdfs:isDefinedBy ; + rdfs:label "Rem"@en . + +unit:REM-PER-SEC + a qudt:Unit ; + dcterms:description "unit for the equivalent tin rate relating to DIN 1301-3:1979: 1 rem/s = 0.01 J/(kg·s) = 1 Sv/s" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB442" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB442"^^xsd:anyURI ; + qudt:symbol "rem/s" ; + qudt:ucumCode "REM.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "REM/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P69" ; + rdfs:isDefinedBy ; + rdfs:label "rem per second" . + +unit:REV + a qudt:Unit ; + dcterms:description "\"Revolution\" is a unit for 'Plane Angle' expressed as $rev$."^^qudt:LatexString ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 6.28318531 ; + qudt:conversionMultiplierSN 6.28318531E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Revolution"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Angle ; + qudt:hasQuantityKind quantitykind:PlaneAngle ; + qudt:iec61360Code "0112/2///62720#UAB206" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Revolution?oldid=494110330"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB206"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "rev" ; + qudt:uneceCommonCode "M44" ; + rdfs:isDefinedBy ; + rdfs:label "Revolution"@en . + +unit:REV-PER-HR + a qudt:Unit ; + dcterms:description "\"Revolution per Hour\" is a unit for 'Angular Velocity' expressed as $rev/h$."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00174532925 ; + qudt:conversionMultiplierSN 1.74532925E-3 ; + qudt:expression "$rev/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REV ; + ] ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:symbol "rev/h" ; + rdfs:isDefinedBy ; + rdfs:label "Revolution per Hour"@en . + +unit:REV-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Revolution per Minute\" is a unit for 'Angular Velocity' expressed as $rev/min$. One revolution per minute is equivalent to 1/60 hertz."^^qudt:LatexString ; + qudt:altSymbol "RPM" ; + qudt:altSymbol "r/min" ; + qudt:altSymbol "rpm" ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1047197551666666666666666666666667 ; + qudt:conversionMultiplierSN 1.047197551666666666666666666666667E-1 ; + qudt:expression "$rev/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:iec61360Code "0112/2///62720#UAB231" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB231"^^xsd:anyURI ; + qudt:symbol "rev/min" ; + qudt:ucumCode "{#}.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M46" ; + rdfs:isDefinedBy ; + rdfs:label "Revolution per Minute"@en . + +unit:REV-PER-MIN-SEC + a qudt:Unit ; + dcterms:description "Revolution per Minute per Second is a unit for Angular Acceleration (sometimes called Change of RPM, crpm)"^^qudt:LatexString ; + qudt:conversionMultiplier 0.10471975516666666666666666666667 ; + qudt:conversionMultiplierSN 1.0471975516666666666666666666667E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REV ; + ] ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:symbol "rev/(min·s)" ; + qudt:ucumCode "{#}.min-1.s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Revolution per Minute per Second"@en . + +unit:REV-PER-SEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Revolution per Second\" is a unit for 'Angular Velocity' expressed as $rev/s$."^^qudt:LatexString ; + qudt:conversionMultiplier 6.28318531 ; + qudt:conversionMultiplierSN 6.28318531E0 ; + qudt:expression "$rev/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REV ; + ] ; + qudt:hasQuantityKind quantitykind:RotationalFrequency ; + qudt:hasQuantityKind quantitykind:RotationalVelocity ; + qudt:symbol "rev/s" ; + qudt:uneceCommonCode "RPS" ; + rdfs:isDefinedBy ; + rdfs:label "Revolution per Second"@en . + +unit:REV-PER-SEC2 + a qudt:Unit ; + dcterms:description "\"Revolution per Square Second\" is a C.G.S System unit for 'Angular Acceleration' expressed as $rev-per-s^2$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 6.28318531 ; + qudt:conversionMultiplierSN 6.28318531E0 ; + qudt:expression "$rev/s2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:REV ; + ] ; + qudt:hasQuantityKind quantitykind:AngularAcceleration ; + qudt:symbol "rev/s²" ; + qudt:ucumCode "{#}.s-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Revolution per Square Second"@en . + +unit:RHE + a qudt:Unit ; + dcterms:description "non SI-conforming unit of fluidity of dynamic viscosity" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M-1H0T1D0 ; + qudt:hasQuantityKind quantitykind:Fluidity ; + qudt:iec61360Code "0112/2///62720#UAB228" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB228"^^xsd:anyURI ; + qudt:symbol "rhe" ; + qudt:uneceCommonCode "P88" ; + rdfs:isDefinedBy ; + rdfs:label "rhe" . + +unit:ROD + a qudt:Unit ; + dcterms:description "A unit of distance equal to 5.5 yards (16 feet 6 inches)."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 5.02921 ; + qudt:conversionMultiplierSN 5.02921E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Rod"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$rd$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAA970" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rod?oldid=492590086"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA970"^^xsd:anyURI ; + qudt:scalingOf unit:M ; + qudt:symbol "rod" ; + qudt:ucumCode "[rd_br]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F49" ; + rdfs:isDefinedBy ; + rdfs:label "Rod"@en . + +unit:RPK + a qudt:Unit ; + dcterms:description "RPK (Reads Per Kilobases) are obtained by dividing read counts by gene lengths (expressed in kilo-nucleotides)."^^rdf:HTML ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:hasQuantityKind quantitykind:GeneFamilyAbundance ; + qudt:informativeReference "https://learn.gencore.bio.nyu.edu/metgenomics/shotgun-metagenomics/functional-analysis/"^^xsd:anyURI ; + qudt:plainTextDescription "RPK (Reads Per Kilobases) are obtained by dividing read counts by gene lengths (expressed in kilo-nucleotides)." ; + qudt:qkdvDenominator qkdv:A0E0L0I0M0H0T0D1 ; + qudt:qkdvNumerator qkdv:A0E0L0I0M0H0T0D1 ; + qudt:symbol "RPK" ; + rdfs:isDefinedBy ; + rdfs:label "Reads per Kilobase"@en ; + skos:altLabel "RPK" . + +unit:RT + qudt:scalingOf unit:M3 . + +unit:R_man + a qudt:Unit ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:REM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ; + qudt:plainTextDescription "The roentgen equivalent man (rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are dose measures used to estimate potential health effects of low levels of ionizing radiation on the human body." ; + qudt:scalingOf unit:SV ; + qudt:symbol "rem" ; + qudt:ucumCode "REM"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "roentgen equivalent man"@en . + +unit:RichterMagnitude + a qudt:Unit ; + dcterms:description "unit Richter magnitude expressing size of an earthquake in accordance to a specific scale" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:EarthquakeMagnitude ; + qudt:iec61360Code "0112/2///62720#UAB596" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB596"^^xsd:anyURI ; + qudt:symbol "mag" ; + rdfs:isDefinedBy ; + rdfs:label "Richter magnitude" . + +unit:S + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Siemens}$ is the SI unit of electric conductance, susceptance, and admittance. +The most important property of a conductor is the amount of current it will carry when a voltage is applied. +Current flow is opposed by resistance in all circuits, and by also by reactance and impedance in alternating current circuits. +Conductance, susceptance, and admittance are the inverses of resistance, reactance, and impedance, respectively. +To measure these properties, the siemens is the reciprocal of the ohm. In other words, the conductance, susceptance, or admittance, in siemens, is simply 1 divided by the resistance, reactance or impedance, respectively, in ohms. +The unit is named for the German electrical engineer Werner von Siemens (1816-1892). +$$\\ \\text{Siemens}\\equiv\\frac{\\text{A}}{\\text{V}}\\equiv\\frac{\\text{amp}}{\\text{volt}}\\equiv\\frac{\\text{F}}{\\text {s}}\\equiv\\frac{\\text{farad}}{\\text{second}}$$ + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:exactMatch unit:MHO ; + qudt:hasDimensionVector qkdv:A0E2L-2I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Admittance ; + qudt:hasQuantityKind quantitykind:Conductance ; + qudt:iec61360Code "0112/2///62720#UAA277" ; + qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA277"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Siemens_(unit)"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:siemens ; + qudt:siUnitsExpression "A/V" ; + qudt:symbol "S" ; + qudt:ucumCode "S"^^qudt:UCUMcs ; + qudt:udunitsCode "S" ; + qudt:uneceCommonCode "SIE" ; + rdfs:isDefinedBy ; + rdfs:label "Siemens"@de ; + rdfs:label "siemens"@cs ; + rdfs:label "siemens"@en ; + rdfs:label "siemens"@es ; + rdfs:label "siemens"@fr ; + rdfs:label "siemens"@hu ; + rdfs:label "siemens"@it ; + rdfs:label "siemens"@la ; + rdfs:label "siemens"@ms ; + rdfs:label "siemens"@pt ; + rdfs:label "siemens"@ro ; + rdfs:label "siemens"@sl ; + rdfs:label "siemens"@tr ; + rdfs:label "simens"@pl ; + rdfs:label "ζίμενς"@el ; + rdfs:label "сименс"@bg ; + rdfs:label "сименс"@ru ; + rdfs:label "סימנס"@he ; + rdfs:label "زیمنس"@fa ; + rdfs:label "سيمنز"@ar ; + rdfs:label "सीमैन्स"@hi ; + rdfs:label "ジーメンス"@ja ; + rdfs:label "西门子"@zh . + +unit:S-M2-PER-MOL + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$s-m2-per-mol$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A-1E2L0I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:S ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MOL ; + ] ; + qudt:hasQuantityKind quantitykind:MolarConductivity ; + qudt:iec61360Code "0112/2///62720#UAA280" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA280"^^xsd:anyURI ; + qudt:symbol "S·m²/mol" ; + qudt:ucumCode "S.m2.mol-1"^^qudt:UCUMcs ; + qudt:ucumCode "S.m2/mol"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D12" ; + rdfs:isDefinedBy ; + rdfs:label "Siemens Square meter per mole"@en-US ; + rdfs:label "Siemens Square metre per mole"@en . + +unit:S-PER-CentiM + a qudt:Unit ; + dcterms:description "SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:S ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:iec61360Code "0112/2///62720#UAA278" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA278"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre" ; + qudt:symbol "S/cm" ; + qudt:ucumCode "S.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "S/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H43" ; + rdfs:isDefinedBy ; + rdfs:label "Siemens per Centimeter"@en-US ; + rdfs:label "Siemens per Centimetre"@en . + +unit:S-PER-M + a qudt:Unit ; + dcterms:description "SI derived unit siemens divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:KiloGM-PER-M2-PA-SEC ; + qudt:expression "$s-per-m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:S ; + ] ; + qudt:hasQuantityKind quantitykind:Conductivity ; + qudt:hasQuantityKind quantitykind:ElectrolyticConductivity ; + qudt:iec61360Code "0112/2///62720#UAA279" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA279"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit siemens divided by the SI base unit metre" ; + qudt:symbol "S/m" ; + qudt:ucumCode "S.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "S/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D10" ; + rdfs:isDefinedBy ; + rdfs:label "Siemens je Meter"@de ; + rdfs:label "Siemens per Meter"@en-US ; + rdfs:label "siemens al metro"@it ; + rdfs:label "siemens bölü metre"@tr ; + rdfs:label "siemens na meter"@sl ; + rdfs:label "siemens par mètre"@fr ; + rdfs:label "siemens pe metru"@ro ; + rdfs:label "siemens per meter"@ms ; + rdfs:label "siemens per metre"@en ; + rdfs:label "siemens por metro"@es ; + rdfs:label "siemens por metro"@pt ; + rdfs:label "siemensů na metr"@cs ; + rdfs:label "simens na metr"@pl ; + rdfs:label "сименс на метр"@ru ; + rdfs:label "زیمنس بر متر"@fa ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "प्रति मीटर सीमैन्स"@hi ; + rdfs:label "ジーメンス毎メートル"@ja ; + rdfs:label "西门子每米"@zh . + +unit:SAMPLE-PER-SEC + a qudt:Unit ; + dcterms:description "The number of discrete samples of some thing per second."^^rdf:HTML ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:PER-SEC ; + qudt:expression "$sample-per-sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SAMPLE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:symbol "sample/s" ; + qudt:ucumCode "s-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Sample per second"@en . + +unit:SCF + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic foot}$ (scf) is a unit representing the amount of gas (such as natural gas) +contained in a volume of one cubic foot at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic foot are 60 degrees Fahrenheit and 14.7 pounds per square inch (psi) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 1.1981 ; + qudt:conversionMultiplierSN 1.1981E0 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_foot"^^xsd:anyURI ; + qudt:symbol "scf" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Foot"@en . + +unit:SCF-PER-HR + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic foot per hour}$ (scfm) is the molar flow rate of a gas (such as natural gas) +contained in a volume of one cubic foot at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic foot per minute are 60 degrees Fahrenheit and 14.7 pounds per +square inch (psi) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.0003328 ; + qudt:conversionMultiplierSN 3.328E-4 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SCF ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ; + qudt:symbol "scf/h" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Foot per Hour"@en . + +unit:SCF-PER-MIN + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic foot per minute}$ (scfm) is the molar flow rate of a gas (such as natural gas) +contained in a volume of one cubic foot at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic foot per minute are 60 degrees Fahrenheit and 14.7 pounds per +square inch (psi) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.0199683 ; + qudt:conversionMultiplierSN 1.99683E-2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SCF ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ; + qudt:symbol "scf/min" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Foot per Minute"@en . + +unit:SCM + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic metre}$ (scm) is a unit representing the amount of gas (such as natural gas) +contained in a volume of one cubic metre at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic metre are 0 degrees Celsius and 101.325 kilopascals (kPa) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 42.3105 ; + qudt:conversionMultiplierSN 4.23105E1 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:AmountOfSubstance ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_foot"^^xsd:anyURI ; + qudt:symbol "scm" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Meter"@en-US ; + rdfs:label "Standard Cubic Metre"@en . + +unit:SCM-PER-HR + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic metre per hour}$ (scmh) is the molar flow rate of a gas (such as natural gas) +contained in a volume of one cubic metre at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic metre per minute are 0 degrees Celsius and 101.325 kilopascals (kPa) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.01175 ; + qudt:conversionMultiplierSN 1.175E-2 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SCM ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ; + qudt:symbol "scm/h" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Meter per Hour"@en-US ; + rdfs:label "Standard Cubic Metre per Hour"@en . + +unit:SCM-PER-MIN + a qudt:Unit ; + dcterms:description """ +The $\\textit{standard cubic metre per minute}$ (scmm) is the molar flow rate of a gas (such as natural gas) +contained in a volume of one cubic metre at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas, +not the volume of the gas. The reference conditions for standard cubic metre per minute are 0 degrees Celsius and 101.325 kilopascals (kPa) of pressure. + """^^qudt:LatexString ; + qudt:conversionMultiplier 0.7051738 ; + qudt:conversionMultiplierSN 7.051738E-1 ; + qudt:hasDimensionVector qkdv:A1E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SCM ; + ] ; + qudt:hasQuantityKind quantitykind:MolarFlowRate ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ; + qudt:symbol "scm/min" ; + rdfs:isDefinedBy ; + rdfs:label "Standard Cubic Meter per Minute"@en-US ; + rdfs:label "Standard Cubic Metre per Minute"@en . + +unit:SEC + a qudt:Unit ; + dcterms:description """The $Second$ (symbol: $s$) is the base unit of time in the International System of Units (SI) and is also a unit of time in other systems of measurement. Between the years1000 (when al-Biruni used seconds) and 1960 the second was defined as $1/86400$ of a mean solar day (that definition still applies in some astronomical and legal contexts). Between 1960 and 1967, it was defined in terms of the period of the Earth's orbit around the Sun in 1900, but it is now defined more precisely in atomic terms. +Under the International System of Units (via the International Committee for Weights and Measures, or CIPM), since 1967 the second has been defined as the duration of ${9192631770}$ periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium 133 atom.In 1997 CIPM added that the periods would be defined for a caesium atom at rest, and approaching the theoretical temperature of absolute zero, and in 1999, it included corrections from ambient radiation."""^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Second"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Period ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAA972" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Second?oldid=495241006"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA972"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:second ; + qudt:symbol "s" ; + qudt:ucumCode "s"^^qudt:UCUMcs ; + qudt:udunitsCode "s" ; + qudt:uneceCommonCode "SEC" ; + rdfs:isDefinedBy ; + rdfs:label "Sekunde"@de ; + rdfs:label "másodperc"@hu ; + rdfs:label "saat"@ms ; + rdfs:label "saniye"@tr ; + rdfs:label "second"@en ; + rdfs:label "seconde"@fr ; + rdfs:label "secondo"@it ; + rdfs:label "secundum"@la ; + rdfs:label "secundă"@ro ; + rdfs:label "segundo"@es ; + rdfs:label "segundo"@pt ; + rdfs:label "sekunda"@cs ; + rdfs:label "sekunda"@pl ; + rdfs:label "sekunda"@sl ; + rdfs:label "δευτερόλεπτο"@el ; + rdfs:label "секунда"@bg ; + rdfs:label "секунда"@ru ; + rdfs:label "שנייה"@he ; + rdfs:label "ثانية"@ar ; + rdfs:label "ثانیه"@fa ; + rdfs:label "सैकण्ड"@hi ; + rdfs:label "秒"@ja ; + rdfs:label "秒"@zh . + +unit:SEC-FT2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Second Square Foot\" is an Imperial unit for 'Area Time' expressed as $s-ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.09290304 ; + qudt:conversionMultiplierSN 9.290304E-2 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$s-ft^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AreaTime ; + qudt:symbol "s·ft²" ; + qudt:ucumCode "s.[ft_i]2"^^qudt:UCUMcs ; + qudt:ucumCode "s.[sft_i]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Second Square Foot"@en . + +unit:SEC-PER-FT2 + a qudt:Unit ; + dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second" ; + qudt:conversionMultiplier 10.7639104167097223083335055559 ; + qudt:conversionMultiplierSN 1.07639104167097223083335055559E1 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD843" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD843"^^xsd:anyURI ; + qudt:symbol "s/ft²" ; + qudt:ucumCode "s.[ft_i]-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "second per square foot" . + +unit:SEC-PER-KiloGM + a qudt:Unit ; + dcterms:description "unit of the Einstein transition probability for spontaneous or inducing emissions and absorption according to ISO 80000-7:2008, expressed as SI base unit second divided by the SI base unit kilogramm" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:EinsteinCoefficients ; + qudt:iec61360Code "0112/2///62720#UAB349" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB349"^^xsd:anyURI ; + qudt:symbol "s/kg" ; + qudt:ucumCode "s.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "s/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q20" ; + rdfs:isDefinedBy ; + rdfs:label "second per kilogram" . + +unit:SEC-PER-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD709" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD709"^^xsd:anyURI ; + qudt:symbol "s/m" ; + qudt:ucumCode "s.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "s/m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Seconds per metre"@en . + +unit:SEC-PER-M3-RAD + a qudt:Unit ; + dcterms:description "unit of the spectral density of the vibration methods as SI base unit second divided by the power of the SI base unit metre with the exponent 3 and the unit radian" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasQuantityKind quantitykind:SpectralDensityOfVibrationalModes ; + qudt:iec61360Code "0112/2///62720#UAB178" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB178"^^xsd:anyURI ; + qudt:symbol "s/(m³·rad)" ; + qudt:ucumCode "s.m-3.rad-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D94" ; + rdfs:isDefinedBy ; + rdfs:label "second per cubic metre radian" . + +unit:SEC-PER-RAD-M3 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$sec/rad-m^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:RAD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:DensityOfStates ; + qudt:iec61360Code "0112/2///62720#UAB352" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB352"^^xsd:anyURI ; + qudt:symbol "s/(rad·m³)" ; + qudt:ucumCode "s.rad-1.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q22" ; + rdfs:isDefinedBy ; + rdfs:label "Second per Radian Cubic Meter"@en-US ; + rdfs:label "Second per Radian Cubic Metre"@en . + +unit:SEC2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Square Second\" is a unit for 'Square Time' expressed as $s^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$s^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Time_Squared ; + qudt:symbol "s²" ; + qudt:ucumCode "s2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Square Second"@en . + +unit:SH + a qudt:Unit ; + dcterms:description "A shake is an informal unit of time equal to 10 nanoseconds. It has applications in nuclear physics, helping to conveniently express the timing of various events in a nuclear explosion. The typical time required for one step in the chain reaction (i.e. the typical time for each neutron to cause a fission event which releases more neutrons) is of order 1 shake, and the chain reaction is typically complete by 50 to 100 shakes."^^rdf:HTML ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Shake"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB226" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Shake?oldid=494796779"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB226"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:symbol "shake" ; + qudt:ucumCode "10.ns"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M56" ; + rdfs:isDefinedBy ; + rdfs:label "Shake"@en . + +unit:SHANNON + a qudt:Unit ; + dcterms:description "The \"Shannon\" is a unit of information."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:expression "$Sh$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB343" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB343"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "Sh" ; + qudt:uneceCommonCode "Q14" ; + rdfs:isDefinedBy ; + rdfs:label "Shannon"@en . + +unit:SHANNON-PER-SEC + a qudt:Unit ; + dcterms:description "The \"Shannon per Second\" is a unit of information rate."^^rdf:HTML ; + qudt:conversionMultiplier 0.69314718055994530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E-1 ; + qudt:expression "$Sh/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SHANNON ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:InformationFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB346" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB346"^^xsd:anyURI ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ; + qudt:symbol "Sh/s" ; + qudt:uneceCommonCode "Q17" ; + rdfs:isDefinedBy ; + rdfs:label "Shannon per Second"@en . + +unit:SLUG + a qudt:Unit ; + dcterms:description "The slug is a unit of mass associated with Imperial units. It is a mass that accelerates by $1 ft/s$ when a force of one pound-force ($lbF$) is exerted on it. With standard gravity $gc = 9.80665 m/s$, the international foot of $0.3048 m$ and the avoirdupois pound of $0.45359237 kg$, one slug therefore has a mass of approximately $32.17405 lbm$ or $14.593903 kg$. At the surface of the Earth, an object with a mass of 1 slug exerts a force of about $32.17 lbF$ or $143 N$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 14.593903 ; + qudt:conversionMultiplierSN 1.4593903E1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Slug"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:factorUnitScalar 32.17405 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:LB ; + ] ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA978" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Slug?oldid=495010998"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA978"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "slug" ; + qudt:uneceCommonCode "F13" ; + rdfs:isDefinedBy ; + rdfs:label "Slug"@en . + +unit:SLUG-PER-DAY + a qudt:Unit ; + dcterms:description "unit slug for mass according to an English engineering system divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.00016891087963 ; + qudt:conversionMultiplierSN 1.6891087963E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA979" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA979"^^xsd:anyURI ; + qudt:plainTextDescription "unit slug for mass according to an English engineering system divided by the unit day" ; + qudt:symbol "slug/d" ; + qudt:uneceCommonCode "L63" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Day"@en . + +unit:SLUG-PER-FT + a qudt:Unit ; + dcterms:description "\"Slug per Foot\" is an Imperial unit for 'Mass Per Length' expressed as $slug/ft$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 47.8802591863517 ; + qudt:conversionMultiplierSN 4.78802591863517E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$slug/ft$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:symbol "slug/ft" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Foot"@en . + +unit:SLUG-PER-FT-SEC + a qudt:Unit ; + dcterms:description "$\\textit{Slug per Foot Second}$ is a unit for 'Dynamic Viscosity' expressed as $slug/(ft-s)$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 47.8802591863517 ; + qudt:conversionMultiplierSN 4.78802591863517E1 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$slug/(ft-s)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:DynamicViscosity ; + qudt:hasQuantityKind quantitykind:Viscosity ; + qudt:iec61360Code "0112/2///62720#UAA980" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA980"^^xsd:anyURI ; + qudt:symbol "slug/(ft·s)" ; + qudt:uneceCommonCode "L64" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Foot Second"@en . + +unit:SLUG-PER-FT2 + a qudt:Unit ; + dcterms:description "\"Slug per Square Foot\" is an Imperial unit for 'Mass Per Area' expressed as $slug/ft^{2}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 157.08746452215124 ; + qudt:conversionMultiplierSN 1.5708746452215124E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$slug/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:symbol "slug/ft²" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Square Foot"@en . + +unit:SLUG-PER-FT3 + a qudt:Unit ; + dcterms:description "\"Slug per Cubic Foot\" is an Imperial unit for 'Density' expressed as $slug/ft^{3}$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 515.3788206107324 ; + qudt:conversionMultiplierSN 5.153788206107324E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$slug/ft^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA981" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA981"^^xsd:anyURI ; + qudt:symbol "slug/ft³" ; + qudt:uneceCommonCode "L65" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Cubic Foot"@en . + +unit:SLUG-PER-HR + a qudt:Unit ; + dcterms:description "unit slug for mass slug according to the English engineering system divided by the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.004053861111111 ; + qudt:conversionMultiplierSN 4.053861111111E-3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA982" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA982"^^xsd:anyURI ; + qudt:plainTextDescription "unit slug for mass slug according to the English engineering system divided by the unit hour" ; + qudt:symbol "slug/h" ; + qudt:uneceCommonCode "L66" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Hour"@en . + +unit:SLUG-PER-MIN + a qudt:Unit ; + dcterms:description "unit slug for the mass according to the English engineering system divided by the unit minute"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.243231666666667 ; + qudt:conversionMultiplierSN 2.43231666666667E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA983" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA983"^^xsd:anyURI ; + qudt:plainTextDescription "unit slug for the mass according to the English engineering system divided by the unit minute" ; + qudt:symbol "slug/min" ; + qudt:uneceCommonCode "L67" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Minute"@en . + +unit:SLUG-PER-SEC + a qudt:Unit ; + dcterms:description "\"Slug per Second\" is an Imperial unit for 'Mass Per Time' expressed as $slug/s$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 14.593903 ; + qudt:conversionMultiplierSN 1.4593903E1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:expression "$slug/s$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SLUG ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAA984" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA984"^^xsd:anyURI ; + qudt:symbol "slug/s" ; + qudt:uneceCommonCode "L68" ; + rdfs:isDefinedBy ; + rdfs:label "Slug per Second"@en . + +unit:SON + a qudt:Unit ; + dcterms:description "psycho-acoustical unit for the subjective loudness of a tone, whereby the loudness 1 sone is allocated to the loudness level 40 phon" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA985" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA985"^^xsd:anyURI ; + qudt:symbol "sone" ; + qudt:uneceCommonCode "D15" ; + rdfs:isDefinedBy ; + rdfs:label "sone" . + +unit:SPF + a qudt:Unit ; + dcterms:description "the sunprotection factor is a dimensionless value expressing the required amount of protection against solar radiation" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:SunProtectionFactorOfAProduct ; + qudt:iec61360Code "0112/2///62720#UAB597" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB597"^^xsd:anyURI ; + qudt:symbol "SPF" ; + rdfs:isDefinedBy ; + rdfs:label "sun protection factor" . + +unit:SPIN_QUANTUM_NUMBER + a qudt:Unit ; + dcterms:description "dimensionless atomic value expressing a system’s spin" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB604" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB604"^^xsd:anyURI ; + qudt:symbol "Q" ; + rdfs:isDefinedBy ; + rdfs:label "spin quantum number" . + +unit:SR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The steradian (symbol: sr) is the SI unit of solid angle. It is used to describe two-dimensional angular spans in three-dimensional space, analogous to the way in which the radian describes angles in a plane. The radian and steradian are special names for the number one that may be used to convey information about the quantity concerned. In practice the symbols rad and sr are used where appropriate, but the symbol for the derived unit one is generally omitted in specifying the values of dimensionless quantities."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:SolidAngle ; + qudt:iec61360Code "0112/2///62720#UAA986" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Steradian?oldid=494317847"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA986"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:steradian ; + qudt:symbol "sr" ; + qudt:ucumCode "sr"^^qudt:UCUMcs ; + qudt:udunitsCode "sr" ; + qudt:uneceCommonCode "D27" ; + rdfs:isDefinedBy ; + rdfs:label "Steradiant"@de ; + rdfs:label "estereorradián"@es ; + rdfs:label "esterradiano"@pt ; + rdfs:label "steradian"@en ; + rdfs:label "steradian"@la ; + rdfs:label "steradian"@ms ; + rdfs:label "steradian"@pl ; + rdfs:label "steradian"@ro ; + rdfs:label "steradian"@sl ; + rdfs:label "steradiante"@it ; + rdfs:label "steradián"@cs ; + rdfs:label "steradyan"@tr ; + rdfs:label "stéradian"@fr ; + rdfs:label "szteradián"@hu ; + rdfs:label "στερακτίνιο"@el ; + rdfs:label "стерадиан"@bg ; + rdfs:label "стерадиан"@ru ; + rdfs:label "סטרדיאן"@he ; + rdfs:label "استرادیان"@fa ; + rdfs:label "ستراديان"@ar ; + rdfs:label "घन मीटर"@hi ; + rdfs:label "ステラジアン"@ja ; + rdfs:label "球面度"@zh . + +unit:ST + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Stokes (St)}$ is a unit in the category of Kinematic viscosity. This unit is commonly used in the cgs unit system. Stokes (St) has a dimension of $L^2T^{-1}$ where $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit $m^2/s$ by multiplying its value by a factor of 0.0001."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Stokes"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS ; + qudt:factorUnitScalar 0.0001 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:KinematicViscosity ; + qudt:iec61360Code "0112/2///62720#UAA281" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stokes?oldid=426159512"^^xsd:anyURI ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--kinematic_viscosity--stokes.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA281"^^xsd:anyURI ; + qudt:latexDefinition "$(cm^2/s$)"^^qudt:LatexString ; + qudt:omUnit ; + qudt:symbol "St" ; + qudt:ucumCode "St"^^qudt:UCUMcs ; + qudt:udunitsCode "St" ; + qudt:uneceCommonCode "91" ; + rdfs:isDefinedBy ; + rdfs:label "Stokes"@en . + +unit:ST-PER-BAR + a qudt:Unit ; + dcterms:description "[CGS] unit stokes divided by the unit bar" ; + qudt:conversionMultiplier 0.000000001 ; + qudt:conversionMultiplierSN 1.0E-9 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ST ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA283" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA283"^^xsd:anyURI ; + qudt:symbol "St/bar" ; + qudt:ucumCode "St.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "St/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G46" ; + rdfs:isDefinedBy ; + rdfs:label "stokes per bar" . + +unit:ST-PER-K + a qudt:Unit ; + dcterms:description "[CGS] unit stokes divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ST ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA282" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA282"^^xsd:anyURI ; + qudt:symbol "St/K" ; + qudt:ucumCode "St.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "St/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G10" ; + rdfs:isDefinedBy ; + rdfs:label "stokes per kelvin" . + +unit:ST-PER-PA + a qudt:Unit ; + dcterms:description "[CGS] unit stokes divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M-1H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:ST ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB314" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB314"^^xsd:anyURI ; + qudt:symbol "St/Pa" ; + qudt:ucumCode "St.Pa-1"^^qudt:UCUMcs ; + qudt:ucumCode "St/Pa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M80" ; + rdfs:isDefinedBy ; + rdfs:label "stokes per pascal" . + +unit:STANDARD + a qudt:Unit ; + dcterms:description "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre"^^rdf:HTML ; + qudt:conversionMultiplier 4.672 ; + qudt:conversionMultiplierSN 4.672E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB116" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB116"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre" ; + qudt:symbol "standard" ; + qudt:ucumCode "1980.[bf_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "WSD" ; + rdfs:isDefinedBy ; + rdfs:label "Standard"@en . + +unit:STILB + a qudt:Unit ; + dcterms:description """ + The $\\textit{stilb (sb)}$ is the CGS unit of luminance for objects that are not self-luminous. + It is equal to one candela per square centimeter or 10 nits (candelas per square meter). + The name was coined by the French physicist A. Blondel around 1920. + It comes from the Greek word stilbein meaning 'to glitter'. + It was in common use in Europe up to World War I. + In North America self-explanatory terms such as candle per square inch and candle per square meter were more common. + The unit has since largely been replaced by the SI unit: $\\textit{candela per square meter}$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Stilb"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-2I1M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Luminance ; + qudt:iec61360Code "0112/2///62720#UAB260" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stilb?oldid=375748497"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB260"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:CD-PER-M2 ; + qudt:symbol "sb" ; + qudt:ucumCode "sb"^^qudt:UCUMcs ; + qudt:udunitsCode "sb" ; + qudt:uneceCommonCode "P31" ; + rdfs:isDefinedBy ; + rdfs:label "Stilb"@en . + +unit:STR + a qudt:Unit ; + dcterms:description "The stere is a unit of volume in the original metric system equal to one cubic metre. The stere is typically used for measuring large quantities of firewood or other cut wood, while the cubic meter is used for uncut wood. It is not part of the modern metric system (SI). In Dutch there's also a kuub, short for kubieke meter which is similar but different."^^rdf:HTML ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/St%C3%A8re"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAA987" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Stère?oldid=393570287"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA987"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:M3 ; + qudt:symbol "st" ; + qudt:ucumCode "st"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G26" ; + rdfs:isDefinedBy ; + rdfs:label "Stere"@en . + +unit:SUSCEPTIBILITY_ELEC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Electric susceptibility is a dimensionless proportionality constant that indicates the degree of polarization of a dielectric material in response to an applied electric field. Here P = epsilon_0 * chi_e * E. Where epsilon_0 is the electric permittivity of free space (electric constant), P is the polarization density of the material chi_e is the electric susceptibility and E is the electric field."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:latexDefinition "\\chi_{\\text{e}} = \\frac{{\\mathbf P}}{\\varepsilon_0{\\mathbf E}}"^^qudt:LatexString ; + qudt:plainTextDescription "Electric susceptibility is a dimensionless proportionality constant that indicates the degree of polarization of a dielectric material in response to an applied electric field. Here P = epsilon_0 * chi_e * E. Where epsilon_0 is the electric permittivity of free space (electric constant), P is the polarization density of the material chi_e is the electric susceptibility and E is the electric field." ; + qudt:symbol "χ" ; + rdfs:isDefinedBy ; + rdfs:label "Electric Susceptibility Unit"@en . + +unit:SUSCEPTIBILITY_MAG + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Magnetic susceptibility is a dimensionless proportionality constant that indicates the degree of magnetization of a material in response to an applied magnetic field. Here M = chi * H. Where M is the magnetization of the material (the magnetic dipole moment per unit volume), measured in amperes per meter, and H is the magnetic field strength, also measured in amperes per meter. Chi is therefore a dimensionless quantity."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:latexDefinition "\\chi_\\text{v} = \\frac{\\mathbf{M}}{\\mathbf{H}}"^^qudt:LatexString ; + qudt:plainTextDescription "Magnetic susceptibility is a dimensionless proportionality constant that indicates the degree of magnetization of a material in response to an applied magnetic field. Here M = chi * H. Where M is the magnetization of the material (the magnetic dipole moment per unit volume), measured in amperes per meter, and H is the magnetic field strength, also measured in amperes per meter. Chi is therefore a dimensionless quantity." ; + qudt:symbol "χ" ; + rdfs:isDefinedBy ; + rdfs:label "Magnetic Susceptibility Unit"@en . + +unit:SV + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Although the sievert has the same dimensions as the gray (i.e. joules per kilogram), it measures a different quantity. To avoid any risk of confusion between the absorbed dose and the equivalent dose, the corresponding special units, namely the gray instead of the joule per kilogram for absorbed dose and the sievert instead of the joule per kilogram for the dose equivalent, should be used."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:DoseEquivalent ; + qudt:iec61360Code "0112/2///62720#UAA284" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA284"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:sievert ; + qudt:siUnitsExpression "J/kg" ; + qudt:symbol "Sv" ; + qudt:ucumCode "Sv"^^qudt:UCUMcs ; + qudt:udunitsCode "Sv" ; + qudt:uneceCommonCode "D13" ; + rdfs:isDefinedBy ; + rdfs:label "Sievert"@de ; + rdfs:label "sievert"@cs ; + rdfs:label "sievert"@en ; + rdfs:label "sievert"@es ; + rdfs:label "sievert"@fr ; + rdfs:label "sievert"@hu ; + rdfs:label "sievert"@it ; + rdfs:label "sievert"@ms ; + rdfs:label "sievert"@pt ; + rdfs:label "sievert"@ro ; + rdfs:label "sievert"@sl ; + rdfs:label "sievert"@tr ; + rdfs:label "sievertum"@la ; + rdfs:label "siwert"@pl ; + rdfs:label "σίβερτ"@el ; + rdfs:label "зиверт"@ru ; + rdfs:label "сиверт"@bg ; + rdfs:label "זיוורט"@he ; + rdfs:label "زيفرت"@ar ; + rdfs:label "سیورت"@fa ; + rdfs:label "सैवर्ट"@hi ; + rdfs:label "シーベルト"@ja ; + rdfs:label "西弗"@zh . + +unit:SV-PER-HR + a qudt:Unit ; + dcterms:description "SI derived unit sievert divided by the unit hour" ; + qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SV ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB464" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB464"^^xsd:anyURI ; + qudt:symbol "Sv/h" ; + qudt:ucumCode "Sv.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "Sv/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P70" ; + rdfs:isDefinedBy ; + rdfs:label "sievert per hour" . + +unit:SV-PER-MIN + a qudt:Unit ; + dcterms:description "SI derived unit sievert divided by the unit minute" ; + qudt:conversionMultiplier 0.01666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB468" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB468"^^xsd:anyURI ; + qudt:symbol "Sv/min" ; + qudt:ucumCode "Sv.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "Sv/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P74" ; + rdfs:isDefinedBy ; + rdfs:label "sievert per minute" . + +unit:SV-PER-SEC + a qudt:Unit ; + dcterms:description "SI derived unit sievert devided by the SI base unit second" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:KermaRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAB301" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB301"^^xsd:anyURI ; + qudt:symbol "Sv/s" ; + qudt:ucumCode "Sv.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Sv/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P65" ; + rdfs:isDefinedBy ; + rdfs:label "sievert per second" . + +unit:S_Ab + a qudt:Unit ; + dcterms:description "The CGS electromagnetic unit of conductance; one absiemen is the conductance at which a potential of one abvolt forces a current of one abampere; equal to $10^{9}$ siemens. One siemen is the conductance at which a potential of one volt forces a current of one ampere and named for Karl Wilhem Siemens."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:ElectricConductivity ; + qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ; + qudt:scalingOf unit:S-PER-M ; + qudt:symbol "aS" ; + qudt:ucumCode "GS"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Absiemen"@en . + +unit:S_Stat + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The unit of conductance, admittance, and susceptance in the centimeter-gram-second electrostatic system of units."^^rdf:HTML ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 0.0000000000011126500561 ; + qudt:conversionMultiplierSN 1.1126500561E-12 ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:exactMatch unit:MHO_Stat ; + qudt:hasDimensionVector qkdv:A0E2L-3I0M-1H0T3D0 ; + qudt:hasQuantityKind quantitykind:ElectricConductivity ; + qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/statsiemens.html"^^xsd:anyURI ; + qudt:informativeReference "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI ; + qudt:informativeReference "http://www3.wolframalpha.com/input/?i=statsiemens"^^xsd:anyURI ; + qudt:scalingOf unit:S-PER-M ; + qudt:symbol "statS" ; + rdfs:isDefinedBy ; + rdfs:label "Statsiemens"@en ; + skos:altLabel "statmho" . + +unit:SolarMass + a qudt:Unit ; + dcterms:description "The astronomical unit of mass is the solar mass.The symbol $S$ is often used in astronomy to refer to this unit, although $M_{\\odot}$ is also common. The solar mass, $1.98844 \\times 10^{30} kg$, is a standard way to express mass in astronomy, used to describe the masses of other stars and galaxies. It is equal to the mass of the Sun, about 333,000 times the mass of the Earth or 1,048 times the mass of Jupiter. In practice, the masses of celestial bodies appear in the dynamics of the solar system only through the products GM, where G is the constant of gravitation."^^qudt:LatexString ; + qudt:conversionMultiplier 1988435000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.988435E30 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Solar_mass"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Solar_mass?oldid=494074016"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "S" ; + rdfs:isDefinedBy ; + rdfs:label "Solar mass"@en . + +unit:Standard + a qudt:Unit ; + dcterms:description "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre"^^rdf:HTML ; + dcterms:isReplacedBy unit:STANDARD ; + qudt:conversionMultiplier 4.672 ; + qudt:conversionMultiplierSN 4.672E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB116" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB116"^^xsd:anyURI ; + qudt:plainTextDescription "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "standard" ; + qudt:ucumCode "1980.[bf_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "WSD" ; + rdfs:isDefinedBy ; + rdfs:label "Standard"@en . + +unit:Stone_UK + a qudt:Unit ; + dcterms:description "unit of the mass which is commonly used for the determination of the weight of living beings regarding to the conversion to the avoirdupois system of units: 1 st = 14 lb (av)"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 6.35029318 ; + qudt:conversionMultiplierSN 6.35029318E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB081" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB081"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass which is commonly used for the determination of the weight of living beings regarding to the conversion to the avoirdupois system of units: 1 st = 14 lb (av)" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "st{UK}" ; + qudt:ucumCode "[stone_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "STI" ; + rdfs:isDefinedBy ; + rdfs:label "Stone (UK)"@en . + +unit:T + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of flux density (or field intensity) for magnetic fields (also called the magnetic induction). The intensity of a magnetic field can be measured by placing a current-carrying conductor in the field. The magnetic field exerts a force on the conductor, a force which depends on the amount of the current and on the length of the conductor. One tesla is defined as the field intensity generating one newton of force per ampere of current per meter of conductor. Equivalently, one tesla represents a magnetic flux density of one weber per square meter of area. A field of one tesla is quite strong: the strongest fields available in laboratories are about 20 teslas, and the Earth's magnetic flux density, at its surface, is about 50 microteslas. The tesla, defined in 1958, honors the Serbian-American electrical engineer Nikola Tesla (1856-1943), whose work in electromagnetic induction led to the first practical generators and motors using alternating current. $T = V\\cdot s \\cdot m^{-2} = N\\cdot A^{-1}\\cdot m^{-1} = Wb\\cdot m^{-2} = kg \\cdot C^{-1}\\cdot s^{-1}\\cdot A^{-1} = kg \\cdot s^{-2}\\cdot A^{-1} = N \\cdot s \\cdot C^{-1}\\cdot m^{-1}$ where, $\\\\$ $A$ = ampere, $C$=coulomb, $m$ = meter, $N$ = newton, $s$ = second, $T$ = tesla, $Wb$ = weber"^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tesla"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticField ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:iec61360Code "0112/2///62720#UAA285" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tesla?oldid=481198244"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tesla_(unit)"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1406?rskey=AzXBLd"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA285"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:tesla ; + qudt:siUnitsExpression "Wb/m^2" ; + qudt:symbol "T" ; + qudt:ucumCode "T"^^qudt:UCUMcs ; + qudt:udunitsCode "T" ; + qudt:uneceCommonCode "D33" ; + rdfs:isDefinedBy ; + rdfs:label "Tesla"@de ; + rdfs:label "tesla"@cs ; + rdfs:label "tesla"@en ; + rdfs:label "tesla"@es ; + rdfs:label "tesla"@fr ; + rdfs:label "tesla"@hu ; + rdfs:label "tesla"@it ; + rdfs:label "tesla"@la ; + rdfs:label "tesla"@ms ; + rdfs:label "tesla"@pl ; + rdfs:label "tesla"@pt ; + rdfs:label "tesla"@ro ; + rdfs:label "tesla"@sl ; + rdfs:label "tesla"@tr ; + rdfs:label "τέσλα"@el ; + rdfs:label "тесла"@bg ; + rdfs:label "тесла"@ru ; + rdfs:label "טסלה"@he ; + rdfs:label "تسلا"@ar ; + rdfs:label "تسلا"@fa ; + rdfs:label "टैस्ला"@hi ; + rdfs:label "テスラ"@ja ; + rdfs:label "特斯拉"@zh . + +unit:T-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:symbol "T·m" ; + qudt:ucumCode "T.m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "T-M"@en . + +unit:T-SEC + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:T ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerElectricCharge ; + qudt:symbol "T·s" ; + qudt:ucumCode "T.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "T-SEC"@en . + +unit:TBSP + a qudt:Unit ; + dcterms:description "In the US and parts of Canada, a tablespoon is the largest type of spoon used for eating from a bowl. In the UK and most Commonwealth countries, a tablespoon is a type of large spoon usually used for serving. In countries where a tablespoon is a serving spoon, the nearest equivalent to the US tablespoon is either the dessert spoon or the soup spoon. A tablespoonful, nominally the capacity of one tablespoon, is commonly used as a measure of volume in cooking. It is abbreviated as T, tb, tbs, tbsp, tblsp, or tblspn. The capacity of ordinary tablespoons is not regulated by law and is subject to considerable variation. In most countries one level tablespoon is approximately 15 mL; in Australia it is 20 mL."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0000147867656 ; + qudt:conversionMultiplierSN 1.47867656E-5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tablespoon"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB006" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tablespoon?oldid=494615208"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB006"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "tbsp" ; + qudt:ucumCode "[tbs_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "Tbl" ; + qudt:udunitsCode "Tblsp" ; + qudt:udunitsCode "Tbsp" ; + qudt:udunitsCode "tblsp" ; + qudt:udunitsCode "tbsp" ; + qudt:uneceCommonCode "G24" ; + rdfs:isDefinedBy ; + rdfs:label "Tablespoon"@en . + +unit:TEX + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Tex is a unit of measure for the linear mass density of fibers and is defined as the mass in grams per 1000 meters. Tex is more likely to be used in Canada and Continental Europe, while denier remains more common in the United States and United Kingdom. The unit code is 'tex'. The most commonly used unit is actually the decitex, abbreviated dtex, which is the mass in grams per 10,000 meters. When measuring objects that consist of multiple fibers the term 'filament tex' is sometimes used, referring to the mass in grams per 1000 meters of a single filament. Tex is used for measuring fiber size in many products, including cigarette filters, optical cable, yarn, and fabric."^^rdf:HTML ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tex"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:MassPerLength ; + qudt:iec61360Code "0112/2///62720#UAB246" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tex?oldid=457265525"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Units_of_textile_measurement"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB246"^^xsd:anyURI ; + qudt:scalingOf unit:GM-PER-MilliM ; + qudt:symbol "tex" ; + qudt:ucumCode "tex"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D34" ; + rdfs:isDefinedBy ; + rdfs:label "Tex"@en . + +unit:THERM_EC + a qudt:Unit ; + dcterms:description "unit of heat energy in commercial use, within the EU defined: 1 thm (EC) = 100 000 BtuIT" ; + qudt:exactMatch unit:THM_EEC ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB222" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB222"^^xsd:anyURI ; + qudt:symbol "thm{EC}" ; + qudt:uneceCommonCode "N71" ; + rdfs:isDefinedBy ; + rdfs:label "therm (EC)" . + +unit:THERM_US + a qudt:Unit ; + dcterms:description "unit of heat energy in commercial use" ; + qudt:exactMatch unit:THM_US ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:iec61360Code "0112/2///62720#UAB223" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB223"^^xsd:anyURI ; + qudt:symbol "thm{US}" ; + qudt:uneceCommonCode "N72" ; + rdfs:isDefinedBy ; + rdfs:label "therm (U.S.)" . + +unit:THM_EEC + a qudt:Unit ; + qudt:exactMatch unit:THERM_EC ; + qudt:expression "$therm-eec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:symbol "thm{EEC}" ; + qudt:ucumCode "100000.[Btu_IT]"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "THM_EEC"@en . + +unit:THM_US + a qudt:Unit ; + dcterms:description """ + $\\textit{Therm}$ (symbol $thm$) is a non-SI unit of heat energy. + It was defined in the United States in 1968 as the energy equivalent of burning 100 cubic feet of + natural gas at standard temperature and pressure. + In the US gas industry its SI equivalent is defined as exactly $100,000 BTU59^{\\circ}{F}$ or $105.4804 megajoules$. + Public utilities in the U.S. use the therm unit for measuring customer usage of gas and calculating the monthly bills. + """^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 105480400.0 ; + qudt:conversionMultiplierSN 1.054804E8 ; + qudt:exactMatch unit:THERM_US ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:informativeReference "http://www.convertunits.com/info/therm%2B%5BU.S.%5D"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "thm{US}" ; + qudt:ucumCode "100000.[Btu_59]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N72" ; + rdfs:isDefinedBy ; + rdfs:label "Therm US"@en . + +unit:THM_US-PER-HR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Therm}$ (symbol $thm$) is a non-SI unit of heat energy. It was defined in the United States in 1968 as the energy equivalent of burning 100 cubic feet of natural gas at standard temperature and pressure. Industrial processes in the U.S. use therm/h unit most often in the power, steam generation, heating, and air conditioning industries."^^qudt:LatexString ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 29300.1111 ; + qudt:conversionMultiplierSN 2.93001111E4 ; + qudt:expression "$thm/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:THM_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:informativeReference "http://www.convertunits.com/info/therm%2B%5BU.S.%5D"^^xsd:anyURI ; + qudt:symbol "thm{US}/h" ; + qudt:ucumCode "[thm{US}].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[thm{US}]/h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Therm US per Hour"@en . + +unit:TOE + a qudt:Unit ; + dcterms:description "

The tonne of oil equivalent (toe) is a unit of energy: the amount of energy released by burning one tonne of crude oil, approximately 42 GJ (as different crude oils have different calorific values, the exact value of the toe is defined by convention; unfortunately there are several slightly different definitions as discussed below). The toe is sometimes used for large amounts of energy, as it can be more intuitive to visualise, say, the energy released by burning 1000 tonnes of oil than 42,000 billion joules (the SI unit of energy). Multiples of the toe are used, in particular the megatoe (Mtoe, one million toe) and the gigatoe (Gtoe, one billion toe).

"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 41868000000.0 ; + qudt:conversionMultiplierSN 4.1868E10 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne_of_oil_equivalent"^^xsd:anyURI ; + qudt:scalingOf unit:J ; + qudt:symbol "toe" ; + rdfs:isDefinedBy ; + rdfs:label "Ton of Oil Equivalent"@en . + +unit:TON + a qudt:Unit ; + dcterms:description "2,000-fold of the Imperial base unit pouund"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 907.18474 ; + qudt:conversionMultiplierSN 9.0718474E2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:exactMatch unit:TON_SHORT ; + qudt:exactMatch unit:TON_US ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:plainTextDescription "2,000-fold of the Imperial base unit pound" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "tn" ; + qudt:ucumCode "ston_av"^^qudt:UCUMcs ; + qudt:udunitsCode "t" ; + qudt:uneceCommonCode "TNE" ; + rdfs:isDefinedBy ; + rdfs:label "Ton"@en . + +unit:TONNE + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:CO2Equivalent ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:plainTextDescription "1,000-fold of the SI base unit kilogram" ; + qudt:scalingOf unit:KiloGM ; + qudt:siExactMatch si-unit:tonne ; + qudt:symbol "t" ; + qudt:ucumCode "t"^^qudt:UCUMcs ; + qudt:udunitsCode "t" ; + qudt:uneceCommonCode "TNE" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne"@en . + +unit:TONNE-PER-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:TON_Metric-PER-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA990" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA990"^^xsd:anyURI ; + qudt:symbol "t/bar" ; + qudt:ucumCode "t.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L70" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per bar" . + +unit:TONNE-PER-DAY + a qudt:Unit ; + dcterms:description "metric unit tonne divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.011574074074074 ; + qudt:conversionMultiplierSN 1.1574074074074E-2 ; + qudt:exactMatch unit:TON_Metric-PER-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA991" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA991"^^xsd:anyURI ; + qudt:plainTextDescription "metric unit tonne divided by the unit for time day" ; + qudt:symbol "t/d" ; + qudt:ucumCode "t.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L71" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Day"@en . + +unit:TONNE-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-7 ; + qudt:exactMatch unit:TON_Metric-PER-DAY-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA993" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA993"^^xsd:anyURI ; + qudt:symbol "t/(d·bar)" ; + qudt:ucumCode "t.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L73" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per day bar" . + +unit:TONNE-PER-DAY-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit day and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.01157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-2 ; + qudt:exactMatch unit:TON_Metric-PER-DAY-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA992" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA992"^^xsd:anyURI ; + qudt:symbol "t/(d·K)" ; + qudt:ucumCode "t.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L72" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per day kelvin" . + +unit:TONNE-PER-HA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:exactMatch unit:MegaGM-PER-HA ; + qudt:exactMatch unit:TON_Metric-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield." ; + qudt:symbol "t/ha" ; + qudt:ucumCode "t.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hectare"@en . + +unit:TONNE-PER-HA-YR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of density equivalent to 1000kg per hectare per year or one Megagram per hectare per year, typically used to express a volume of biomass or crop yield."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00000000317 ; + qudt:conversionMultiplierSN 3.17E-9 ; + qudt:exactMatch unit:MegaGM-PER-HA-YR ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerAreaTime ; + qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare per year or one Megagram per hectare per year, typically used to express a volume of biomass or crop yield." ; + qudt:symbol "t/(ha·a)" ; + qudt:ucumCode "t.har-1.year-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hectare year"@en . + +unit:TONNE-PER-HR + a qudt:Unit ; + dcterms:description "unit tonne divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-1 ; + qudt:exactMatch unit:TON_Metric-PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB994" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB994"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the unit for time hour" ; + qudt:symbol "t/h" ; + qudt:ucumCode "t.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E18" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Hour"@en . + +unit:TONNE-PER-HR-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-6 ; + qudt:exactMatch unit:TON_Metric-PER-HR-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA996" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA996"^^xsd:anyURI ; + qudt:symbol "t/(h·bar)" ; + qudt:ucumCode "t.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L75" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hour bar" . + +unit:TONNE-PER-HR-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit hour and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.2777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-1 ; + qudt:exactMatch unit:TON_Metric-PER-HR-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA995" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA995"^^xsd:anyURI ; + qudt:symbol "t/(h·K)" ; + qudt:ucumCode "t.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L74" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hour kelvin" . + +unit:TONNE-PER-K + a qudt:Unit ; + dcterms:description "unit ton divided by the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA989" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA989"^^xsd:anyURI ; + qudt:symbol "t/K" ; + qudt:ucumCode "t.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L69" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per kelvin" . + +unit:TONNE-PER-M3 + a qudt:Unit ; + dcterms:description "unit tonne divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA997" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA997"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "t/m³" ; + qudt:ucumCode "t.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D41" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Cubic Meter"@en-US ; + rdfs:label "Tonne per Cubic Metre"@en . + +unit:TONNE-PER-M3-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerEnergy ; + qudt:iec61360Code "0112/2///62720#UAA999" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA999"^^xsd:anyURI ; + qudt:symbol "t/(m³·bar)" ; + qudt:ucumCode "t.m-3.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L77" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per cubic metre bar" . + +unit:TONNE-PER-M3-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric-PER-M3-K ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA998" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA998"^^xsd:anyURI ; + qudt:symbol "t/(m³·K)" ; + qudt:ucumCode "t.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L76" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per cubic metre kelvin" . + +unit:TONNE-PER-MIN + a qudt:Unit ; + dcterms:description "unit tonne divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 16.666666666666668 ; + qudt:conversionMultiplierSN 1.6666666666666668E1 ; + qudt:exactMatch unit:TON_Metric-PER-MIN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB000" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB000"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the unit for time minute" ; + qudt:symbol "t/min" ; + qudt:ucumCode "t.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L78" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Minute"@en . + +unit:TONNE-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-4 ; + qudt:exactMatch unit:TON_Metric-PER-MIN-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB002" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB002"^^xsd:anyURI ; + qudt:symbol "t/(min·bar)" ; + qudt:ucumCode "t.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L80" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per minute bar" . + +unit:TONNE-PER-MIN-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit minute and the SI base unit Kelvin" ; + qudt:conversionMultiplier 16.66666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E1 ; + qudt:exactMatch unit:TON_Metric-PER-MIN-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB001" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB001"^^xsd:anyURI ; + qudt:symbol "t/(min·K)" ; + qudt:ucumCode "t.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L79" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per minute kelvin" . + +unit:TONNE-PER-MO + a qudt:Unit ; + dcterms:description "unit tonne divided by the unit month" ; + qudt:conversionMultiplier 0.0003919350772901616281311709002114104 ; + qudt:conversionMultiplierSN 3.919350772901616281311709002114104E-4 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MO ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAB366" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB366"^^xsd:anyURI ; + qudt:symbol "t/mo" ; + qudt:ucumCode "t.mo-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/mo"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M88" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per month" . + +unit:TONNE-PER-SEC + a qudt:Unit ; + dcterms:description "unit tonne divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB003" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB003"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the SI base unit second" ; + qudt:symbol "t/s" ; + qudt:ucumCode "t.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L81" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Second"@en . + +unit:TONNE-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:TON_Metric-PER-SEC-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB005" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB005"^^xsd:anyURI ; + qudt:symbol "t/(s·bar)" ; + qudt:ucumCode "t.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L83" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per second bar" . + +unit:TONNE-PER-SEC-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the SI base unit second and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TON_Metric-PER-SEC-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB004" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB004"^^xsd:anyURI ; + qudt:symbol "t/(s·K)" ; + qudt:ucumCode "t.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L82" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per second kelvin" . + +unit:TONNE-PER-YR + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit kilogram divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.00003168808781 ; + qudt:conversionMultiplierSN 3.168808781E-5 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TONNE ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:iec61360Code "0112/2///62720#UAB367" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB367"^^xsd:anyURI ; + qudt:symbol "t/a" ; + qudt:ucumCode "t.a-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/a"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M89" ; + rdfs:isDefinedBy ; + rdfs:label "Ton per Jaar"@nl ; + rdfs:label "Tonne per Year"@en . + +unit:TON_Assay + a qudt:Unit ; + dcterms:description "In the United States, a unit of mass, approximately $29.167\\, grams$. The number of milligrams of precious metal in one assay ton of the ore being tested is equal to the number of troy ounces of pure precious metal in one 2000-pound ton of the ore. i.e. a bead is obtained that weights 3 milligrams, thus the precious metals in the bead would equal three troy ounces to each ton of ore with the understanding that this varies considerably in the real world as the amount of precious values in each ton of ore varies considerably."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.02916667 ; + qudt:conversionMultiplierSN 2.916667E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB234" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB234"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Ton#Other_units_of_mass/weight"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "AT" ; + qudt:uneceCommonCode "M85" ; + rdfs:isDefinedBy ; + rdfs:label "Assay Ton"@en . + +unit:TON_FG + a qudt:Unit ; + dcterms:description "12000 btu per hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 3516.853 ; + qudt:conversionMultiplierSN 3.516853E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ton_of_refrigeration"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$t/fg$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:HeatFlowRate ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ton_of_refrigeration?oldid=494342824"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:J-PER-SEC ; + qudt:symbol "TOR" ; + rdfs:isDefinedBy ; + rdfs:label "Ton of Refrigeration"@en . + +unit:TON_FG-HR + a qudt:Unit ; + dcterms:description "12000 btu"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 12660670.2 ; + qudt:conversionMultiplierSN 1.26606702E7 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ton_of_refrigeration"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_FG ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalEnergy ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ton_of_refrigeration?oldid=494342824"^^xsd:anyURI ; + qudt:symbol "TOR·h" ; + rdfs:isDefinedBy ; + rdfs:label "Ton of Refrigeration Hour"@en . + +unit:TON_F_US + a qudt:Unit ; + dcterms:description "unit of the force according to the American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 8896.443230521 ; + qudt:conversionMultiplierSN 8.896443230521E3 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Force ; + qudt:iec61360Code "0112/2///62720#UAB021" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB021"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the force according to the American system of units" ; + qudt:scalingOf unit:N ; + qudt:symbol "tonf{us}" ; + qudt:ucumCode "[stonf_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L94" ; + rdfs:isDefinedBy ; + rdfs:label "Ton Force (US Short)"@en . + +unit:TON_LONG + a qudt:Unit ; + dcterms:description """

Long ton (weight ton or imperial ton) is the name for the unit called the "ton" in the avoirdupois or Imperial system of measurements, as used in the United Kingdom and several other Commonwealth countries. One long ton is equal to 2,240 pounds (1,016 kg), 1.12 times as much as a short ton, or 35 cubic feet (0.9911 m3) of salt water with a density of 64 lb/ft3 (1.025 g/ml).

+

It has some limited use in the United States, most commonly in measuring the displacement of ships, and was the unit prescribed for warships by the Washington Naval Treaty 1922-for example battleships were limited to a mass of 35,000 long tons (36,000 t; 39,000 short tons).

"""^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 1016.0469088 ; + qudt:conversionMultiplierSN 1.0160469088E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:exactMatch unit:TON_UK ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB009" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Long_ton"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB009"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "t{long}" ; + qudt:ucumCode "[lton_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "LTN" ; + rdfs:isDefinedBy ; + rdfs:label "Long Ton"@en . + +unit:TON_LONG-PER-YD3 + a qudt:Unit ; + dcterms:description "The long ton per cubic yard density measurement unit is used to measure volume in cubic yards in order to estimate weight or mass in long tons."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 1328.8778292234224 ; + qudt:conversionMultiplierSN 1.3288778292234224E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:exactMatch unit:TON_UK-PER-YD3 ; + qudt:expression "$ton/yd^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_LONG ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "t{long}/yd³" ; + qudt:ucumCode "[lton_av]/[cyd_i]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L92" ; + rdfs:isDefinedBy ; + rdfs:label "Long Ton per Cubic Yard"@en . + +unit:TON_Metric + a qudt:Unit ; + dcterms:description "The tonne (SI unit symbol: t) is a metric system unit of mass equal to 1,000 kilograms (2,204.6 pounds). It is a non-SI unit accepted for use with SI. To avoid confusion with the ton, it is also known as the metric tonne and metric ton in the United States[3] and occasionally in the United Kingdom. In SI units and prefixes, the tonne is a megagram (Mg), a rarely-used symbol, easily confused with mg, for milligram."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tonne"^^xsd:anyURI ; + qudt:exactMatch unit:TONNE ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAA988" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tonne?oldid=492526238"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA988"^^xsd:anyURI ; + qudt:plainTextDescription "1,000-fold of the SI base unit kilogram" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "t" ; + qudt:ucumCode "t"^^qudt:UCUMcs ; + qudt:uneceCommonCode "TNE" ; + rdfs:isDefinedBy ; + rdfs:label "Metric Ton"@en ; + skos:altLabel "metric-tonne" . + +unit:TON_Metric-PER-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:TONNE-PER-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA990" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA990"^^xsd:anyURI ; + qudt:symbol "t/bar" ; + qudt:ucumCode "t.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L70" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per bar" . + +unit:TON_Metric-PER-DAY + a qudt:Unit ; + dcterms:description "metric unit ton divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.011574074074074 ; + qudt:conversionMultiplierSN 1.1574074074074E-2 ; + qudt:exactMatch unit:TONNE-PER-DAY ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA991" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA991"^^xsd:anyURI ; + qudt:plainTextDescription "metric unit ton divided by the unit for time day" ; + qudt:symbol "t/d" ; + qudt:ucumCode "t.d-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L71" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Day"@en . + +unit:TON_Metric-PER-DAY-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit day and the unit bar" ; + qudt:conversionMultiplier 0.0000001157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-7 ; + qudt:exactMatch unit:TONNE-PER-DAY-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA993" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA993"^^xsd:anyURI ; + qudt:symbol "t/(d·bar)" ; + qudt:ucumCode "t.d-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L73" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per day bar" . + +unit:TON_Metric-PER-DAY-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit day and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.01157407407407407407407407407407407 ; + qudt:conversionMultiplierSN 1.157407407407407407407407407407407E-2 ; + qudt:exactMatch unit:TONNE-PER-DAY-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA992" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA992"^^xsd:anyURI ; + qudt:symbol "t/(d·K)" ; + qudt:ucumCode "t.d-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L72" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per day kelvin" . + +unit:TON_Metric-PER-HA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.1 ; + qudt:conversionMultiplierSN 1.0E-1 ; + qudt:exactMatch unit:MegaGM-PER-HA ; + qudt:exactMatch unit:TONNE-PER-HA ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasQuantityKind quantitykind:MassPerArea ; + qudt:plainTextDescription "A measure of density equivalent to 1000kg per hectare or one Megagram per hectare, typically used to express a volume of biomass or crop yield." ; + qudt:symbol "t/ha" ; + qudt:ucumCode "t.har-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/har"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "metric tonne per hectare"@en . + +unit:TON_Metric-PER-HR + a qudt:Unit ; + dcterms:description "unit tonne divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.277777777777778 ; + qudt:conversionMultiplierSN 2.77777777777778E-1 ; + qudt:exactMatch unit:TONNE-PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB994" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB994"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the unit for time hour" ; + qudt:symbol "t/h" ; + qudt:ucumCode "t.h-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E18" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Hour"@en . + +unit:TON_Metric-PER-HR-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit hour and the unit bar" ; + qudt:conversionMultiplier 0.000002777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-6 ; + qudt:exactMatch unit:TONNE-PER-HR-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA996" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA996"^^xsd:anyURI ; + qudt:symbol "t/(h·bar)" ; + qudt:ucumCode "t.h-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L75" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hour bar" . + +unit:TON_Metric-PER-HR-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit hour and the SI base unit Kelvin" ; + qudt:conversionMultiplier 0.2777777777777777777777777777777778 ; + qudt:conversionMultiplierSN 2.777777777777777777777777777777778E-1 ; + qudt:exactMatch unit:TONNE-PER-HR-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA995" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA995"^^xsd:anyURI ; + qudt:symbol "t/(h·K)" ; + qudt:ucumCode "t.h-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L74" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per hour kelvin" . + +unit:TON_Metric-PER-K + a qudt:Unit ; + dcterms:description "unit ton divided by the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TONNE-PER-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA989" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA989"^^xsd:anyURI ; + qudt:symbol "t/K" ; + qudt:ucumCode "t.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L69" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per kelvin" . + +unit:TON_Metric-PER-M3 + a qudt:Unit ; + dcterms:description "unit tonne divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TONNE-PER-M3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAA997" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA997"^^xsd:anyURI ; + qudt:plainTextDescription "unit tonne divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "t/m³" ; + qudt:ucumCode "t.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D41" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Cubic Meter"@en-US ; + rdfs:label "Tonne per Cubic Metre"@en . + +unit:TON_Metric-PER-M3-K + a qudt:Unit ; + dcterms:description "1,000-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TONNE-PER-M3-K ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAA998" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA998"^^xsd:anyURI ; + qudt:symbol "t/(m³·K)" ; + qudt:ucumCode "t.m-3.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L76" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per cubic metre kelvin" . + +unit:TON_Metric-PER-MIN + a qudt:Unit ; + dcterms:description "unit ton divided by the unit for time minute"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 16.666666666666668 ; + qudt:conversionMultiplierSN 1.6666666666666668E1 ; + qudt:exactMatch unit:TONNE-PER-MIN ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB000" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB000"^^xsd:anyURI ; + qudt:plainTextDescription "unit ton divided by the unit for time minute" ; + qudt:symbol "t/min" ; + qudt:ucumCode "t.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L78" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Minute"@en . + +unit:TON_Metric-PER-MIN-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit minute and the unit bar" ; + qudt:conversionMultiplier 0.0001666666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E-4 ; + qudt:exactMatch unit:TONNE-PER-MIN-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB002" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB002"^^xsd:anyURI ; + qudt:symbol "t/(min·bar)" ; + qudt:ucumCode "t.min-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L80" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per minute bar" . + +unit:TON_Metric-PER-MIN-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the unit minute and the SI base unit Kelvin" ; + qudt:conversionMultiplier 16.66666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E1 ; + qudt:exactMatch unit:TONNE-PER-MIN-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB001" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB001"^^xsd:anyURI ; + qudt:symbol "t/(min·K)" ; + qudt:ucumCode "t.min-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L79" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per minute kelvin" . + +unit:TON_Metric-PER-SEC + a qudt:Unit ; + dcterms:description "unit ton divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TONNE-PER-SEC ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB003" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB003"^^xsd:anyURI ; + qudt:plainTextDescription "unit ton divided by the SI base unit second" ; + qudt:symbol "t/s" ; + qudt:ucumCode "t.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "t/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L81" ; + rdfs:isDefinedBy ; + rdfs:label "Tonne per Second (metric Ton)"@en . + +unit:TON_Metric-PER-SEC-BAR + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the SI base unit second and the unit bar" ; + qudt:conversionMultiplier 0.01 ; + qudt:conversionMultiplierSN 1.0E-2 ; + qudt:exactMatch unit:TONNE-PER-SEC-BAR ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB005" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB005"^^xsd:anyURI ; + qudt:symbol "t/(s·bar)" ; + qudt:ucumCode "t.s-1.bar-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L83" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per second bar" . + +unit:TON_Metric-PER-SEC-K + a qudt:Unit ; + dcterms:description "unit ton divided by the product of the SI base unit second and the SI base unit Kelvin" ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:TONNE-PER-SEC-K ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_Metric ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB004" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB004"^^xsd:anyURI ; + qudt:symbol "t/(s·K)" ; + qudt:ucumCode "t.s-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L82" ; + rdfs:isDefinedBy ; + rdfs:label "tonne per second kelvin" . + +unit:TON_Register + a qudt:Unit ; + dcterms:description "traditional unit of the cargo capacity" ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:SectionModulus ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB291" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB291"^^xsd:anyURI ; + qudt:symbol "RT" ; + qudt:uneceCommonCode "M70" ; + rdfs:isDefinedBy ; + rdfs:label "ton, register" . + +unit:TON_SHIPPING_UK + a qudt:Unit ; + qudt:conversionMultiplier 1.1326 ; + qudt:conversionMultiplierSN 1.1326E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB008" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB008"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit for volume of cargo, especially in shipping" ; + qudt:symbol "MTON" ; + qudt:uneceCommonCode "L84" ; + rdfs:isDefinedBy ; + rdfs:label "Ton (UK Shipping)"@en . + +unit:TON_SHIPPING_US + a qudt:Unit ; + dcterms:description "traditional unit for volume of cargo, especially in shipping"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.1326 ; + qudt:conversionMultiplierSN 1.1326E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB011" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB011"^^xsd:anyURI ; + qudt:plainTextDescription "traditional unit for volume of cargo, especially in shipping" ; + qudt:scalingOf unit:M3 ; + qudt:symbol "MTON" ; + qudt:uneceCommonCode "L86" ; + rdfs:isDefinedBy ; + rdfs:label "Ton (US Shipping)"@en . + +unit:TON_SHORT + a qudt:Unit ; + dcterms:description "

The short ton is a unit of mass equal to 2,000 pounds (907.18474 kg). In the United States it is often called simply ton without distinguishing it from the metric ton (tonne, 1,000 kilograms / 2,204.62262 pounds) or the long ton (2,240 pounds / 1,016.0469088 kilograms); rather, the other two are specifically noted. There are, however, some U.S. applications for which unspecified tons normally means long tons.

"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 907.18474 ; + qudt:conversionMultiplierSN 9.0718474E2 ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:TON ; + qudt:exactMatch unit:TON_US ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Short_ton"^^xsd:anyURI ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "ton{short}" ; + qudt:ucumCode "[ston_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "STN" ; + rdfs:isDefinedBy ; + rdfs:label "Short Ton"@en . + +unit:TON_SHORT-PER-DEG_F + a qudt:Unit ; + dcterms:description "unit of the mass ton (US, short) according to the Anglo-American system of units divided by the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 1632.932 ; + qudt:conversionMultiplierSN 1.632932E3 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB013" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB013"^^xsd:anyURI ; + qudt:symbol "ton{short}/°F" ; + qudt:ucumCode "[ston_av].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L87" ; + rdfs:isDefinedBy ; + rdfs:label "ton short per degree Fahrenheit" . + +unit:TON_SHORT-PER-HR + a qudt:Unit ; + dcterms:description "The short Ton per Hour is a unit used to express a weight processed in a period of time."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.251944444444444 ; + qudt:conversionMultiplierSN 2.51944444444444E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:TON_US-PER-HR ; + qudt:expression "$ton/h$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:hasQuantityKind quantitykind:MassPerTime ; + qudt:symbol "ton{short}/h" ; + qudt:ucumCode "[ston_av].h-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Short Ton per Hour"@en . + +unit:TON_SHORT-PER-HR-DEG_F + a qudt:Unit ; + dcterms:description "unit of the mass ton (US, short) according to the Anglo-American system of units divided by the product of the unit hour for time and the traditional unit degree Fahrenheit" ; + qudt:conversionMultiplier 0.453592369999999963712610400000003060236522933333330430342165333333575249264 ; + qudt:conversionMultiplierSN 4.53592369999999963712610400000003060236522933333330430342165333333575249264E-1 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB015" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB015"^^xsd:anyURI ; + qudt:symbol "ton{short}/(h·°F)" ; + qudt:ucumCode "[ston_av].h-1.[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L89" ; + rdfs:isDefinedBy ; + rdfs:label "ton short per hour degree Fahrenheit" . + +unit:TON_SHORT-PER-HR-PSI + a qudt:Unit ; + dcterms:description "quotient unit for mass ton (US, short) according to the Anglo-American system of units divided by the unit for time hour divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.0000365488934692998216241326760518469448736564775439857299306140841477553559796 ; + qudt:conversionMultiplierSN 3.65488934692998216241326760518469448736564775439857299306140841477553559796E-5 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB016" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB016"^^xsd:anyURI ; + qudt:symbol "ton{short}/(h·psi)" ; + qudt:ucumCode "[ston_av].h-1.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L90" ; + rdfs:isDefinedBy ; + rdfs:label "ton short per hour psi" . + +unit:TON_SHORT-PER-PSI + a qudt:Unit ; + dcterms:description "unit for mass ton (US, short) according to the Anglo-American system of units divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.131576016489479357846877633786648991019082 ; + qudt:conversionMultiplierSN 1.31576016489479357846877633786648991019082E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB017" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB017"^^xsd:anyURI ; + qudt:symbol "ton{short}/psi" ; + qudt:ucumCode "[ston_av].[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L91" ; + rdfs:isDefinedBy ; + rdfs:label "ton short per psi" . + +unit:TON_SHORT-PER-YD3 + a qudt:Unit ; + dcterms:description "The short ton per cubic yard density measurement unit is used to measure volume in cubic yards in order to estimate weight or mass in short tons."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1186.3112117181538 ; + qudt:conversionMultiplierSN 1.1863112117181538E3 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:exactMatch unit:TON_US-PER-YD3 ; + qudt:expression "$ton/yd^3$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_SHORT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:symbol "ton{short}/yd³" ; + qudt:ucumCode "[ston_av].[cyd_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Short Ton per Cubic Yard"@en . + +unit:TON_UK + a qudt:Unit ; + dcterms:description "traditional Imperial unit for mass of cargo, especially in the shipping sector"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 1016.0469088 ; + qudt:conversionMultiplierSN 1.0160469088E3 ; + qudt:exactMatch unit:TON_LONG ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB009" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB009"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the mass according to the Imperial system of units" ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "ton{UK}" ; + qudt:ucumCode "[lton_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "LTN" ; + rdfs:isDefinedBy ; + rdfs:label "Ton (UK)"@en . + +unit:TON_UK-PER-DAY + a qudt:Unit ; + dcterms:description "unit British ton according to the Imperial system of units divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 0.011759259259259 ; + qudt:conversionMultiplierSN 1.1759259259259E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB010" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB010"^^xsd:anyURI ; + qudt:plainTextDescription "unit British ton according to the Imperial system of units divided by the unit day" ; + qudt:symbol "ton{UK}/d" ; + qudt:ucumCode "[lton_av].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[lton_av]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L85" ; + rdfs:isDefinedBy ; + rdfs:label "Long Ton (uk) per Day"@en . + +unit:TON_UK-PER-YD3 + a qudt:Unit ; + dcterms:description "unit of the density according the Imperial system of units"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:conversionMultiplier 1328.8778292234224 ; + qudt:conversionMultiplierSN 1.3288778292234224E3 ; + qudt:exactMatch unit:TON_LONG-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_UK ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAB018" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB018"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density according the Imperial system of units" ; + qudt:symbol "ton{UK}/yd³" ; + qudt:ucumCode "[lton_av].[cyd_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Long Ton (UK) per Cubic Yard"@en . + +unit:TON_US + a qudt:Unit ; + dcterms:description "A ton is a unit of mass in the US customary system, where 1 ton is equal to 2000 pounds of mass."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 907.18474 ; + qudt:conversionMultiplierSN 9.0718474E2 ; + qudt:exactMatch unit:TON ; + qudt:exactMatch unit:TON_SHORT ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB012" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB012"^^xsd:anyURI ; + qudt:plainTextDescription "A ton is a unit of mass in the US customary system, where 1 ton is equal to 2000 pounds of mass." ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "ton{US}" ; + qudt:ucumCode "[ston_av]"^^qudt:UCUMcs ; + qudt:uneceCommonCode "STN" ; + rdfs:isDefinedBy ; + rdfs:label "Ton (US)"@en . + +unit:TON_US-PER-DAY + a qudt:Unit ; + dcterms:description "unit American ton according to the Anglo-American system of units divided by the unit day"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.010497685185185 ; + qudt:conversionMultiplierSN 1.0497685185185E-2 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_US ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAB014" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB014"^^xsd:anyURI ; + qudt:plainTextDescription "unit American ton according to the Anglo-American system of units divided by the unit day" ; + qudt:symbol "ton{US}/d" ; + qudt:ucumCode "[ston_av].d-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ston_av]/d"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L88" ; + rdfs:isDefinedBy ; + rdfs:label "Short Ton (us) per Day"@en . + +unit:TON_US-PER-HR + a qudt:Unit ; + dcterms:description "unit ton divided by the unit for time hour"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.251944444444444 ; + qudt:conversionMultiplierSN 2.51944444444444E-1 ; + qudt:exactMatch unit:TON_SHORT-PER-HR ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_US ; + ] ; + qudt:hasQuantityKind quantitykind:MassFlowRate ; + qudt:iec61360Code "0112/2///62720#UAA994" ; + qudt:iec61360Code "0112/2///62720#UAB019" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA994"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB019"^^xsd:anyURI ; + qudt:plainTextDescription "unit ton divided by the unit for time hour" ; + qudt:symbol "ton{US}/h" ; + qudt:ucumCode "[ston_av].h-1"^^qudt:UCUMcs ; + qudt:ucumCode "[ston_av]/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "4W" ; + qudt:uneceCommonCode "E18" ; + rdfs:isDefinedBy ; + rdfs:label "Ton (US) per Hour"@en . + +unit:TON_US-PER-YD3 + a qudt:Unit ; + dcterms:description "unit of the density according to the Anglo-American system of units"^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1186.3112117181538 ; + qudt:conversionMultiplierSN 1.1863112117181538E3 ; + qudt:exactMatch unit:TON_SHORT-PER-YD3 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M1H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TON_US ; + ] ; + qudt:hasQuantityKind quantitykind:Density ; + qudt:hasQuantityKind quantitykind:MassDensity ; + qudt:iec61360Code "0112/2///62720#UAB020" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB020"^^xsd:anyURI ; + qudt:plainTextDescription "unit of the density according to the Anglo-American system of units" ; + qudt:symbol "ton{US}/yd³" ; + qudt:ucumCode "[ston_av].[cyd_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L93" ; + rdfs:isDefinedBy ; + rdfs:label "Short Ton (US) per Cubic Yard"@en . + +unit:TORR + a qudt:Unit ; + dcterms:description "

The \\textit{torr} is a non-SI unit of pressure with the ratio of 760 to 1 standard atmosphere, chosen to be roughly equal to the fluid pressure exerted by a millimeter of mercury, i.e. , a pressure of 1 torr is approximately equal to one millimeter of mercury. Note that the symbol (Torr) is spelled exactly the same as the unit (torr), but the letter case differs. The unit is written lower-case, while the symbol of the unit (Torr) is capitalized (as upper-case), as is customary in metric units derived from names. Thus, it is correctly written either way, and is only incorrect when specification is first made that the word is being used as a unit, or else a symbol of the unit, and then the incorrect letter case for the specified use is employed.

"^^rdf:HTML ; + qudt:conversionMultiplier 133.322 ; + qudt:conversionMultiplierSN 1.33322E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Torr"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:ForcePerArea ; + qudt:hasQuantityKind quantitykind:VaporPressure ; + qudt:iec61360Code "0112/2///62720#UAB022" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Torr?oldid=495199381"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB022"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:PA ; + qudt:symbol "Torr" ; + qudt:uneceCommonCode "UA" ; + rdfs:isDefinedBy ; + rdfs:label "Torr"@en . + +unit:TORR-PER-M + a qudt:Unit ; + dcterms:description "[CGS] unit of the pressure divided by the SI base unit metre" ; + qudt:conversionMultiplier 133.322 ; + qudt:conversionMultiplierSN 1.33322E2 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TORR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PressureGradient ; + qudt:iec61360Code "0112/2///62720#UAB425" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB425"^^xsd:anyURI ; + qudt:symbol "Torr/m" ; + qudt:uneceCommonCode "P85" ; + rdfs:isDefinedBy ; + rdfs:label "torr per metre" . + +unit:TSP + a qudt:Unit ; + dcterms:description "A teaspoon is a unit of volume. In the United States one teaspoon as a unit of culinary measure is $1/3$ tablespoon , that is, $\\approx 4.93 mL$; it is exactly $1/6 U.S. fl. oz$, $1/48 \\; cup$, and $1/768 \\; U.S. liquid gallon$ (see United States customary units for relative volumes of these other measures) and approximately $1/3 cubic inch$. For nutritional labeling on food packages in the U.S., the teaspoon is defined as precisely $5 mL$."^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000492892187 ; + qudt:conversionMultiplierSN 4.92892187E-6 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Teaspoon"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB007" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Teaspoon?oldid=490940468"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB007"^^xsd:anyURI ; + qudt:scalingOf unit:M3 ; + qudt:symbol "tsp" ; + qudt:ucumCode "[tsp_us]"^^qudt:UCUMcs ; + qudt:udunitsCode "tsp" ; + qudt:uneceCommonCode "G25" ; + rdfs:isDefinedBy ; + rdfs:label "Teaspoon"@en . + +unit:T_Ab + a qudt:Unit ; + dcterms:description "The unit of magnetic induction in the cgs system, $10^{-4}\\,tesla$. Also known as the gauss."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.0001 ; + qudt:conversionMultiplierSN 1.0E-4 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:exactMatch unit:GAUSS ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticField ; + qudt:hasQuantityKind quantitykind:MagneticFluxDensity ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Gauss_(unit)"^^xsd:anyURI ; + qudt:scalingOf unit:T ; + qudt:symbol "abT" ; + rdfs:isDefinedBy ; + rdfs:label "Abtesla"@en . + +unit:TebiBIT + a qudt:Unit ; + qudt:conversionMultiplier 762123384785.81045030287687180891723051040768 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:prefix prefix:Tebi ; + qudt:scalingOf unit:BIT ; + rdfs:isDefinedBy ; + rdfs:label "TebiBIT" . + +unit:TebiBIT-PER-M + a qudt:Unit ; + dcterms:description "1,099,511,627,776-fold of the unit bit divided by the SI base unit metre" ; + qudt:conversionMultiplier 1099511627776.0 ; + qudt:conversionMultiplierSN 1.099511627776E12 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TebiBIT ; + ] ; + qudt:hasQuantityKind quantitykind:LinearBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA292" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA292"^^xsd:anyURI ; + qudt:symbol "Tibit/m" ; + qudt:uneceCommonCode "E85" ; + rdfs:isDefinedBy ; + rdfs:label "tebibit per metre" . + +unit:TebiBIT-PER-M2 + a qudt:Unit ; + dcterms:description "1,099,511,627,776-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2" ; + qudt:conversionMultiplier 1099511627776.0 ; + qudt:conversionMultiplierSN 1.099511627776E12 ; + qudt:hasDimensionVector qkdv:A0E0L-2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:AreaBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA293" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA293"^^xsd:anyURI ; + qudt:symbol "Tibit/m²" ; + qudt:uneceCommonCode "E87" ; + rdfs:isDefinedBy ; + rdfs:label "tebibit per square metre" . + +unit:TebiBIT-PER-M3 + a qudt:Unit ; + dcterms:description "1,099,511,627,776-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3" ; + qudt:conversionMultiplier 1099511627776.0 ; + qudt:conversionMultiplierSN 1.099511627776E12 ; + qudt:hasDimensionVector qkdv:A0E0L-3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TebiBIT ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:VolumetricBitDensity ; + qudt:iec61360Code "0112/2///62720#UAA294" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA294"^^xsd:anyURI ; + qudt:symbol "Tibit/m³" ; + qudt:uneceCommonCode "E86" ; + rdfs:isDefinedBy ; + rdfs:label "tebibit per cubic metre" . + +unit:TebiBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The tebibyte is a multiple of the unit byte for digital information. The prefix tebi means 1024^4"^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 6096987078286.4836024230149744713 ; + qudt:conversionMultiplierSN 6.0969870782864836024230149744713E12 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tebibyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAA295" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA295"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ; + qudt:prefix prefix:Tebi ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "TiB" ; + qudt:uneceCommonCode "E61" ; + rdfs:isDefinedBy ; + rdfs:label "TebiByte"@en . + +unit:TeraA + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the unit ampere" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:CurrentLinkage ; + qudt:hasQuantityKind quantitykind:DisplacementCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrent ; + qudt:hasQuantityKind quantitykind:ElectricCurrentPhasor ; + qudt:hasQuantityKind quantitykind:MagneticTension ; + qudt:hasQuantityKind quantitykind:MagnetomotiveForce ; + qudt:hasQuantityKind quantitykind:TotalCurrent ; + qudt:iec61360Code "0112/2///62720#UAB640" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB640"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:A ; + qudt:symbol "TA" ; + rdfs:isDefinedBy ; + rdfs:label "teraampere" . + +unit:TeraBIT + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the unit bit" ; + qudt:conversionMultiplier 693147180559.9453 ; + qudt:conversionMultiplierSN 6.931471805599453E11 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:DatasetOfBits ; + qudt:iec61360Code "0112/2///62720#UAB191" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB191"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:BIT ; + qudt:symbol "Tbit" ; + qudt:uneceCommonCode "E83" ; + rdfs:isDefinedBy ; + rdfs:label "terabit" . + +unit:TeraBIT-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the unit bit divided by the SI base unit second" ; + qudt:conversionMultiplier 693147180559.94530941723212145818 ; + qudt:conversionMultiplierSN 6.9314718055994530941723212145818E11 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraBIT ; + ] ; + qudt:hasQuantityKind quantitykind:DataRate ; + qudt:iec61360Code "0112/2///62720#UAA291" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA291"^^xsd:anyURI ; + qudt:symbol "Tbit/s" ; + qudt:ucumCode "Tbit.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "Tbit/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E84" ; + rdfs:isDefinedBy ; + rdfs:label "terabit per second" . + +unit:TeraBQ + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the unit becquerel" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Activity ; + qudt:iec61360Code "0112/2///62720#UAB589" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB589"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:BQ ; + qudt:symbol "TBq" ; + rdfs:isDefinedBy ; + rdfs:label "terabecquerel" . + +unit:TeraBYTE + a qudt:CountingUnit, qudt:Unit ; + dcterms:description "The terabyte is a multiple of the unit byte for digital information. The prefix tera means 10^12 in the International System of Units (SI), and therefore 1 terabyte is 1000000000000bytes, or 1 trillion bytes, or 1000 gigabytes. 1 terabyte in binary prefixes is 0.9095 tebibytes, or 931.32 gibibytes. The unit symbol for the terabyte is TB or TByte, but not Tb (lower case b) which refers to terabit."^^rdf:HTML ; + qudt:applicableSystem sou:ASU ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 5545177444479.5624753378569716654 ; + qudt:conversionMultiplierSN 5.5451774444795624753378569716654E12 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Terabyte"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:InformationEntropy ; + qudt:iec61360Code "0112/2///62720#UAB186" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Terabyte?oldid=494671550"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB186"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:BYTE ; + qudt:symbol "TB" ; + qudt:ucumCode "TBy"^^qudt:UCUMcs ; + qudt:uneceCommonCode "E35" ; + rdfs:isDefinedBy ; + rdfs:label "TeraByte"@en . + +unit:TeraC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A TeraCoulomb is $10^{12} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:C ; + qudt:symbol "TC" ; + qudt:ucumCode "TC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "TeraCoulomb"@en . + +unit:TeraFLOPS + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the unit floating point operations divided by the SI base unit second" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:FloatingPointCalculationCapability ; + qudt:iec61360Code "0112/2///62720#UAB593" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB593"^^xsd:anyURI ; + qudt:symbol "TFLOPS" ; + rdfs:isDefinedBy ; + rdfs:label "terafloating point operations per second" . + +unit:TeraHZ + a qudt:Unit ; + dcterms:description "1 000 000 000 000-fold of the SI derived unit hertz"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAA287" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA287"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit hertz" ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:HZ ; + qudt:symbol "THz" ; + qudt:ucumCode "THz"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D29" ; + rdfs:isDefinedBy ; + rdfs:label "Terahertz"@en . + +unit:TeraJ + a qudt:Unit ; + dcterms:description "1 000 000 000 000-fold of the SI derived unit joule"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA288" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA288"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit joule" ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:J ; + qudt:symbol "TJ" ; + qudt:ucumCode "TJ"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D30" ; + rdfs:isDefinedBy ; + rdfs:label "Terajoule"@en . + +unit:TeraJ-PER-SEC + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the SI derived unit joule divided by the SI base unit second" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraJ ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAB513" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB513"^^xsd:anyURI ; + qudt:symbol "TJ/s" ; + qudt:ucumCode "TJ.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "TJ/s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "terajoule per second" . + +unit:TeraOHM + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the SI derived unit ohm"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E-2L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:Resistance ; + qudt:iec61360Code "0112/2///62720#UAA286" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA286"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit ohm" ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:OHM ; + qudt:symbol "TΩ" ; + qudt:ucumCode "TOhm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H44" ; + rdfs:isDefinedBy ; + rdfs:label "Teraohm"@en . + +unit:TeraV + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the SI derived unit volt" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAC773" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC773"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:V ; + qudt:symbol "TV" ; + rdfs:isDefinedBy ; + rdfs:label "teravolt" . + +unit:TeraV-A + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + dcterms:isReplacedBy unit:TeraVA ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB535" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB535"^^xsd:anyURI ; + qudt:symbol "TV·A" ; + qudt:ucumCode "TV.A"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "teravolt ampere" . + +unit:TeraV-A_Reactive + a qudt:Unit ; + dcterms:description "0.000000000001 of the unit volt ampere reactive" ; + dcterms:isReplacedBy unit:TeraVAR ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraV ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC509" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC509"^^xsd:anyURI ; + qudt:symbol "TV·A{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "teravolt ampere reactive" . + +unit:TeraVA + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAB535" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB535"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:VA ; + qudt:symbol "TVA" ; + qudt:ucumCode "TVA"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "teravolt ampere" . + +unit:TeraVAR + a qudt:Unit ; + dcterms:description "0.000000000001 of the unit volt ampere reactive" ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAC509" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC509"^^xsd:anyURI ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:VAR ; + qudt:symbol "TVA{Reactive}" ; + rdfs:isDefinedBy ; + rdfs:label "teravolt ampere reactive" . + +unit:TeraW + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the SI derived unit watt"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000.0 ; + qudt:conversionMultiplierSN 1.0E12 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA289" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA289"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit watt" ; + qudt:prefix prefix:Tera ; + qudt:scalingOf unit:W ; + qudt:symbol "TW" ; + qudt:ucumCode "TW"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D31" ; + rdfs:isDefinedBy ; + rdfs:label "Terawatt"@en . + +unit:TeraW-HR + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the product of the SI derived unit watt and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600000000000000.0 ; + qudt:conversionMultiplierSN 3.6E15 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraW ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA290" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA290"^^xsd:anyURI ; + qudt:plainTextDescription "1,000,000,000,000-fold of the product of the SI derived unit watt and the unit hour" ; + qudt:symbol "TW·h" ; + qudt:ucumCode "TW/h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D32" ; + rdfs:isDefinedBy ; + rdfs:label "Terawatt Hour"@en . + +unit:TeraW-HR-PER-YR + a qudt:Unit ; + dcterms:description "1,000,000,000,000-fold of the product of the SI derived unit watt and the unit hour divided by the unit year"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 114155251.14 ; + qudt:conversionMultiplierSN 1.1415525114E8 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:YR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:TeraW ; + ] ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:plainTextDescription "Terawatt hour per year is a unit of energy per time (i.e. power) and denotes the energy (in terawatt hours) created or consumed during one year." ; + qudt:symbol "TW·h/a" ; + qudt:ucumCode "TW.h/a"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Terawatt Heure par An"@fr ; + rdfs:label "Terawatt Hour per Year"@en ; + rdfs:label "Terawattstunde pro Jahr"@de . + +unit:TonEnergy + a qudt:Unit ; + dcterms:description "Energy equivalent of one ton of TNT"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 4184000000.0 ; + qudt:conversionMultiplierSN 4.184E9 ; + qudt:expression "$t/lbf$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:scalingOf unit:J ; + qudt:symbol "t/lbf" ; + qudt:ucumCode "Gcal"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Ton Energy"@en . + +unit:U + a qudt:Unit ; + dcterms:description "The unified atomic mass unit (symbol: $u$) or dalton (symbol: $Da$) is the standard unit that is used for indicating mass on an atomic or molecular scale (atomic mass). It is defined as one twelfth of the mass of an unbound neutral atom of carbon-12 in its nuclear and electronic ground state,[ and has a value of $1.660538921(73) \\times 10^{-27} kg$. One dalton is approximately equal to the mass of one nucleon; an equivalence of saying $1 g mol^{-1}$. The CIPM have categorised it as a 'non-SI unit' because units values in SI units must be obtained experimentally."^^qudt:LatexString ; + qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ; + qudt:conversionMultiplierSN 1.66053878283E-27 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_unit"^^xsd:anyURI ; + qudt:exactMatch unit:AMU ; + qudt:exactMatch unit:DA ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T0D0 ; + qudt:hasQuantityKind quantitykind:Mass ; + qudt:iec61360Code "0112/2///62720#UAB083" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB083"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:KiloGM ; + qudt:symbol "u" ; + qudt:ucumCode "u"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D43" ; + rdfs:isDefinedBy ; + rdfs:label "Unified Atomic Mass Unit"@en . + +unit:UNITLESS + a qudt:CountingUnit, qudt:DimensionlessUnit, qudt:Unit ; + dcterms:description "An explicit unit to say something has no units."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Absorptance ; + qudt:hasQuantityKind quantitykind:ActivityCoefficient ; + qudt:hasQuantityKind quantitykind:AmountOfSubstanceFraction ; + qudt:hasQuantityKind quantitykind:AtomScatteringFactor ; + qudt:hasQuantityKind quantitykind:AverageLogarithmicEnergyDecrement ; + qudt:hasQuantityKind quantitykind:BindingFraction ; + qudt:hasQuantityKind quantitykind:BioconcentrationFactor ; + qudt:hasQuantityKind quantitykind:CanonicalPartitionFunction ; + qudt:hasQuantityKind quantitykind:Chromaticity ; + qudt:hasQuantityKind quantitykind:Constringence ; + qudt:hasQuantityKind quantitykind:Count ; + qudt:hasQuantityKind quantitykind:CouplingFactor ; + qudt:hasQuantityKind quantitykind:Debye-WallerFactor ; + qudt:hasQuantityKind quantitykind:DegreeOfDissociation ; + qudt:hasQuantityKind quantitykind:Dimensionless ; + qudt:hasQuantityKind quantitykind:DimensionlessRatio ; + qudt:hasQuantityKind quantitykind:Dissipance ; + qudt:hasQuantityKind quantitykind:DoseEquivalentQualityFactor ; + qudt:hasQuantityKind quantitykind:DutyCycle ; + qudt:hasQuantityKind quantitykind:Duv ; + qudt:hasQuantityKind quantitykind:EinsteinTransitionProbability ; + qudt:hasQuantityKind quantitykind:ElectricSusceptibility ; + qudt:hasQuantityKind quantitykind:Emissivity ; + qudt:hasQuantityKind quantitykind:EquilibriumConstant ; + qudt:hasQuantityKind quantitykind:FastFissionFactor ; + qudt:hasQuantityKind quantitykind:FrictionCoefficient ; + qudt:hasQuantityKind quantitykind:GFactorOfNucleus ; + qudt:hasQuantityKind quantitykind:GeneralizedCoordinate ; + qudt:hasQuantityKind quantitykind:GeneralizedForce ; + qudt:hasQuantityKind quantitykind:GeneralizedMomentum ; + qudt:hasQuantityKind quantitykind:GeneralizedVelocity ; + qudt:hasQuantityKind quantitykind:GruneisenParameter ; + qudt:hasQuantityKind quantitykind:InternalConversionFactor ; + qudt:hasQuantityKind quantitykind:IsentropicExponent ; + qudt:hasQuantityKind quantitykind:LandeGFactor ; + qudt:hasQuantityKind quantitykind:LeakageFactor ; + qudt:hasQuantityKind quantitykind:Lethargy ; + qudt:hasQuantityKind quantitykind:LogOctanolAirPartitionCoefficient ; + qudt:hasQuantityKind quantitykind:LogOctanolWaterPartitionCoefficient ; + qudt:hasQuantityKind quantitykind:LogarithmicFrequencyInterval ; + qudt:hasQuantityKind quantitykind:Long-RangeOrderParameter ; + qudt:hasQuantityKind quantitykind:LossFactor ; + qudt:hasQuantityKind quantitykind:MadelungConstant ; + qudt:hasQuantityKind quantitykind:MagneticSusceptability ; + qudt:hasQuantityKind quantitykind:MassFraction ; + qudt:hasQuantityKind quantitykind:MassFractionOfDryMatter ; + qudt:hasQuantityKind quantitykind:MassFractionOfWater ; + qudt:hasQuantityKind quantitykind:MassRatioOfWaterToDryMatter ; + qudt:hasQuantityKind quantitykind:MassRatioOfWaterVapourToDryGas ; + qudt:hasQuantityKind quantitykind:MobilityRatio ; + qudt:hasQuantityKind quantitykind:MultiplicationFactor ; + qudt:hasQuantityKind quantitykind:NapierianAbsorbance ; + qudt:hasQuantityKind quantitykind:NeutronYieldPerAbsorption ; + qudt:hasQuantityKind quantitykind:NeutronYieldPerFission ; + qudt:hasQuantityKind quantitykind:Non-LeakageProbability ; + qudt:hasQuantityKind quantitykind:NumberOfParticles ; + qudt:hasQuantityKind quantitykind:OrderOfReflection ; + qudt:hasQuantityKind quantitykind:OsmoticCoefficient ; + qudt:hasQuantityKind quantitykind:PackingFraction ; + qudt:hasQuantityKind quantitykind:PermittivityRatio ; + qudt:hasQuantityKind quantitykind:PoissonRatio ; + qudt:hasQuantityKind quantitykind:PowerFactor ; + qudt:hasQuantityKind quantitykind:QualityFactor ; + qudt:hasQuantityKind quantitykind:RadianceFactor ; + qudt:hasQuantityKind quantitykind:RatioOfSpecificHeatCapacities ; + qudt:hasQuantityKind quantitykind:Reactivity ; + qudt:hasQuantityKind quantitykind:Reflectance ; + qudt:hasQuantityKind quantitykind:ReflectanceFactor ; + qudt:hasQuantityKind quantitykind:RefractiveIndex ; + qudt:hasQuantityKind quantitykind:RelativeMassConcentrationOfVapour ; + qudt:hasQuantityKind quantitykind:RelativeMassDensity ; + qudt:hasQuantityKind quantitykind:RelativeMassExcess ; + qudt:hasQuantityKind quantitykind:RelativeMassRatioOfVapour ; + qudt:hasQuantityKind quantitykind:ResonanceEscapeProbability ; + qudt:hasQuantityKind quantitykind:ServiceFactor ; + qudt:hasQuantityKind quantitykind:Short-RangeOrderParameter ; + qudt:hasQuantityKind quantitykind:StandardAbsoluteActivity ; + qudt:hasQuantityKind quantitykind:StatisticalWeight ; + qudt:hasQuantityKind quantitykind:StructureFactor ; + qudt:hasQuantityKind quantitykind:ThermalDiffusionFactor ; + qudt:hasQuantityKind quantitykind:ThermalDiffusionRatio ; + qudt:hasQuantityKind quantitykind:ThermalUtilizationFactor ; + qudt:hasQuantityKind quantitykind:TotalIonization ; + qudt:hasQuantityKind quantitykind:TransmittanceDensity ; + qudt:hasQuantityKind quantitykind:Turns ; + qudt:symbol "一" ; + qudt:uneceCommonCode "C62" ; + rdfs:isDefinedBy ; + rdfs:label "Unitless"@en . + +unit:UNKNOWN + a qudt:Unit ; + dcterms:description "Placeholder unit for abstract quantities" ; + qudt:hasDimensionVector qkdv:NotApplicable ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "Unknown" ; + rdfs:isDefinedBy ; + rdfs:label "Unknown"@en . + +unit:UnitPole + a qudt:Unit ; + dcterms:description "A magnetic pole is a unit pole if it exerts a force of one dyne on another pole of equal strength at a distance of 1 cm. The strength of any given pole in cgs units is therefore numerically equal to the force in dynes which it exerts on a unit pole 1 cm away."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 0.0000001256637 ; + qudt:conversionMultiplierSN 1.256637E-7 ; + qudt:expression "$U/nWb$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAB214" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB214"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:WB ; + qudt:symbol "pole" ; + qudt:uneceCommonCode "P53" ; + rdfs:isDefinedBy ; + rdfs:label "Unit Pole"@en . + +unit:V + a qudt:Unit ; + dcterms:description """$\\textit{Volt}$ is the SI unit of electric potential. + Separating electric charges creates potential energy, which can be measured in energy units such as joules. + Electric potential is defined as the amount of potential energy present per unit of charge. + Electric potential is measured in volts, with one volt representing a potential of one joule per coulomb of charge. + The name of the unit honors the Italian scientist Count Alessandro Volta (1745-1827), the inventor of the first battery. + The volt also may be expressed with a variety of other units. + For example, a volt is also equal to one watt per ampere ($W/A$) and one joule per ampere per second ($J/A/s$). + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Volt"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:iec61360Code "0112/2///62720#UAA296" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Volt?oldid=494812083"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA296"^^xsd:anyURI ; + qudt:latexDefinition "$\\textit{V}\\ \\equiv\\ \\text{volt}\\ \\equiv\\ \\frac{\\text{J}}{\\text{C}}\\ \\equiv\\ \\frac{\\text{joule}}{\\text{coulomb}}\\ \\equiv\\ \\frac{\\text{W.s}}{\\text{C}}\\ \\equiv\\ \\frac{\\text{watt.second}}{\\text{coulomb}}\\ \\equiv\\ \\frac{\\text{W}}{\\text{A}}\\ \\equiv\\ \\frac{\\text{watt}}{\\text{amp}}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:siExactMatch si-unit:volt ; + qudt:siUnitsExpression "W/A" ; + qudt:symbol "V" ; + qudt:ucumCode "V"^^qudt:UCUMcs ; + qudt:udunitsCode "V" ; + qudt:uneceCommonCode "VLT" ; + rdfs:isDefinedBy ; + rdfs:label "Volt"@de ; + rdfs:label "volt"@cs ; + rdfs:label "volt"@en ; + rdfs:label "volt"@fr ; + rdfs:label "volt"@hu ; + rdfs:label "volt"@it ; + rdfs:label "volt"@ms ; + rdfs:label "volt"@pt ; + rdfs:label "volt"@ro ; + rdfs:label "volt"@sl ; + rdfs:label "volt"@tr ; + rdfs:label "voltio"@es ; + rdfs:label "voltium"@la ; + rdfs:label "wolt"@pl ; + rdfs:label "βολτ"@el ; + rdfs:label "волт"@bg ; + rdfs:label "вольт"@ru ; + rdfs:label "וולט"@he ; + rdfs:label "فولت"@ar ; + rdfs:label "ولت"@fa ; + rdfs:label "वोल्ट"@hi ; + rdfs:label "ボルト"@ja ; + rdfs:label "伏特"@zh . + +unit:V-A + a qudt:Unit ; + dcterms:description "product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ; + dcterms:isReplacedBy unit:VA ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAA298" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA298"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit volt and the SI base unit ampere" ; + qudt:symbol "V·A" ; + qudt:ucumCode "V.A"^^qudt:UCUMcs ; + qudt:udunitsCode "VA" ; + qudt:uneceCommonCode "D46" ; + rdfs:isDefinedBy ; + rdfs:label "Voltampere"@de ; + rdfs:label "volt ampere"@en ; + rdfs:label "volt ampere"@it ; + rdfs:label "volt-ampere"@pt ; + rdfs:label "voltampère"@fr ; + rdfs:label "voltiamperio"@es ; + rdfs:label "вольт-ампер"@ru ; + rdfs:label "فولت. أمبير"@ar . + +unit:V-A-HR + a qudt:Unit ; + dcterms:description "product of the unit for apparent by ampere and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:VA-HR ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the unit for apparent by ampere and the unit hour" ; + qudt:symbol "V·A·h" ; + qudt:ucumCode "V.A.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Hour"@en . + +unit:V-A-PER-K + a qudt:Unit ; + dcterms:description "product of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:VA-PER-K ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD905" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD905"^^xsd:anyURI ; + qudt:symbol "V·A/K" ; + qudt:ucumCode "V.A.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "V.A/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "volt ampere per kelvin" . + +unit:V-A_Reactive + a qudt:Unit ; + dcterms:description "unit with special name for reactive power"^^rdf:HTML ; + dcterms:isReplacedBy unit:VAR ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAB023" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB023"^^xsd:anyURI ; + qudt:plainTextDescription "unit with special name for reactive power" ; + qudt:symbol "V·A{Reactive}" ; + qudt:ucumCode "V.A{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D44" ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Reactive"@en . + +unit:V-A_Reactive-HR + a qudt:Unit ; + dcterms:description "product of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + dcterms:isReplacedBy unit:VAR-HR ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "V·A{reactive}·h" ; + qudt:ucumCode "V.A{reactive}.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Reactive Hour"@en . + +unit:V-A_Reactive-PER-K + a qudt:Unit ; + dcterms:description "unit volt ampere reactive divided by the SI base unit kelvin" ; + dcterms:isReplacedBy unit:VAR-PER-K ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:A_Reactive ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD901" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD901"^^xsd:anyURI ; + qudt:symbol "var/K" ; + rdfs:isDefinedBy ; + rdfs:label "volt ampere reactive per kelvin" . + +unit:V-IN2-PER-LB_F + a qudt:Unit ; + dcterms:description "differentiated SI unit volt divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.0001450377312227268702148557236386593 ; + qudt:conversionMultiplierSN 1.450377312227268702148557236386593E-4 ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:LB_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:HallCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA305" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA305"^^xsd:anyURI ; + qudt:symbol "V·in²/lbf" ; + qudt:ucumCode "V.[in_i]2.[lbf_av]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H22" ; + rdfs:isDefinedBy ; + rdfs:label "volt square inch per pound-force" . + +unit:V-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFlux ; + qudt:symbol "V·m" ; + qudt:ucumCode "V.m"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "V-M"@en . + +unit:V-PER-BAR + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the unit bar" ; + qudt:conversionMultiplier 0.00001 ; + qudt:conversionMultiplierSN 1.0E-5 ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:BAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:HallCoefficient ; + qudt:iec61360Code "0112/2///62720#UAA299" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA299"^^xsd:anyURI ; + qudt:symbol "V/bar" ; + qudt:ucumCode "V.bar-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/bar"^^qudt:UCUMcs ; + qudt:uneceCommonCode "G60" ; + rdfs:isDefinedBy ; + rdfs:label "volt per bar" . + +unit:V-PER-CentiM + a qudt:Unit ; + dcterms:description "derived SI unit volt divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 100.0 ; + qudt:conversionMultiplierSN 1.0E2 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAB054" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB054"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit volt divided by the 0.01-fold of the SI base unit metre" ; + qudt:symbol "V/cm" ; + qudt:ucumCode "V.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/cm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D47" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Centimeter"@en-US ; + rdfs:label "Volt per Centimetre"@en . + +unit:V-PER-IN + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the unit inch according to the Anglo-American and the Imperial system of units"^^rdf:HTML ; + qudt:conversionMultiplier 39.37007874015748 ; + qudt:conversionMultiplierSN 3.937007874015748E1 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA300" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA300"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit volt divided by the unit inch according to the Anglo-American and the Imperial system of units" ; + qudt:symbol "V/in" ; + qudt:ucumCode "V.[in_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H23" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Inch"@en . + +unit:V-PER-K + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$v/k$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:SeebeckCoefficient ; + qudt:hasQuantityKind quantitykind:ThomsonCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB173" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB173"^^xsd:anyURI ; + qudt:symbol "V/K" ; + qudt:ucumCode "V.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/K"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D48" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Kelvin"@en . + +unit:V-PER-L-MIN + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the the product of the unit litre and the unit minute" ; + qudt:conversionMultiplier 16.66666666666666666666666666666667 ; + qudt:conversionMultiplierSN 1.666666666666666666666666666666667E1 ; + qudt:hasDimensionVector qkdv:A0E-1L-1I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD913" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD913"^^xsd:anyURI ; + qudt:symbol "V/(L·min)" ; + qudt:ucumCode "V.L-1.min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "F87" ; + rdfs:isDefinedBy ; + rdfs:label "volt per litre minute" . + +unit:V-PER-M + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\{Volt Per Meter (V/m)}$ is a unit in the category of Electric field strength. + It is also known as volts per meter, volt/meter, volt/metre, volt per metre, volts per metre. + This unit is commonly used in the SI unit system. + $\\{Volt Per Meter}$ has a dimension of $MLT^{-3}I^{-1}$ where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. + This unit is the standard SI unit in this category. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$V/m$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricField ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA301" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_field_strength--volt_per_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA301"^^xsd:anyURI ; + qudt:symbol "V/m" ; + qudt:ucumCode "V.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D50" ; + rdfs:isDefinedBy ; + rdfs:label "Volt je Meter"@de ; + rdfs:label "Volt per Meter"@en-US ; + rdfs:label "volt al metro"@it ; + rdfs:label "volt bölü metre"@tr ; + rdfs:label "volt na meter"@sl ; + rdfs:label "volt par mètre"@fr ; + rdfs:label "volt per meter"@ms ; + rdfs:label "volt per metre"@en ; + rdfs:label "volt por metro"@pt ; + rdfs:label "voltio por metro"@es ; + rdfs:label "voltů na metr"@cs ; + rdfs:label "volți pe metru"@ro ; + rdfs:label "wolt na metr"@pl ; + rdfs:label "вольт на метр"@ru ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "ولت بر متر"@fa ; + rdfs:label "प्रति मीटर वोल्ट"@hi ; + rdfs:label "ボルト毎メートル"@ja ; + rdfs:label "伏特每米"@zh . + +unit:V-PER-M2 + a qudt:Unit ; + dcterms:description """ + $\\textit{Volt per Square Metre}$ is the divergence at a particular point in a vector field is (roughly) how much the vector field 'spreads out' from that point. + Operationally, we take the partial derivative of each of the field with respect to each of its space variables and add all the derivatives together to get the divergence. + $\\textit{Electric field}$ ($V/m$) differentiated with respect to distance ($m$) yields $V/(m^2)$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$V m^{-2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerAreaElectricCharge ; + qudt:symbol "V/m²" ; + qudt:ucumCode "V.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Square Meter"@en-US ; + rdfs:label "Volt per Square Metre"@en . + +unit:V-PER-MicroSEC + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the 0.000001-fold of the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MicroSEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA297" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA297"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit volt divided by the 0.000001-fold of the SI base unit second" ; + qudt:symbol "V/µs" ; + qudt:ucumCode "V.us-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/us"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H24" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Microsecond"@en . + +unit:V-PER-MilliM + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:iec61360Code "0112/2///62720#UAA302" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA302"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit volt divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "V/mm" ; + qudt:ucumCode "V.mm-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/mm"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D51" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per Millimeter"@en-US ; + rdfs:label "Volt per Millimetre"@en . + +unit:V-PER-PA + a qudt:Unit ; + dcterms:description "SI derived unit volt divided by the SI derived unit pascal" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:HallCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB312" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB312"^^xsd:anyURI ; + qudt:symbol "V/Pa" ; + qudt:ucumCode "V.Pa-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/Pa"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N98" ; + rdfs:isDefinedBy ; + rdfs:label "volt per pascal" . + +unit:V-PER-SEC + a qudt:Unit ; + dcterms:description "'Volt per Second' is a unit of magnetic flux equaling one weber. This is the flux passing through a conducting loop and reduced to zero at a uniform rate in one second inducing an electric potential of one volt in the loop. "^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$V / sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-4D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerElectricCharge ; + qudt:iec61360Code "0112/2///62720#UAA304" ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1512"^^xsd:anyURI ; + qudt:informativeReference "http://www.thefreedictionary.com/Webers"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA304"^^xsd:anyURI ; + qudt:symbol "V/s" ; + qudt:ucumCode "V.s-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H46" ; + rdfs:isDefinedBy ; + rdfs:label "Volt per second"@en . + +unit:V-PER-V + a qudt:Unit ; + dcterms:description "SI derived unit volt per SI derived unit volt" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD862" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD862"^^xsd:anyURI ; + qudt:symbol "V/V" ; + qudt:ucumCode "V.V-1"^^qudt:UCUMcs ; + qudt:ucumCode "V/V"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "volt per volt" . + +unit:V-SEC-PER-M + a qudt:Unit ; + dcterms:description """ + Volt Second Per Metre is the product of the SI derived unit volt and the SI base unit second divided by the SI base unit metre + """^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFluxPerLength ; + qudt:hasQuantityKind quantitykind:MagneticVectorPotential ; + qudt:hasQuantityKind quantitykind:ScalarMagneticPotential ; + qudt:iec61360Code "0112/2///62720#UAA303" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA303"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit volt and the SI base unit second divided by the SI base unit metre" ; + qudt:symbol "V·s/m" ; + qudt:ucumCode "V.s.m-1"^^qudt:UCUMcs ; + qudt:ucumCode "V.s/m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H45" ; + rdfs:isDefinedBy ; + rdfs:label "Volt Second per Meter"@en-US ; + rdfs:label "Volt Second per Metre"@en . + +unit:V2-PER-K2 + a qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$v^2/k^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-2L4I0M2H-2T-6D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:V ; + ] ; + qudt:hasQuantityKind quantitykind:LorenzCoefficient ; + qudt:iec61360Code "0112/2///62720#UAB172" ; + qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB172"^^xsd:anyURI ; + qudt:symbol "V²/K²" ; + qudt:ucumCode "V2.K-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D45" ; + rdfs:isDefinedBy ; + rdfs:label "Square Volt per Square Kelvin"@en . + +unit:VA + a qudt:Unit ; + dcterms:description "Product of the RMS value of the voltage and the RMS value of an alternating electric current"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ComplexPower ; + qudt:hasQuantityKind quantitykind:NonActivePower ; + qudt:iec61360Code "0112/2///62720#UAA298" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA298"^^xsd:anyURI ; + qudt:plainTextDescription "Product of the RMS value of the voltage and the RMS value of an alternating electric current" ; + qudt:symbol "VA" ; + qudt:ucumCode "VA"^^qudt:UCUMcs ; + qudt:udunitsCode "VA" ; + qudt:uneceCommonCode "D46" ; + rdfs:isDefinedBy ; + rdfs:label "Voltampere"@de ; + rdfs:label "volt ampere"@en ; + rdfs:label "volt ampere"@it ; + rdfs:label "volt-ampere"@pt ; + rdfs:label "voltampère"@fr ; + rdfs:label "voltiamperio"@es ; + rdfs:label "вольт-ампер"@ru ; + rdfs:label "فولت. أمبير"@ar . + +unit:VA-HR + a qudt:Unit ; + dcterms:description "product of the volt ampere and the unit hour"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:VA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the volt ampere and the unit hour" ; + qudt:symbol "VA·h" ; + qudt:ucumCode "VA.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Hour"@en . + +unit:VA-PER-K + a qudt:Unit ; + dcterms:description "the volt ampere divided by the SI base unit kelvin" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:VA ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAD905" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD905"^^xsd:anyURI ; + qudt:symbol "VA/K" ; + qudt:ucumCode "VA.K-1"^^qudt:UCUMcs ; + qudt:ucumCode "VA/K"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "volt ampere per kelvin" . + +unit:VAR + a qudt:Unit ; + dcterms:description "unit for reactive power"^^rdf:HTML ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ReactivePower ; + qudt:iec61360Code "0112/2///62720#UAB023" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB023"^^xsd:anyURI ; + qudt:plainTextDescription "unit for reactive power" ; + qudt:symbol "VA{Reactive}" ; + qudt:ucumCode "VA{reactive}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D44" ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Reactive"@en . + +unit:VAR-HR + a qudt:Unit ; + dcterms:description "product of the unit volt ampere reactive and the unit hour"^^rdf:HTML ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:VAR ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:plainTextDescription "product of the unit volt ampere reactive and the unit hour" ; + qudt:symbol "VA{reactive}·h" ; + qudt:ucumCode "VA{reactive}.h"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Volt Ampere Reactive Hour"@en . + +unit:VAR-PER-K + a qudt:Unit ; + dcterms:description "unit volt ampere reactive divided by the SI base unit kelvin" ; + qudt:hasDimensionVector qkdv:A0E-1L-2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:VAR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD901" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD901"^^xsd:anyURI ; + qudt:symbol "var/K" ; + rdfs:isDefinedBy ; + rdfs:label "volt ampere reactive per kelvin" . + +unit:V_Ab + a qudt:Unit ; + dcterms:description "A unit of electrical potential equal to one hundred millionth of a volt ($10^{-8}\\,volts$), used in the centimeter-gram-second (CGS) system of units. One abV is the potential difference that exists between two points when the work done to transfer one abcoulomb of charge between them equals: $1\\,erg\\cdot\\,1\\,abV\\,=\\,10\\,nV$."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Abvolt"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Abvolt?oldid=477198646"^^xsd:anyURI ; + qudt:informativeReference "http://www.lexic.us/definition-of/abvolt"^^xsd:anyURI ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-27"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:V ; + qudt:symbol "abV" ; + qudt:ucumCode "10.nV"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abvolt"@en . + +unit:V_Ab-PER-CentiM + a qudt:Unit ; + dcterms:description """ + In the electromagnetic centimeter-gram-second system of units, 'abvolt per centimeter' is the unit of electric field strength. + """^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.000001 ; + qudt:conversionMultiplierSN 1.0E-6 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V_Ab ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricField ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:informativeReference "https://encyclopedia2.thefreedictionary.com/abvolt+per+centimeter"^^xsd:anyURI ; + qudt:symbol "abV/cm" ; + qudt:ucumCode "10.nV.cm-1"^^qudt:UCUMcs ; + qudt:ucumCode "10.nV/cm"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abvolt per centimeter"@en-US ; + rdfs:label "Abvolt per centimetre"@en . + +unit:V_Ab-SEC + a qudt:Unit ; + dcterms:description "The magnetic flux whose expenditure in 1 second produces 1 abvolt per turn of a linked circuit. Technically defined in a three-dimensional system, it corresponds in the four-dimensional electromagnetic sector of the SI system to 10 nWb, and is an impractically small unit. In use for some years, the name was agreed by the International Electrotechnical Committee in 1930, along with a corresponding practical unit, the pramaxwell (or pro-maxwell) = $10^{8}$ maxwell."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:conversionMultiplier 0.00000001 ; + qudt:conversionMultiplierSN 1.0E-8 ; + qudt:derivedUnitOfSystem sou:CGS-EMU ; + qudt:expression "$abv-sec$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V_Ab ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-820"^^xsd:anyURI ; + qudt:symbol "abV·s" ; + qudt:ucumCode "10.nV.s"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Abvolt Second"@en . + +unit:V_Stat + a qudt:Unit ; + dcterms:description "\"statvolt\" is a unit of voltage and electrical potential used in the cgs system of units. The conversion to the SI system is $1 statvolt = 299.792458 volts$. The conversion factor 299.792458 is simply the numerical value of the speed of light in m/s divided by 106. The statvolt is also defined in the cgs system as $1 erg / esu$. It is a useful unit for electromagnetism because one statvolt per centimetre is equal in magnitude to one gauss. Thus, for example, an electric field of one statvolt/cm has the same energy density as a magnetic field of one gauss. Likewise, a plane wave propagating in a vacuum has perpendicular electric and magnetic fields such that for every gauss of magnetic field intensity there is one statvolt/cm of electric field intensity. The abvolt is another option for a unit of voltage in the cgs system."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-ESU ; + qudt:conversionMultiplier 299.792458 ; + qudt:conversionMultiplierSN 2.99792458E2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Statvolt"^^xsd:anyURI ; + qudt:derivedUnitOfSystem sou:CGS-ESU ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-3D0 ; + qudt:hasQuantityKind quantitykind:ElectricPotential ; + qudt:hasQuantityKind quantitykind:ElectricPotentialDifference ; + qudt:hasQuantityKind quantitykind:EnergyPerElectricCharge ; + qudt:hasQuantityKind quantitykind:Voltage ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt?oldid=491769750"^^xsd:anyURI ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:V ; + qudt:symbol "statV" ; + rdfs:isDefinedBy ; + rdfs:label "Statvolt"@en . + +unit:V_Stat-CentiM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 2.99792458 ; + qudt:conversionMultiplierSN 2.99792458E0 ; + qudt:expression "$statvolt-centimeter$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricFlux ; + qudt:symbol "statV·cm" ; + rdfs:isDefinedBy ; + rdfs:label "V_Stat-CentiM"@en . + +unit:V_Stat-PER-CentiM + a qudt:Unit ; + dcterms:description """One statvolt per centimetre is equal in magnitude to one gauss. For example, an electric field of one statvolt/cm has the same energy density as a magnetic field of one gauss. Likewise, a plane wave propagating in a vacuum has perpendicular electric and magnetic fields such that for every gauss of magnetic field intensity there is one statvolt/cm of electric field intensity. +The abvolt is another option for a unit of voltage in the cgs system."""^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:conversionMultiplier 29979.2458 ; + qudt:conversionMultiplierSN 2.99792458E4 ; + qudt:expression "$statv-per-cm$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:V_Stat ; + ] ; + qudt:hasQuantityKind quantitykind:ElectricField ; + qudt:hasQuantityKind quantitykind:ElectricFieldStrength ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Statvolt"^^xsd:anyURI ; + qudt:symbol "statV/cm" ; + rdfs:isDefinedBy ; + rdfs:label "Statvolt per Centimeter"@en-US ; + rdfs:label "Statvolt per Centimetre"@en . + +unit:W + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of power. Power is the rate at which work is done, or (equivalently) the rate at which energy is expended. One watt is equal to a power rate of one joule of work per second of time. This unit is used both in mechanics and in electricity, so it links the mechanical and electrical units to one another. In mechanical terms, one watt equals about 0.001 341 02 horsepower (hp) or 0.737 562 foot-pound per second (lbf/s). In electrical terms, one watt is the power produced by a current of one ampere flowing through an electric potential of one volt. The name of the unit honors James Watt (1736-1819), the British engineer whose improvements to the steam engine are often credited with igniting the Industrial Revolution."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Watt"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasQuantityKind quantitykind:ActivePower ; + qudt:hasQuantityKind quantitykind:Power ; + qudt:iec61360Code "0112/2///62720#UAA306" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Watt?oldid=494906356"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA306"^^xsd:anyURI ; + qudt:latexDefinition "$\\textit{W}\\ \\equiv\\ \\text{watt}\\ \\equiv\\ \\frac{\\text{J}}{\\text{s}}\\ \\equiv\\ \\frac{\\text{joule}}{\\text{second}}\\ \\equiv\\ \\frac{\\text{N.m}}{\\text{s}}\\ \\equiv\\ \\frac{\\text{newton.metre}}{\\text{second}}\\ \\equiv\\ \\text{V.A}\\ \\equiv\\ \\text{volt.amp}\\ \\equiv\\ \\Omega\\text{.A}^{2}\\ \\equiv\\ \\text{ohm.amp}^{2}$"^^qudt:LatexString ; + qudt:omUnit ; + qudt:siExactMatch si-unit:watt ; + qudt:symbol "W" ; + qudt:ucumCode "W"^^qudt:UCUMcs ; + qudt:udunitsCode "W" ; + qudt:uneceCommonCode "WTT" ; + rdfs:isDefinedBy ; + rdfs:label "Watt"@de ; + rdfs:label "vatio"@es ; + rdfs:label "wat"@pl ; + rdfs:label "watt"@cs ; + rdfs:label "watt"@en ; + rdfs:label "watt"@fr ; + rdfs:label "watt"@hu ; + rdfs:label "watt"@it ; + rdfs:label "watt"@ms ; + rdfs:label "watt"@pt ; + rdfs:label "watt"@ro ; + rdfs:label "watt"@sl ; + rdfs:label "watt"@tr ; + rdfs:label "wattium"@la ; + rdfs:label "βατ"@el ; + rdfs:label "ват"@bg ; + rdfs:label "ватт"@ru ; + rdfs:label "ואט"@he ; + rdfs:label "وات"@fa ; + rdfs:label "واط"@ar ; + rdfs:label "वाट"@hi ; + rdfs:label "ワット"@ja ; + rdfs:label "瓦特"@zh . + +unit:W-HR + a qudt:Unit ; + dcterms:description "The watt hour is a unit of energy, equal to 3,600 joule."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA308" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA308"^^xsd:anyURI ; + qudt:symbol "W·h" ; + qudt:ucumCode "W.h"^^qudt:UCUMcs ; + qudt:uneceCommonCode "WHR" ; + rdfs:isDefinedBy ; + rdfs:label "Watthour"@en . + +unit:W-HR-PER-KiloGM + a qudt:Unit ; + dcterms:description "product of the SI derived unit watt and the unit hour divided by the SI base unit kilogram" ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasQuantityKind quantitykind:SpecificEnergy ; + qudt:iec61360Code "0112/2///62720#UAD888" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD888"^^xsd:anyURI ; + qudt:symbol "W·h/kg" ; + qudt:ucumCode "W.h.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "W.h/kg"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "watt hour per kilogram" . + +unit:W-HR-PER-L + a qudt:Unit ; + dcterms:description "product of the SI derived unit watt and the unit hour divided by the unit litre" ; + qudt:conversionMultiplier 3600000.0 ; + qudt:conversionMultiplierSN 3.6E6 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:L ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAD887" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD887"^^xsd:anyURI ; + qudt:symbol "W·h/L" ; + qudt:ucumCode "W.h.L-1"^^qudt:UCUMcs ; + qudt:ucumCode "W.h/L"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "watt hour per litre" . + +unit:W-HR-PER-M2 + a qudt:Unit ; + dcterms:description "A unit of energy per unit area, equivalent to 3,600 joules per square metre."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:conversionOffset 0.0 ; + qudt:conversionOffsetSN 0.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:plainTextDescription "A unit of energy per unit area, equivalent to 3,600 joules per square metre." ; + qudt:symbol "W·h/m²" ; + qudt:ucumCode "W.h.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt hour per square metre"@en . + +unit:W-HR-PER-M3 + a qudt:Unit ; + dcterms:description "The watt hour per cubic meter is a unit of energy density, equal to 3,600 joule per cubic meter."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 3600.0 ; + qudt:conversionMultiplierSN 3.6E3 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyDensity ; + qudt:symbol "W·h/m³" ; + qudt:ucumCode "W.h.m-3"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watthour per Cubic meter"@en-US ; + rdfs:label "Watthour per Cubic metre"@en . + +unit:W-M-PER-M2-SR + a qudt:Unit ; + dcterms:description "The power per unit area of radiation of a given wavenumber illuminating a target at a given incident angle."@en ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "W·m/(m²·sr)" ; + qudt:ucumCode "W.m-2.m.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt metre per square metre steradian"@en . + +unit:W-M2 + a qudt:Unit ; + dcterms:description "product of the SI derived unit watt and the power of the SI base unit metre with the exponent 2" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:PowerArea ; + qudt:iec61360Code "0112/2///62720#UAB350" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB350"^^xsd:anyURI ; + qudt:symbol "W·m²" ; + qudt:ucumCode "W.m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "Q21" ; + rdfs:isDefinedBy ; + rdfs:label "W-M2"@en . + +unit:W-M2-PER-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:PowerAreaPerSolidAngle ; + qudt:symbol "W·m²/sr" ; + qudt:ucumCode "W.m2.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "W-M2-PER-SR"@en . + +unit:W-PER-CentiM2 + a qudt:Unit ; + dcterms:description "Watt Per Square Centimeter is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 10000.0 ; + qudt:conversionMultiplierSN 1.0E4 ; + qudt:expression "$W/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:CentiM ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB224" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB224"^^xsd:anyURI ; + qudt:symbol "W/cm²" ; + qudt:ucumCode "W.cm-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N48" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Centimeter"@en-US ; + rdfs:label "Watt per Square Centimetre"@en . + +unit:W-PER-FT2 + a qudt:Unit ; + dcterms:description "Watt Per Square Foot is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 10.7639104 ; + qudt:conversionMultiplierSN 1.07639104E1 ; + qudt:expression "$W/ft^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:symbol "W/ft²" ; + qudt:ucumCode "W.[sft_i]-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Foot"@en . + +unit:W-PER-GM + a qudt:Unit ; + dcterms:description "SI derived unit watt divided by the SI derived unit gram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:exactMatch unit:MilliW-PER-MilliGM ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:GM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:plainTextDescription "SI derived unit watt divided by the SI derived unit gram" ; + qudt:symbol "W/g" ; + qudt:ucumCode "W.g-1"^^qudt:UCUMcs ; + qudt:ucumCode "W/g"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Gram"@en . + +unit:W-PER-IN2 + a qudt:Unit ; + dcterms:description "Watt Per Square Inch is a unit of heat flux or thermal flux, the rate of heat energy transfer through a given surface."^^rdf:HTML ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1550.0031 ; + qudt:conversionMultiplierSN 1.5500031E3 ; + qudt:expression "$W/in^{2}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:IN ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:iec61360Code "0112/2///62720#UAB225" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB225"^^xsd:anyURI ; + qudt:symbol "W/in²" ; + qudt:ucumCode "W.[sin_i]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N49" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Inch"@en . + +unit:W-PER-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Watt Per Kelvin ($W/K$) is a unit in the category of Thermal conductivity."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$w-per-K$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductance ; + qudt:iec61360Code "0112/2///62720#UAA307" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA307"^^xsd:anyURI ; + qudt:symbol "W/K" ; + qudt:ucumCode "W.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D52" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Kelvin"@en . + +unit:W-PER-KiloGM + a qudt:Unit ; + dcterms:description "SI derived unit watt divided by the SI base unit kilogram"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:KiloGM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:AbsorbedDoseRate ; + qudt:hasQuantityKind quantitykind:SpecificPower ; + qudt:iec61360Code "0112/2///62720#UAA316" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA316"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit watt divided by the SI base unit kilogram" ; + qudt:symbol "W/kg" ; + qudt:ucumCode "W.kg-1"^^qudt:UCUMcs ; + qudt:ucumCode "W/kg"^^qudt:UCUMcs ; + qudt:uneceCommonCode "WA" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Kilogram"@en . + +unit:W-PER-M + a qudt:Unit ; + dcterms:description "SI derived unit watt divided by the SI base unit metre" ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:LineicPower ; + qudt:iec61360Code "0112/2///62720#UAB374" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB374"^^xsd:anyURI ; + qudt:symbol "W/m" ; + qudt:ucumCode "W.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H74" ; + rdfs:isDefinedBy ; + rdfs:label "Watts per metre"@en . + +unit:W-PER-M-DEG_C + a qudt:Unit ; + dcterms:description "SI derived unit watt divided by the product of the SI base unit metre and the unit for temperature degree Celsius" ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_C ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAB457" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB457"^^xsd:anyURI ; + qudt:symbol "W/(m·°C)" ; + qudt:ucumCode "W.m-1.Cel-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "N80" ; + rdfs:isDefinedBy ; + rdfs:label "watt per metre degree Celsius" . + +unit:W-PER-M-K + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$W-per-MK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:ThermalConductivity ; + qudt:iec61360Code "0112/2///62720#UAA309" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA309"^^xsd:anyURI ; + qudt:latexSymbol "$W \\cdot m^{-1} \\cdot K^{-1}$"^^qudt:LatexString ; + qudt:symbol "W/(m·K)" ; + qudt:ucumCode "W.m-1.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D53" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Meter Kelvin"@en-US ; + rdfs:label "Watt per Metre Kelvin"@en . + +unit:W-PER-M2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "\"Watt per Square Meter} is a unit of irradiance defined as the power received per area. This is a unit in the category of Energy flux. It is also known as watts per square meter, watt per square metre, watts per square metre, watt/square meter, watt/square metre. This unit is commonly used in the SI unit system. Watt Per Square Meter ($W/m^2$) has a dimension of $MT^{-3\"$ where $M$ is mass, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$W/m^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerArea ; + qudt:hasQuantityKind quantitykind:PoyntingVector ; + qudt:iec61360Code "0112/2///62720#UAA310" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--energy_flux--watt_per_square_meter.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA310"^^xsd:anyURI ; + qudt:symbol "W/m²" ; + qudt:ucumCode "W.m-2"^^qudt:UCUMcs ; + qudt:ucumCode "W/m2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D54" ; + rdfs:isDefinedBy ; + rdfs:label "Watt je Quadratmeter"@de ; + rdfs:label "Watt per Square Meter"@en-US ; + rdfs:label "vatio por metro cuadrado"@es ; + rdfs:label "wat na metr kwadratowy"@pl ; + rdfs:label "watt al metro quadrato"@it ; + rdfs:label "watt bölü metre kare"@tr ; + rdfs:label "watt na kvadratni meter"@sl ; + rdfs:label "watt na metr čtvereční"@cs ; + rdfs:label "watt par mètre carré"@fr ; + rdfs:label "watt pe metru pătrat"@ro ; + rdfs:label "watt per meter persegi"@ms ; + rdfs:label "watt per square metre"@en ; + rdfs:label "watt por metro quadrado"@pt ; + rdfs:label "ватт на квадратный метр"@ru ; + rdfs:label "وات بر مترمربع"@fa ; + rdfs:label "واط في المتر المربع"@ar ; + rdfs:label "वाट प्रति वर्ग मीटर"@hi ; + rdfs:label "ワット毎平方メートル"@ja ; + rdfs:label "瓦特每平方米"@zh . + +unit:W-PER-M2-K + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """ + The unit $\\textit{Watt Per Square Meter Kelvin }$ ($W m^{-2} K^{-1}$) is a unit in the category of Thermal heat transfer coefficient. + It is also known as $\\textit{watt/square meter-kelvin}$. + This unit is commonly used in the SI unit system. + $\\textit{Watt Per Square Meter Kelvin }$ has a dimension of $MT^{-1}Q^{-1}$ where $M$ is mass, $T$ is time, and $Q$ is temperature. + This unit is the standard SI unit in this category. + """^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$W/(m^{2}-K)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-1T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ; + qudt:hasQuantityKind quantitykind:CombinedNonEvaporativeHeatTransferCoefficient ; + qudt:hasQuantityKind quantitykind:SurfaceCoefficientOfHeatTransfer ; + qudt:iec61360Code "0112/2///62720#UAA311" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA311"^^xsd:anyURI ; + qudt:symbol "W/(m²·K)" ; + qudt:ucumCode "W.m-2.K-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D55" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Meter Kelvin"@en-US ; + rdfs:label "Watt per Square Metre Kelvin"@en . + +unit:W-PER-M2-K4 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Watt Per Square Meter Per Quartic Kelvin ($W/m2\\cdotK4)$ is a unit in the category of light."^^qudt:LatexString ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$W/(m^2.K^4)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H-4T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -4 ; + qudt:hasUnit unit:K ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:PowerPerAreaQuarticTemperature ; + qudt:iec61360Code "0112/2///62720#UAB175" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB175"^^xsd:anyURI ; + qudt:symbol "W/(m²·K⁴)" ; + qudt:ucumCode "W.m-2.K-4"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D56" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Meter Quartic Kelvin"@en-US ; + rdfs:label "Watt per Square Metre Quartic Kelvin"@en . + +unit:W-PER-M2-M + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "W/(m²·m)" ; + qudt:ucumCode "W.m-2.m-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watts per square metre metre"@en . + +unit:W-PER-M2-M-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "W/(m²·m·sr)" ; + qudt:ucumCode "W.m-2.m-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watts per square metre metre steradian"@en . + +unit:W-PER-M2-NanoM + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "W/(m²·nm)" ; + qudt:ucumCode "W.m-2.nm-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watts per square metre nanometre"@en . + +unit:W-PER-M2-NanoM-SR + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000.0 ; + qudt:conversionMultiplierSN 1.0E9 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:NanoM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:symbol "W/(m²·nm·sr)" ; + qudt:ucumCode "W.m-2.nm-1.sr-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watts per square metre nanometre steradian"@en . + +unit:W-PER-M2-PA + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "Watt Per Square Meter Per Pascal ($W/m^2-pa$) is a unit of Evaporative Heat Transfer."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:expression "$W/(m^2.pa)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PA ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:EvaporativeHeatTransferCoefficient ; + qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ; + qudt:symbol "W/(m²·Pa)" ; + qudt:ucumCode "W.m-2.Pa-1"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Meter Pascal"@en-US ; + rdfs:label "Watt per Square Metre Pascal"@en . + +unit:W-PER-M2-SR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Watt per steradian per square metre}$ is the SI unit of radiance ($W·sr^{-1}·m^{-2}$), + while that of spectral radiance in frequency is the watt per steradian per square metre + per hertz ($W·sr^{-1}·m^{-2}·Hz^{-1}$) and that of spectral radiance in wavelength is + the watt per steradian per square metre, per metre ($W·sr^{-1}·m^{-3}$), + commonly the watt per steradian per square metre per nanometre ($W·sr^{-1}·m^{-2}·nm^{-1}$). + It has a dimension of $ML^{-4}T^{-3}$ where $M$ is mass, $L$ is length, and $T$ is time. + This unit is the standard SI unit in this category." + """^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$W/(m^2.sr)$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:Radiance ; + qudt:iec61360Code "0112/2///62720#UAA315" ; + qudt:informativeReference "http://www.efunda.com/glossary/units/units--radiance--watt_per_square_meter_per_steradian.cfm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA315"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Radiance"^^xsd:anyURI ; + qudt:symbol "W/(m²·sr)" ; + qudt:ucumCode "W.m-2.sr-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D58" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Square Meter Steradian"@en-US ; + rdfs:label "Watt per Square Metre Steradian"@en . + +unit:W-PER-M3 + a qudt:Unit ; + dcterms:description "SI derived unit watt divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L-1I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -3 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:ForcePerAreaTime ; + qudt:iec61360Code "0112/2///62720#UAA312" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA312"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit watt divided by the power of the SI base unit metre with the exponent 3" ; + qudt:symbol "W/m³" ; + qudt:ucumCode "W.m-3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "H47" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Cubic Meter"@en-US ; + rdfs:label "Watt per Cubic Metre"@en . + +unit:W-PER-SR + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "$\\textit{Watt Per Steradian (W/sr)}$ is the unit in the category of Radiant intensity. It is also known as watts per steradian. This unit is commonly used in the SI unit system. Watt Per Steradian (W/sr) has a dimension of $M\\cdot L^{-2}\\cdot T^{-3}$ where $M$ is mass, $L$ is length, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:expression "$W sr^{-1}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-3D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SR ; + ] ; + qudt:hasQuantityKind quantitykind:RadiantIntensity ; + qudt:iec61360Code "0112/2///62720#UAA314" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA314"^^xsd:anyURI ; + qudt:symbol "W/sr" ; + qudt:ucumCode "W.sr-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D57" ; + rdfs:isDefinedBy ; + rdfs:label "Watt per Steradian"@en . + +unit:W-SEC + a qudt:Unit ; + dcterms:description "product of the SI derived unit watt and SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasQuantityKind quantitykind:Energy ; + qudt:iec61360Code "0112/2///62720#UAA313" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA313"^^xsd:anyURI ; + qudt:plainTextDescription "product of the SI derived unit watt and SI base unit second" ; + qudt:symbol "W·s" ; + qudt:ucumCode "W.s"^^qudt:UCUMcs ; + qudt:uneceCommonCode "J55" ; + rdfs:isDefinedBy ; + rdfs:label "Watt Second"@en . + +unit:W-SEC-PER-M2 + a qudt:Unit ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:W ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasQuantityKind quantitykind:EnergyPerArea ; + qudt:symbol "W·s/m²" ; + qudt:ucumCode "W.s.m-2"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Watt seconds per square metre"@en . + +unit:WB + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The SI unit of magnetic flux. \"Flux\" is the rate (per unit of time) at which something crosses a surface perpendicular to the flow. The weber is a large unit, equal to $10^{8}$ maxwells, and practical fluxes are usually fractions of one weber. The weber is the magnetic flux which, linking a circuit of one turn, would produce in it an electromotive force of 1 volt if it were reduced to zero at a uniform rate in 1 second. In SI base units, the dimensions of the weber are $(kg \\cdot m^2)/(s^2 \\cdot A)$. The weber is commonly expressed in terms of other derived units as the Tesla-square meter ($T \\cdot m^2$), volt-seconds ($V \\cdot s$), or joules per ampere ($J/A$)."^^qudt:LatexString ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Weber"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:SI ; + qudt:derivedCoherentUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E-1L2I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:J ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:A ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticFlux ; + qudt:iec61360Code "0112/2///62720#UAA317" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA317"^^xsd:anyURI ; + qudt:informativeReference "https://en.wikipedia.org/wiki/Weber_(unit)"^^xsd:anyURI ; + qudt:omUnit ; + qudt:siExactMatch si-unit:weber ; + qudt:siUnitsExpression "V.s" ; + qudt:symbol "Wb" ; + qudt:ucumCode "Wb"^^qudt:UCUMcs ; + qudt:udunitsCode "Wb" ; + qudt:uneceCommonCode "WEB" ; + rdfs:isDefinedBy ; + rdfs:label "Weber"@de ; + rdfs:label "weber"@cs ; + rdfs:label "weber"@en ; + rdfs:label "weber"@es ; + rdfs:label "weber"@fr ; + rdfs:label "weber"@hu ; + rdfs:label "weber"@it ; + rdfs:label "weber"@ms ; + rdfs:label "weber"@pl ; + rdfs:label "weber"@pt ; + rdfs:label "weber"@ro ; + rdfs:label "weber"@sl ; + rdfs:label "weber"@tr ; + rdfs:label "weberium"@la ; + rdfs:label "βέμπερ"@el ; + rdfs:label "вебер"@bg ; + rdfs:label "вебер"@ru ; + rdfs:label "ובר"@he ; + rdfs:label "وبر"@fa ; + rdfs:label "ويبر; فيبر"@ar ; + rdfs:label "वैबर"@hi ; + rdfs:label "ウェーバ"@ja ; + rdfs:label "韦伯"@zh . + +unit:WB-M + a qudt:DerivedUnit, qudt:Unit ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:exactMatch unit:N-M2-PER-A ; + qudt:hasDimensionVector qkdv:A0E-1L3I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ; + qudt:iec61360Code "0112/2///62720#UAB333" ; + qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB333"^^xsd:anyURI ; + qudt:symbol "Wb·m" ; + qudt:ucumCode "Wb.m"^^qudt:UCUMcs ; + qudt:uneceCommonCode "P50" ; + rdfs:isDefinedBy ; + rdfs:label "Weber Meter"@en-US ; + rdfs:label "Weber Metre"@en . + +unit:WB-PER-M + a qudt:Unit ; + dcterms:description "SI derived unit weber divided by the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1.0 ; + qudt:conversionMultiplierSN 1.0E0 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:M ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticVectorPotential ; + qudt:iec61360Code "0112/2///62720#UAA318" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA318"^^xsd:anyURI ; + qudt:plainTextDescription "SI derived unit weber divided by the SI base unit metre" ; + qudt:symbol "Wb/m" ; + qudt:ucumCode "Wb.m-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D59" ; + rdfs:isDefinedBy ; + rdfs:label "Weber je Meter"@de ; + rdfs:label "Weber per Meter"@en-US ; + rdfs:label "weber al metro"@it ; + rdfs:label "weber bölü metre"@tr ; + rdfs:label "weber na metr"@pl ; + rdfs:label "weber par mètre"@fr ; + rdfs:label "weber pe metru"@ro ; + rdfs:label "weber per meter"@ms ; + rdfs:label "weber per metre"@en ; + rdfs:label "weber por metro"@es ; + rdfs:label "weber por metro"@pt ; + rdfs:label "weberů na metr"@cs ; + rdfs:label "вебер на метр"@ru ; + rdfs:label "مقياس التبادل، الأس السالب للمتر"@ar ; + rdfs:label "وبر بر متر"@fa ; + rdfs:label "प्रति मीटर वैबर"@hi ; + rdfs:label "ウェーバ毎メートル"@ja ; + rdfs:label "韦伯每米"@zh . + +unit:WB-PER-MilliM + a qudt:Unit ; + dcterms:description "derived SI unit weber divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000.0 ; + qudt:conversionMultiplierSN 1.0E3 ; + qudt:hasDimensionVector qkdv:A0E-1L1I0M1H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MilliM ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:WB ; + ] ; + qudt:hasQuantityKind quantitykind:MagneticVectorPotential ; + qudt:iec61360Code "0112/2///62720#UAB074" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB074"^^xsd:anyURI ; + qudt:plainTextDescription "derived SI unit weber divided by the 0.001-fold of the SI base unit metre" ; + qudt:symbol "Wb/mm" ; + qudt:ucumCode "Wb.mm-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D60" ; + rdfs:isDefinedBy ; + rdfs:label "Weber per Millimeter"@en-US ; + rdfs:label "Weber per Millimetre"@en . + +unit:WK + a qudt:Unit ; + dcterms:description "Mean solar week"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 604800.0 ; + qudt:conversionMultiplierSN 6.048E5 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Week"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB024" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Week?oldid=493867029"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB024"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:symbol "wk" ; + qudt:ucumCode "wk"^^qudt:UCUMcs ; + qudt:uneceCommonCode "WEE" ; + rdfs:isDefinedBy ; + rdfs:label "Week"@en . + +unit:YD + a qudt:Unit ; + dcterms:description "A yard is a unit of length in several different systems including United States customary units, Imperial units and the former English units. It is equal to 3 feet or 36 inches. Under an agreement in 1959 between Australia, Canada, New Zealand, South Africa, the United Kingdom and the United States, the yard (known as the \"international yard\" in the United States) was legally defined to be exactly 0.9144 metres."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.9144 ; + qudt:conversionMultiplierSN 9.144E-1 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Yard"^^xsd:anyURI ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:factorUnitScalar 3.0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:FT ; + ] ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB030" ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Yard?oldid=492334628"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB030"^^xsd:anyURI ; + qudt:symbol "yd" ; + qudt:ucumCode "[yd_i]"^^qudt:UCUMcs ; + qudt:udunitsCode "yd" ; + qudt:uneceCommonCode "YRD" ; + rdfs:isDefinedBy ; + rdfs:label "Yard"@en . + +unit:YD-PER-DEG_F + a qudt:Unit ; + dcterms:description "unit yard according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.6459200164592 ; + qudt:conversionMultiplierSN 1.6459200164592E0 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:LinearThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAB031" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB031"^^xsd:anyURI ; + qudt:plainTextDescription "unit yard according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit" ; + qudt:symbol "yd/°F" ; + qudt:ucumCode "[yd_i].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L98" ; + rdfs:isDefinedBy ; + rdfs:label "Yard per Degree Fahrenheit"@en . + +unit:YD-PER-HR + a qudt:Unit ; + dcterms:description "unit yard according to the Anglo-American and Imperial system of units divided by the unit hour" ; + qudt:conversionMultiplier 0.000254 ; + qudt:conversionMultiplierSN 2.54E-4 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB396" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB396"^^xsd:anyURI ; + qudt:symbol "yd/h" ; + qudt:ucumCode "[yd_i].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M66" ; + rdfs:isDefinedBy ; + rdfs:label "yard per hour" . + +unit:YD-PER-MIN + a qudt:Unit ; + dcterms:description "unit yard according to the Anglo-American and Imperial system of units divided by the unit minute" ; + qudt:conversionMultiplier 0.01524 ; + qudt:conversionMultiplierSN 1.524E-2 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB395" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB395"^^xsd:anyURI ; + qudt:symbol "yd/min" ; + qudt:ucumCode "[yd_i].min-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M65" ; + rdfs:isDefinedBy ; + rdfs:label "yard per minute" . + +unit:YD-PER-PSI + a qudt:Unit ; + dcterms:description "unit yard according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.00013262250143006145012446407369519006392 ; + qudt:conversionMultiplierSN 1.3262250143006145012446407369519006392E-4 ; + qudt:hasDimensionVector qkdv:A0E0L2I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB032" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB032"^^xsd:anyURI ; + qudt:symbol "yd/psi" ; + qudt:ucumCode "[yd_i].[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "L99" ; + rdfs:isDefinedBy ; + rdfs:label "yard per psi" . + +unit:YD-PER-SEC + a qudt:Unit ; + dcterms:description "unit yard according to the Anglo-American and Imperial system of units divided by the SI base unit second" ; + qudt:conversionMultiplier 0.9144 ; + qudt:conversionMultiplierSN 9.144E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:ElectromagneticWavePhaseSpeed ; + qudt:hasQuantityKind quantitykind:LinearVelocity ; + qudt:hasQuantityKind quantitykind:Speed ; + qudt:hasQuantityKind quantitykind:Velocity ; + qudt:iec61360Code "0112/2///62720#UAB394" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB394"^^xsd:anyURI ; + qudt:symbol "yd/s" ; + qudt:ucumCode "[yd_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M64" ; + rdfs:isDefinedBy ; + rdfs:label "yard per second" . + +unit:YD-PER-SEC2 + a qudt:Unit ; + dcterms:description "unit of the length according to the Anglo-American and Imperial system of units divided by the power of the SI base unit second by exponent 2" ; + qudt:conversionMultiplier 0.9144 ; + qudt:conversionMultiplierSN 9.144E-1 ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T-2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -2 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 1 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Acceleration ; + qudt:hasQuantityKind quantitykind:LinearAcceleration ; + qudt:iec61360Code "0112/2///62720#UAB399" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB399"^^xsd:anyURI ; + qudt:symbol "yd/s²" ; + qudt:ucumCode "[yd_i].s-2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M40" ; + rdfs:isDefinedBy ; + rdfs:label "yard per second squared" . + +unit:YD2 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "The square yard is an imperial/US customary unit of area, formerly used in most of the English-speaking world but now generally replaced by the square metre outside of the U.S. , Canada and the U.K. It is defined as the area of a square with sides of one yard in length. (Gaj in Hindi)."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.83612736 ; + qudt:conversionMultiplierSN 8.3612736E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$yd^2$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L2I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 2 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Area ; + qudt:iec61360Code "0112/2///62720#UAB034" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB034"^^xsd:anyURI ; + qudt:symbol "yd²" ; + qudt:ucumCode "[syd_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[yd_i]2"^^qudt:UCUMcs ; + qudt:uneceCommonCode "YDK" ; + rdfs:isDefinedBy ; + rdfs:label "Square Yard"@en . + +unit:YD3 + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A cubic yard is an Imperial / U.S. customary unit of volume, used in the United States, Canada, and the UK. It is defined as the volume of a cube with sides of 1 yard in length."^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.764554857984 ; + qudt:conversionMultiplierSN 7.64554857984E-1 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$yd^{3}$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Volume ; + qudt:iec61360Code "0112/2///62720#UAB035" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB035"^^xsd:anyURI ; + qudt:symbol "yd³" ; + qudt:ucumCode "[cyd_i]"^^qudt:UCUMcs ; + qudt:ucumCode "[yd_i]3"^^qudt:UCUMcs ; + qudt:uneceCommonCode "YDQ" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard"@en . + +unit:YD3-PER-DAY + a qudt:Unit ; + dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00000884901456 ; + qudt:conversionMultiplierSN 8.84901456E-6 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DAY ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAB037" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB037"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day" ; + qudt:symbol "yd³/d" ; + qudt:ucumCode "[cyd_i].d-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M12" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard per Day"@en . + +unit:YD3-PER-DEG_F + a qudt:Unit ; + dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 1.376198881991088 ; + qudt:conversionMultiplierSN 1.376198881991088E0 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H-1T0D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:DEG_F ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeThermalExpansion ; + qudt:iec61360Code "0112/2///62720#UAB036" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB036"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit" ; + qudt:symbol "yd³/°F" ; + qudt:ucumCode "[cyd_i].[degF]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M11" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard per Degree Fahrenheit"@en . + +unit:YD3-PER-HR + a qudt:Unit ; + dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for the time hour"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.00021237634944 ; + qudt:conversionMultiplierSN 2.1237634944E-4 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:HR ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAB038" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB038"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for the time hour" ; + qudt:symbol "yd³/h" ; + qudt:ucumCode "[cyd_i].h-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M13" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard per Hour"@en . + +unit:YD3-PER-MIN + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description """$\\textit{Cubic Yard per Minute}$ is an Imperial unit for 'Volume Per Unit Time' expressed as $yd^{3}/min$. + """^^qudt:LatexString ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.0127425809664 ; + qudt:conversionMultiplierSN 1.27425809664E-2 ; + qudt:definedUnitOfSystem sou:IMPERIAL ; + qudt:definedUnitOfSystem sou:USCS ; + qudt:expression "$yd^{3}/min$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:MIN ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAB040" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB040"^^xsd:anyURI ; + qudt:symbol "yd³/min" ; + qudt:ucumCode "[cyd_i].min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[cyd_i]/min"^^qudt:UCUMcs ; + qudt:ucumCode "[yd_i]3.min-1"^^qudt:UCUMcs ; + qudt:ucumCode "[yd_i]3/min"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M15" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard per Minute"@en . + +unit:YD3-PER-PSI + a qudt:Unit ; + dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the composed unit for pressure (pound-force per square inch)" ; + qudt:conversionMultiplier 0.0001108893019973135049303398173536047128436608512 ; + qudt:conversionMultiplierSN 1.108893019973135049303398173536047128436608512E-4 ; + qudt:hasDimensionVector qkdv:A0E0L4I0M-1H0T2D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:PSI ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:Unknown ; + qudt:iec61360Code "0112/2///62720#UAB039" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB039"^^xsd:anyURI ; + qudt:symbol "yd³/psi" ; + qudt:ucumCode "[yd_i]3.[psi]-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M14" ; + rdfs:isDefinedBy ; + rdfs:label "cubic yard per psi" . + +unit:YD3-PER-SEC + a qudt:Unit ; + dcterms:description "power of the unit and the Anglo-American and Imperial system of units with the exponent 3 divided by the SI base unit second"^^rdf:HTML ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 0.764554857984 ; + qudt:conversionMultiplierSN 7.64554857984E-1 ; + qudt:hasDimensionVector qkdv:A0E0L3I0M0H0T-1D0 ; + qudt:hasFactorUnit [ + qudt:exponent -1 ; + qudt:hasUnit unit:SEC ; + ] ; + qudt:hasFactorUnit [ + qudt:exponent 3 ; + qudt:hasUnit unit:YD ; + ] ; + qudt:hasQuantityKind quantitykind:VolumeFlowRate ; + qudt:hasQuantityKind quantitykind:VolumePerTime ; + qudt:iec61360Code "0112/2///62720#UAB041" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB041"^^xsd:anyURI ; + qudt:plainTextDescription "power of the unit and the Anglo-American and Imperial system of units with the exponent 3 divided by the SI base unit second" ; + qudt:symbol "yd³/s" ; + qudt:ucumCode "[cyd_i].s-1"^^qudt:UCUMcs ; + qudt:uneceCommonCode "M16" ; + rdfs:isDefinedBy ; + rdfs:label "Cubic Yard per Second"@en . + +unit:YR + a qudt:Unit ; + dcterms:description "A year is any of the various periods equated with one passage of Earth about the Sun, and hence of roughly 365 days. The familiar calendar has a mixture of 365- and 366-day years, reflecting the fact that the time for one complete passage takes about 365¼ days; the precise value for this figure depends on the manner of defining the year."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 31557600.0 ; + qudt:conversionMultiplierSN 3.15576E7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB026" ; + qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1533?rskey=b94Fd6"^^xsd:anyURI ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB026"^^xsd:anyURI ; + qudt:omUnit ; + qudt:scalingOf unit:SEC ; + qudt:symbol "a" ; + qudt:ucumCode "a"^^qudt:UCUMcs ; + qudt:udunitsCode "yr" ; + qudt:uneceCommonCode "ANN" ; + rdfs:isDefinedBy ; + rdfs:label "Year"@en . + +unit:YR_Common + a qudt:Unit ; + dcterms:description "31,536,000-fold of the SI base unit second according a common year with 365 days"^^rdf:HTML ; + qudt:conversionMultiplier 31536000.0 ; + qudt:conversionMultiplierSN 3.1536E7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB025" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB025"^^xsd:anyURI ; + qudt:plainTextDescription "31,536,000-fold of the SI base unit second according a common year with 365 days" ; + qudt:scalingOf unit:SEC ; + qudt:symbol "a" ; + qudt:uneceCommonCode "L95" ; + rdfs:isDefinedBy ; + rdfs:label "Common Year"@en . + +unit:YR_Metrology + a qudt:Unit ; + dcterms:description "31,557,600-fold of the SI base unit second according to one year with 365.25 days as physical quantity in the metrology" ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAD922" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD922"^^xsd:anyURI ; + qudt:symbol "y (metrology)" ; + rdfs:isDefinedBy ; + rdfs:label "metrology year" . + +unit:YR_Sidereal + a qudt:Unit ; + dcterms:description "A sidereal year is the time taken for Sun to return to the same position with respect to the stars of the celestial sphere."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 31558149.7632 ; + qudt:conversionMultiplierSN 3.15581497632E7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB028" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB028"^^xsd:anyURI ; + qudt:scalingOf unit:SEC ; + qudt:symbol "a{sidereal}" ; + qudt:uneceCommonCode "L96" ; + rdfs:isDefinedBy ; + rdfs:label "Sidereal Year"@en . + +unit:YR_TROPICAL + a qudt:Unit ; + dcterms:description "

A tropical year (also known as a solar year), for general purposes, is the length of time that the Sun takes to return to the same position in the cycle of seasons, as seen from Earth; for example, the time from vernal equinox to vernal equinox, or from summer solstice to summer solstice. Because of the precession of the equinoxes, the seasonal cycle does not remain exactly synchronised with the position of the Earth in its orbit around the Sun. As a consequence, the tropical year is about 20 minutes shorter than the time it takes Earth to complete one full orbit around the Sun as measured with respect to the fixed stars. Since antiquity, astronomers have progressively refined the definition of the tropical year, and currently define it as the time required for the mean Sun's tropical longitude (longitudinal position along the ecliptic relative to its position at the vernal equinox) to increase by 360 degrees (that is, to complete one full seasonal circuit).

"^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:IMPERIAL ; + qudt:applicableSystem sou:SI ; + qudt:applicableSystem sou:USCS ; + qudt:conversionMultiplier 31556925.216 ; + qudt:conversionMultiplierSN 3.1556925216E7 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:Time ; + qudt:iec61360Code "0112/2///62720#UAB029" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB029"^^xsd:anyURI ; + qudt:scalingOf unit:SEC ; + qudt:symbol "a{tropical}" ; + qudt:ucumCode "a_t"^^qudt:UCUMcs ; + qudt:uneceCommonCode "D42" ; + rdfs:isDefinedBy ; + rdfs:label "Tropical Year"@en ; + skos:altLabel "solar year" . + +unit:YoctoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A YoctoCoulomb is $10^{-24} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-24 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Yocto ; + qudt:scalingOf unit:C ; + qudt:symbol "yC" ; + qudt:ucumCode "yC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "YoctoCoulomb"@en . + +unit:YottaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A YottaCoulomb is $10^{24} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E24 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Yotta ; + qudt:scalingOf unit:C ; + qudt:symbol "YC" ; + qudt:ucumCode "YC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "YottaCoulomb"@en . + +unit:Z + a qudt:Unit ; + dcterms:description "In chemistry and physics, the atomic number (also known as the proton number) is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. It is conventionally represented by the symbol Z. The atomic number uniquely identifies a chemical element. In an atom of neutral charge, the atomic number is also equal to the number of electrons."^^rdf:HTML ; + qudt:applicableSystem sou:CGS ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_number"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:AtomicNumber ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_number?oldid=490723437"^^xsd:anyURI ; + qudt:symbol "Z" ; + rdfs:isDefinedBy ; + rdfs:label "atomic-number"@en . + +unit:ZOLL + a qudt:Unit ; + dcterms:description "length measure corresponding to the imperial unit \"inch\"" ; + qudt:hasDimensionVector qkdv:A0E0L1I0M0H0T0D0 ; + qudt:hasQuantityKind quantitykind:Length ; + qudt:iec61360Code "0112/2///62720#UAB837" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB837"^^xsd:anyURI ; + qudt:symbol "“" ; + rdfs:isDefinedBy ; + rdfs:label "zoll" . + +unit:ZeptoC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A ZeptoCoulomb is $10^{-21} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 0.000000000000000000001 ; + qudt:conversionMultiplierSN 1.0E-21 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Zepto ; + qudt:scalingOf unit:C ; + qudt:symbol "zC" ; + qudt:ucumCode "zC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ZeptoCoulomb"@en . + +unit:ZettaC + a qudt:DerivedUnit, qudt:Unit ; + dcterms:description "A ZettaCoulomb is $10^{21} C$."^^qudt:LatexString ; + prov:wasDerivedFrom unit:C ; + qudt:applicableSystem sou:CGS ; + qudt:applicableSystem sou:CGS-EMU ; + qudt:applicableSystem sou:CGS-GAUSS ; + qudt:applicableSystem sou:PLANCK ; + qudt:applicableSystem sou:SI ; + qudt:conversionMultiplier 1000000000000000000000.0 ; + qudt:conversionMultiplierSN 1.0E21 ; + qudt:derivedUnitOfSystem sou:SI ; + qudt:hasDimensionVector qkdv:A0E1L0I0M0H0T1D0 ; + qudt:hasQuantityKind quantitykind:ElectricCharge ; + qudt:prefix prefix:Zetta ; + qudt:scalingOf unit:C ; + qudt:symbol "ZC" ; + qudt:ucumCode "ZC"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "ZettaCoulomb"@en . + +unit:failures-in-time + a qudt:Unit ; + dcterms:description "unit of failure rate"^^rdf:HTML ; + qudt:conversionMultiplier 0.0 ; + qudt:conversionMultiplierSN 0.0E0 ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T-1D0 ; + qudt:hasQuantityKind quantitykind:Frequency ; + qudt:iec61360Code "0112/2///62720#UAB403" ; + qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB403"^^xsd:anyURI ; + qudt:plainTextDescription "unit of failure rate" ; + qudt:symbol "failures/s" ; + qudt:ucumCode "s-1{failures}"^^qudt:UCUMcs ; + qudt:uneceCommonCode "FIT" ; + rdfs:isDefinedBy ; + rdfs:label "Failures In Time"@en . + +vaem:GMD_QUDT-UNITS-ALL + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2019-07-30"^^xsd:date ; + dcterms:creator "Steve Ray" ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights """ + This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions + or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. + Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, + a copy of which is available at ​http://unitsofmeasure.org. + The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. + The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. + All rights reserved. + THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + """ ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Units-All" ; + dcterms:title "QUDT Units Version 3.1 Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Unit of Measure Vocabulary Metadata Version 3.1.0" ; + vaem:description "Standard units of measure for all units." ; + vaem:graphName "qudt" ; + vaem:graphTitle "QUDT Units Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT.org ; + vaem:hasSteward vaem:QUDT.org ; + vaem:intent "To provide a vocabulary of all units." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-UNITS-ALL.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/vocab/unit/"^^xsd:anyURI ; + vaem:namespacePrefix "unit" ; + vaem:owner "QUDT.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-UNITS-ALL.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/unit"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:title . + +voag:QUDT-UNITS-VocabCatalogEntry + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT UNITS Vocab Catalog Entry" . + + diff --git a/libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl b/libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl new file mode 100644 index 000000000..1e098dd46 --- /dev/null +++ b/libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl @@ -0,0 +1,2749 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . +@prefix cur: . +@prefix dcterms: . +@prefix qkdv: . +@prefix quantitykind: . +@prefix qudt: . +@prefix skos: . +@prefix unit: . +@prefix vaem: . +@prefix voag: . + + + a owl:Ontology ; + owl:imports ; + owl:imports ; + owl:versionIRI ; + rdfs:isDefinedBy ; + rdfs:label "QUDT VOCAB Currency Units Release 3.1.0" ; + vaem:hasGraphMetadata vaem:GMD_QUDT-UNITS-CURRENCY . + +cur:AED + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CCY_AED ; + qudt:currencyCode "AED" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "784" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/United_Arab_Emirates_dirham"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$AED$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/United_Arab_Emirates_dirham?oldid=491806142"^^xsd:anyURI ; + qudt:symbol "د.إ" ; + rdfs:isDefinedBy ; + rdfs:label "United Arab Emirates dirham"@en . + +cur:AFN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AFN ; + qudt:currencyCode "AFN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "971" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Afghani"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Afghani?oldid=485904590"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Afghani"@en . + +cur:ALL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ALL ; + qudt:currencyCode "ALL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "008" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lek"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ALL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lek?oldid=495195665"^^xsd:anyURI ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Lek"@en . + +cur:AMD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AMD ; + qudt:currencyCode "AMD" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "051" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Armenian_dram"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Armenian_dram?oldid=492709723"^^xsd:anyURI ; + qudt:symbol "֏" ; + rdfs:isDefinedBy ; + rdfs:label "Armenian Dram"@en . + +cur:ANG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ANG ; + qudt:currencyCode "ANG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "532" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Netherlands_Antillean_guilder"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ANG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Netherlands_Antillean_guilder?oldid=490030382"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Netherlands Antillian Guilder"@en . + +cur:AOA + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AOA ; + qudt:currencyCode "AOA" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "973" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Angolan_kwanza"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$AOA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Angolan_kwanza?oldid=491748749"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kwanza"@en . + +cur:ARS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ARS ; + qudt:currencyCode "ARS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "032" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Argentine_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Argentine_peso?oldid=491431588"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Argentine Peso"@en . + +cur:AUD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AUD ; + qudt:currencyCode "AUD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "036" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Australian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Australian_dollar?oldid=495046408"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Australian Dollar"@en . + +cur:AWG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AWG ; + qudt:currencyCode "AWG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "533" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Aruban_florin"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Aruban_florin?oldid=492925638"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Aruban Guilder"@en . + +cur:AZN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_AZN ; + qudt:currencyCode "AZN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "944" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Azerbaijani_manat"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Azerbaijani_manat?oldid=495479090"^^xsd:anyURI ; + qudt:symbol "₼" ; + rdfs:isDefinedBy ; + rdfs:label "Azerbaijanian Manat"@en . + +cur:BAM + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BAM ; + qudt:currencyCode "BAM" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "977" ; + qudt:deprecated true ; + qudt:expression "$BAM$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "KM" ; + rdfs:isDefinedBy ; + rdfs:label "Convertible Marks"@en . + +cur:BBD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BBD ; + qudt:currencyCode "BBD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "052" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Barbadian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Barbadian_dollar?oldid=494388633"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Barbados Dollar"@en . + +cur:BDT + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BDT ; + qudt:currencyCode "BDT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "050" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bangladeshi_taka"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bangladeshi_taka?oldid=492673895"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bangladeshi Taka"@en . + +cur:BGN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BGN ; + qudt:currencyCode "BGN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "975" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bulgarian_lev"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BGN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bulgarian_lev?oldid=494947467"^^xsd:anyURI ; + qudt:symbol "лв." ; + rdfs:isDefinedBy ; + rdfs:label "Bulgarian Lev"@en . + +cur:BHD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BHD ; + qudt:currencyCode "BHD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "048" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bahraini_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bahraini_dinar?oldid=493086643"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bahraini Dinar"@en . + +cur:BIF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BIF ; + qudt:currencyCode "BIF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "108" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Burundian_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BIF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Burundian_franc?oldid=489383699"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Burundian Franc"@en . + +cur:BMD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BMD ; + qudt:currencyCode "BMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "060" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bermudian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bermudian_dollar?oldid=492670344"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bermuda Dollar"@en . + +cur:BND + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BND ; + qudt:currencyCode "BND" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "096" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Brunei_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Brunei_dollar?oldid=495134546"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Brunei Dollar"@en . + +cur:BOB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BOB ; + qudt:currencyCode "BOB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "068" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bolivian_boliviano"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BOB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bolivian_boliviano?oldid=494873944"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Boliviano"@en . + +cur:BOV + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BOV ; + qudt:currencyCode "BOV" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "984" ; + qudt:deprecated true ; + qudt:expression "$BOV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Bolivian Mvdol (Funds code)"@en . + +cur:BRL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BRL ; + qudt:currencyCode "BRL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "986" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Brazilian_real"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BRL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Brazilian_real?oldid=495278259"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Brazilian Real"@en . + +cur:BSD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BSD ; + qudt:currencyCode "BSD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "044" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bahamian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bahamian_dollar?oldid=492776024"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Bahamian Dollar"@en . + +cur:BTN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BTN ; + qudt:currencyCode "BTN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "064" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Bhutanese_ngultrum"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BTN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Bhutanese_ngultrum?oldid=491579260"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ngultrum"@en . + +cur:BWP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BWP ; + qudt:currencyCode "BWP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "072" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pula"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BWP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pula?oldid=495207177"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pula"@en . + +cur:BYN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BYN ; + qudt:currencyCode "BYN" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "933" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Belarusian_ruble"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Belarusian_ruble?oldid=494143246"^^xsd:anyURI ; + qudt:symbol "Rbl" ; + rdfs:isDefinedBy ; + rdfs:label "Belarussian Ruble"@en . + +cur:BZD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_BZD ; + qudt:currencyCode "BZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "084" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Belize_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$BZD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Belize_dollar?oldid=462662376"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Belize Dollar"@en . + +cur:CAD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CAD ; + qudt:currencyCode "CAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "124" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Canadian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Canadian_dollar?oldid=494738466"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Canadian Dollar"@en . + +cur:CDF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CDF ; + qudt:currencyCode "CDF" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "976" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Congolese_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CDF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Congolese_franc?oldid=490314640"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Franc Congolais"@en . + +cur:CHE + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CHE ; + qudt:currencyCode "CHE" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "947" ; + qudt:deprecated true ; + qudt:expression "$CHE$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "WIR Euro (complementary currency)"@en . + +cur:CHF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CHF ; + qudt:currencyCode "CHF" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "756" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swiss_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CHF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swiss_franc?oldid=492548706"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "CHF" ; + rdfs:isDefinedBy ; + rdfs:label "Swiss Franc"@en . + +cur:CHW + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CHW ; + qudt:currencyCode "CHW" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "948" ; + qudt:deprecated true ; + qudt:expression "$CHW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "WIR Franc (complementary currency)"@en . + +cur:CLF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CLF ; + qudt:currencyCode "CLF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "990" ; + qudt:deprecated true ; + qudt:expression "$CLF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Unidades de formento (Funds code)"@en . + +cur:CLP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CLP ; + qudt:currencyCode "CLP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "152" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Chilean_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CLP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Chilean_peso?oldid=495455481"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Chilean Peso"@en . + +cur:CNY + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CNY ; + qudt:currencyCode "CNY" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "156" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Renminbi"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CNY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Renminbi?oldid=494799454"^^xsd:anyURI ; + qudt:symbol "¥" ; + rdfs:isDefinedBy ; + rdfs:label "Yuan Renminbi"@en . + +cur:COP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_COP ; + qudt:currencyCode "COP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "170" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Colombian_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$COP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Colombian_peso?oldid=490834575"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Colombian Peso"@en . + +cur:COU + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_COU ; + qudt:currencyCode "COU" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "970" ; + qudt:deprecated true ; + qudt:expression "$COU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Unidad de Valor Real"@en . + +cur:CRC + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CRC ; + qudt:currencyCode "CRC" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "188" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Costa_Rican_col%C3%B3n"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CRC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Costa_Rican_colón?oldid=491007608"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Costa Rican Colon"@en . + +cur:CUP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CUP ; + qudt:currencyCode "CUP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "192" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cuban_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CUP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cuban_peso?oldid=486492974"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cuban Peso"@en . + +cur:CVE + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CVE ; + qudt:currencyCode "CVE" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "132" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cape_Verdean_escudo"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CVE$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cape_Verdean_escudo?oldid=491416749"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cape Verde Escudo"@en . + +cur:CYP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CYP ; + qudt:currencyCode "CYP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "196" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cypriot_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CYP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cypriot_pound?oldid=492644935"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cyprus Pound"@en . + +cur:CZK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_CZK ; + qudt:currencyCode "CZK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "203" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Czech_koruna"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$CZK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Czech_koruna?oldid=493991393"^^xsd:anyURI ; + qudt:symbol "Kč" ; + rdfs:isDefinedBy ; + rdfs:label "Czech Koruna"@en . + +cur:DJF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_DJF ; + qudt:currencyCode "DJF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "262" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Djiboutian_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$DJF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Djiboutian_franc?oldid=486807423"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Djibouti Franc"@en . + +cur:DKK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_DKK ; + qudt:currencyCode "DKK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "208" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Danish_krone"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$DKK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Danish_krone?oldid=491168880"^^xsd:anyURI ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Danish Krone"@en . + +cur:DOP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_DOP ; + qudt:currencyCode "DOP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "214" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dominican_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$DOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dominican_peso?oldid=493950199"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dominican Peso"@en . + +cur:DZD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_DZD ; + qudt:currencyCode "DZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "012" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Algerian_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Algerian_dinar?oldid=492845503"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Algerian Dinar"@en . + +cur:EEK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_EEK ; + qudt:currencyCode "EEK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "233" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Estonian_kroon"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$EEK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Estonian_kroon?oldid=492626188"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kroon"@en . + +cur:EGP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_EGP ; + qudt:currencyCode "EGP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "818" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Egyptian_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$EGP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Egyptian_pound?oldid=494670285"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Egyptian Pound"@en . + +cur:ERN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ERN ; + qudt:currencyCode "ERN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "232" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nakfa"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ERN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nakfa?oldid=415286274"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nakfa"@en . + +cur:ETB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ETB ; + qudt:currencyCode "ETB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "230" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ethiopian_birr"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ETB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ethiopian_birr?oldid=493373507"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ethiopian Birr"@en . + +cur:EUR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_EUR ; + qudt:currencyCode "EUR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "978" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Euro"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$EUR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Euro?oldid=495293446"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "€" ; + rdfs:isDefinedBy ; + rdfs:label "Euro"@en . + +cur:FJD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_FJD ; + qudt:currencyCode "FJD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "242" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Fijian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$FJD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Fijian_dollar?oldid=494373740"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Fiji Dollar"@en . + +cur:FKP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_FKP ; + qudt:currencyCode "FKP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "238" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Falkland_Islands_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$FKP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Falkland_Islands_pound?oldid=489513616"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Falkland Islands Pound"@en . + +cur:GBP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GBP ; + qudt:currencyCode "GBP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "826" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_sterling"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GBP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_sterling?oldid=495524329"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "£" ; + rdfs:isDefinedBy ; + rdfs:label "Pound Sterling"@en . + +cur:GEL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GEL ; + qudt:currencyCode "GEL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "981" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lari"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GEL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lari?oldid=486808394"^^xsd:anyURI ; + qudt:symbol "₾" ; + rdfs:isDefinedBy ; + rdfs:label "Lari"@en . + +cur:GHS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GHS ; + qudt:currencyCode "GHS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "936" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ghanaian_cedi"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GHS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ghanaian_cedi?oldid=415914569"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cedi"@en . + +cur:GIP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GIP ; + qudt:currencyCode "GIP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "292" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gibraltar_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GIP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gibraltar_pound?oldid=494842600"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Gibraltar pound"@en . + +cur:GMD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GMD ; + qudt:currencyCode "GMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "270" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Gambian_dalasi"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Gambian_dalasi?oldid=489522429"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dalasi"@en . + +cur:GNF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GNF ; + qudt:currencyCode "GNF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "324" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guinean_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GNF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guinean_franc?oldid=489527042"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guinea Franc"@en . + +cur:GTQ + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GTQ ; + qudt:currencyCode "GTQ" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "320" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Quetzal"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GTQ$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Quetzal?oldid=489813522"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Quetzal"@en . + +cur:GYD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_GYD ; + qudt:currencyCode "GYD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "328" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guyanese_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$GYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guyanese_dollar?oldid=495070062"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guyana Dollar"@en . + +cur:HKD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_HKD ; + qudt:currencyCode "HKD" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "344" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hong_Kong_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$HKD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hong_Kong_dollar?oldid=495133277"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Hong Kong Dollar"@en . + +cur:HNL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_HNL ; + qudt:currencyCode "HNL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "340" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lempira"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$HNL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lempira?oldid=389955747"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lempira"@en . + +cur:HRK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_HRK ; + qudt:currencyCode "HRK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "191" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Croatian_kuna"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$HRK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Croatian_kuna?oldid=490959527"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Croatian Kuna"@en . + +cur:HTG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_HTG ; + qudt:currencyCode "HTG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "332" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Haitian_gourde"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$HTG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Haitian_gourde?oldid=486090975"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Haiti Gourde"@en . + +cur:HUF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_HUF ; + qudt:currencyCode "HUF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "348" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Hungarian_forint"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$HUF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Hungarian_forint?oldid=492818607"^^xsd:anyURI ; + qudt:symbol "Ft" ; + rdfs:isDefinedBy ; + rdfs:label "Forint"@en . + +cur:IDR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_IDR ; + qudt:currencyCode "IDR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "360" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Indonesian_rupiah"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$IDR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Indonesian_rupiah?oldid=489729458"^^xsd:anyURI ; + qudt:symbol "Rp" ; + rdfs:isDefinedBy ; + rdfs:label "Rupiah"@en . + +cur:ILS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ILS ; + qudt:currencyCode "ILS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "376" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Israeli_new_sheqel"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ILS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Israeli_new_sheqel?oldid=316213924"^^xsd:anyURI ; + qudt:symbol "₪" ; + rdfs:isDefinedBy ; + rdfs:label "New Israeli Shekel"@en . + +cur:INR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_INR ; + qudt:currencyCode "INR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "356" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Indian_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$INR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Indian_rupee?oldid=495120167"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "₹" ; + rdfs:isDefinedBy ; + rdfs:label "Indian Rupee"@en . + +cur:IQD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_IQD ; + qudt:currencyCode "IQD" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "368" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Iraqi_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$IQD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Iraqi_dinar?oldid=494793908"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Iraqi Dinar"@en . + +cur:IRR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_IRR ; + qudt:currencyCode "IRR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "364" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Iranian_rial"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$IRR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Iranian_rial?oldid=495299431"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Iranian Rial"@en . + +cur:ISK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ISK ; + qudt:currencyCode "ISK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "352" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Icelandic_kr%C3%B3na"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ISK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Icelandic_króna?oldid=495457496"^^xsd:anyURI ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Iceland Krona"@en . + +cur:JMD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_JMD ; + qudt:currencyCode "JMD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "388" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Jamaican_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$JMD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Jamaican_dollar?oldid=494039981"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Jamaican Dollar"@en . + +cur:JOD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_JOD ; + qudt:currencyCode "JOD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "400" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Jordanian_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$JOD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Jordanian_dinar?oldid=495270728"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Jordanian Dinar"@en . + +cur:JPY + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_JPY ; + qudt:currencyCode "JPY" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "392" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Japanese_yen"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$JPY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Japanese_yen?oldid=493771966"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "¥" ; + rdfs:isDefinedBy ; + rdfs:label "Japanese yen"@en . + +cur:KES + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KES ; + qudt:currencyCode "KES" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "404" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kenyan_shilling"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KES$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kenyan_shilling?oldid=489547027"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kenyan Shilling"@en . + +cur:KGS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KGS ; + qudt:currencyCode "KGS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "417" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Som"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KGS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Som?oldid=495411674"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Som"@en . + +cur:KHR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KHR ; + qudt:currencyCode "KHR" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "116" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Riel"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KHR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Riel?oldid=473309240"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Riel"@en . + +cur:KMF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KMF ; + qudt:currencyCode "KMF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "174" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Comorian_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KMF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Comorian_franc?oldid=489502162"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Comoro Franc"@en . + +cur:KPW + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KPW ; + qudt:currencyCode "KPW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "408" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/North_Korean_won"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KPW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/North_Korean_won?oldid=495081686"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "North Korean Won"@en . + +cur:KRW + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KRW ; + qudt:currencyCode "KRW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "410" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/South_Korean_won"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KRW$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/South_Korean_won?oldid=494404062"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "₩" ; + rdfs:isDefinedBy ; + rdfs:label "South Korean Won"@en . + +cur:KWD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KWD ; + qudt:currencyCode "KWD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "414" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kuwaiti_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kuwaiti_dinar?oldid=489547428"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kuwaiti Dinar"@en . + +cur:KYD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KYD ; + qudt:currencyCode "KYD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "136" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Cayman_Islands_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Cayman_Islands_dollar?oldid=494206112"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cayman Islands Dollar"@en . + +cur:KZT + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_KZT ; + qudt:currencyCode "KZT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "398" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kazakhstani_tenge"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$KZT$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kazakhstani_tenge?oldid=490523058"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tenge"@en . + +cur:LAK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LAK ; + qudt:currencyCode "LAK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "418" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol " ₭" ; + rdfs:isDefinedBy ; + rdfs:label "Lao kip"@en . + +cur:LBP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LBP ; + qudt:currencyCode "LBP" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "422" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lebanese_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LBP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lebanese_pound?oldid=495528740"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lebanese Pound"@en . + +cur:LKR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LKR ; + qudt:currencyCode "LKR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "144" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sri_Lankan_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LKR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sri_Lankan_rupee?oldid=495359963"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Sri Lanka Rupee"@en . + +cur:LRD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LRD ; + qudt:currencyCode "LRD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "430" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Liberian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LRD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Liberian_dollar?oldid=489549110"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Liberian Dollar"@en . + +cur:LSL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LSL ; + qudt:currencyCode "LSL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "426" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Loti"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LSL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Loti?oldid=384534708"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Loti"@en . + +cur:LTL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LTL ; + qudt:currencyCode "LTL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "440" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Lithuanian_litas"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LTL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Lithuanian_litas?oldid=493046592"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lithuanian Litas"@en . + +cur:LVL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LVL ; + qudt:currencyCode "LVL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "428" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Latvian_lats"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LVL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Latvian_lats?oldid=492800402"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Latvian Lats"@en . + +cur:LYD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_LYD ; + qudt:currencyCode "LYD" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "434" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Libyan_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$LYD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Libyan_dinar?oldid=491421981"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Libyan Dinar"@en . + +cur:MAD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MAD ; + qudt:currencyCode "MAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "504" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Moroccan_dirham"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MAD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moroccan_dirham?oldid=490560557"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Moroccan Dirham"@en . + +cur:MDL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MDL ; + qudt:currencyCode "MDL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "498" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Moldovan_leu"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MDL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Moldovan_leu?oldid=490027766"^^xsd:anyURI ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Moldovan Leu"@en . + +cur:MGA + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MGA ; + qudt:currencyCode "MGA" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "969" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Malagasy_ariary"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MGA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Malagasy_ariary?oldid=489551279"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Malagasy Ariary"@en . + +cur:MKD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MKD ; + qudt:currencyCode "MKD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "807" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Macedonian_denar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MKD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Macedonian_denar?oldid=489550202"^^xsd:anyURI ; + qudt:symbol "ден" ; + rdfs:isDefinedBy ; + rdfs:label "Denar"@en . + +cur:MMK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MMK ; + qudt:currencyCode "MMK" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "104" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Myanma_kyat"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MMK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Myanma_kyat?oldid=441109905"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kyat"@en . + +cur:MNT + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MNT ; + qudt:currencyExponent 2 ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mongolian_t%C3%B6gr%C3%B6g"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mongolian_tögrög?oldid=495408271"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Mongolian Tugrik"@en . + +cur:MOP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MOP ; + qudt:currencyCode "MOP" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "446" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pataca"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pataca?oldid=482490442"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pataca"@en . + +cur:MRU + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MRU ; + qudt:currencyCode "MRU" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "929" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritanian_ouguiya"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MRO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritanian_ouguiya?oldid=490027072"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Ouguiya"@en . + +cur:MTL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MTL ; + qudt:currencyCode "MTL" ; + qudt:currencyNumber "470" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Maltese_lira"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MTL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maltese_lira?oldid=493810797"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Maltese Lira"@en . + +cur:MUR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MUR ; + qudt:currencyCode "MUR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "480" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritian_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MUR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritian_rupee?oldid=487629200"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Mauritius Rupee"@en . + +cur:MVR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MVR ; + qudt:currencyCode "MVR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "462" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Maldivian_rufiyaa"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MVR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Maldivian_rufiyaa?oldid=491578728"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rufiyaa"@en . + +cur:MWK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MWK ; + qudt:currencyCode "MWK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "454" ; + qudt:deprecated true ; + qudt:expression "$MWK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Malawi Kwacha"@en . + +cur:MXN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MXN ; + qudt:currencyCode "MXN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "484" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mexican_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MXN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mexican_peso?oldid=494829813"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Mexican Peso"@en . + +cur:MXV + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MXV ; + qudt:currencyCode "MXV" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "979" ; + qudt:deprecated true ; + qudt:expression "$MXV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Mexican Unidad de Inversion (UDI) (Funds code)"@en . + +cur:MYR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MYR ; + qudt:currencyCode "MYR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "458" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Malaysian_ringgit"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MYR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Malaysian_ringgit?oldid=494417091"^^xsd:anyURI ; + qudt:symbol "RM" ; + rdfs:isDefinedBy ; + rdfs:label "Malaysian Ringgit"@en . + +cur:MZN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_MZN ; + qudt:currencyCode "MZN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "943" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Mozambican_metical"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$MZN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Mozambican_metical?oldid=488225670"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Metical"@en . + +cur:MegaUSD + a qudt:CurrencyUnit, qudt:DerivedUnit ; + qudt:conversionMultiplier 1000000.0 ; + qudt:conversionMultiplierSN 1.0E6 ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Million US Dollars"@en . + +cur:NAD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NAD ; + qudt:currencyCode "NAD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "516" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Namibian_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NAD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Namibian_dollar?oldid=495250023"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Namibian Dollar"@en . + +cur:NGN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NGN ; + qudt:currencyCode "NGN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "566" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nigerian_naira"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NGN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nigerian_naira?oldid=493462003"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Naira"@en . + +cur:NIO + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NIO ; + qudt:currencyCode "NIO" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "558" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nicaraguan_c%C3%B3rdoba"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NIO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nicaraguan_córdoba?oldid=486140595"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Cordoba Oro"@en . + +cur:NOK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NOK ; + qudt:currencyCode "NOK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "578" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Norwegian_krone"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NOK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Norwegian_krone?oldid=495283934"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Norwegian Krone"@en . + +cur:NPR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NPR ; + qudt:currencyCode "NPR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "524" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Nepalese_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NPR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Nepalese_rupee?oldid=476894226"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nepalese Rupee"@en . + +cur:NZD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_NZD ; + qudt:currencyCode "NZD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "554" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/New_Zealand_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$NZD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/New_Zealand_dollar?oldid=495487722"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "New Zealand Dollar"@en . + +cur:OMR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_OMR ; + qudt:currencyCode "OMR" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "512" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Omani_rial"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$OMR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Omani_rial?oldid=491748879"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rial Omani"@en . + +cur:PAB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PAB ; + qudt:currencyCode "PAB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "590" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Balboa"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Balboa?oldid=482550791"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Balboa"@en . + +cur:PEN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PEN ; + qudt:currencyCode "PEN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "604" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Peruvian_nuevo_sol"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PEN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Peruvian_nuevo_sol?oldid=494237249"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Nuevo Sol"@en . + +cur:PGK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PGK ; + qudt:currencyCode "PGK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "598" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Kina"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PGK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Kina?oldid=477155361"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Kina"@en . + +cur:PHP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PHP ; + qudt:currencyCode "PHP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "608" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Philippine_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PHP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Philippine_peso?oldid=495411811"^^xsd:anyURI ; + qudt:symbol "₱" ; + rdfs:isDefinedBy ; + rdfs:label "Philippine Peso"@en . + +cur:PKR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PKR ; + qudt:currencyCode "PKR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "586" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Pakistani_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PKR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Pakistani_rupee?oldid=494937873"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pakistan Rupee"@en . + +cur:PLN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PLN ; + qudt:currencyCode "PLN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "985" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Polish_z%C5%82oty"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PLN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Polish_złoty?oldid=492697733"^^xsd:anyURI ; + qudt:symbol "zł" ; + rdfs:isDefinedBy ; + rdfs:label "Zloty"@en . + +cur:PYG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_PYG ; + qudt:currencyCode "PYG" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "600" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Guaran%C3%AD"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$PYG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Guaraní?oldid=412592698"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Guarani"@en . + +cur:QAR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_QAR ; + qudt:currencyCode "QAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "634" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Qatari_riyal"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$QAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Qatari_riyal?oldid=491747452"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Qatari Rial"@en . + +cur:RON + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_RON ; + qudt:currencyCode "RON" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "946" ; + qudt:deprecated true ; + qudt:expression "$RON$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "L" ; + rdfs:isDefinedBy ; + rdfs:label "Romanian New Leu"@en . + +cur:RSD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_RSD ; + qudt:currencyCode "RSD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "941" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Serbian_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$RSD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Serbian_dinar?oldid=495146650"^^xsd:anyURI ; + qudt:symbol "дин" ; + rdfs:isDefinedBy ; + rdfs:label "Serbian Dinar"@en . + +cur:RUB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_RUB ; + qudt:currencyCode "RUB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "643" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Russian_ruble"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$RUB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Russian_ruble?oldid=494336467"^^xsd:anyURI ; + qudt:symbol "₽" ; + rdfs:isDefinedBy ; + rdfs:label "Russian Ruble"@en . + +cur:RWF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_RWF ; + qudt:currencyCode "RWF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "646" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Rwandan_franc"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$RWF$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Rwandan_franc?oldid=489727903"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Rwanda Franc"@en . + +cur:SAR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SAR ; + qudt:currencyCode "SAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "682" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Saudi_riyal"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Saudi_riyal?oldid=491092981"^^xsd:anyURI ; + qudt:symbol "﷼" ; + rdfs:isDefinedBy ; + rdfs:label "Saudi Riyal"@en . + +cur:SBD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SBD ; + qudt:currencyCode "SBD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "090" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Solomon_Islands_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SBD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Solomon_Islands_dollar?oldid=490313285"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Solomon Islands Dollar"@en . + +cur:SCR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SCR ; + qudt:currencyCode "SCR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "690" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Seychellois_rupee"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SCR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Seychellois_rupee?oldid=492242185"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Seychelles Rupee"@en . + +cur:SDG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SDG ; + qudt:currencyCode "SDG" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "938" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sudanese_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SDG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sudanese_pound?oldid=495263707"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Sudanese Pound"@en . + +cur:SEK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SEK ; + qudt:currencyCode "SEK" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "752" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swedish_krona"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SEK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swedish_krona?oldid=492703602"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "kr" ; + rdfs:isDefinedBy ; + rdfs:label "Swedish Krona"@en . + +cur:SGD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SGD ; + qudt:currencyCode "SGD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "702" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Singapore_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SGD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Singapore_dollar?oldid=492228311"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "Singapore Dollar"@en . + +cur:SHP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SHP ; + qudt:currencyCode "SHP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "654" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Saint_Helena_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SHP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Saint_Helena_pound?oldid=490152057"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Saint Helena Pound"@en . + +cur:SKK + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SKK ; + qudt:currencyCode "SKK" ; + qudt:currencyNumber "703" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Slovak_koruna"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SKK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Slovak_koruna?oldid=492625951"^^xsd:anyURI ; + qudt:symbol "Sk" ; + rdfs:isDefinedBy ; + rdfs:label "Slovak Koruna"@en . + +cur:SLE + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SLE ; + qudt:currencyCode "SLE" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "925" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Sierra_Leonean_leone"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SLL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Sierra_Leonean_leone?oldid=493517965"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Leone"@en . + +cur:SOS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SOS ; + qudt:currencyCode "SOS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "706" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Somali_shilling"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SOS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Somali_shilling?oldid=494434126"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Somali Shilling"@en . + +cur:SRD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SRD ; + qudt:currencyCode "SRD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "968" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Surinamese_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SRD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Surinamese_dollar?oldid=490316270"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Surinam Dollar"@en . + +cur:STN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_STN ; + qudt:currencyCode "STN" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "930" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Dobra"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$STD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Dobra?oldid=475725328"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Dobra"@en . + +cur:SYP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SYP ; + qudt:currencyCode "SYP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "760" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Syrian_pound"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SYP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Syrian_pound?oldid=484294722"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Syrian Pound"@en . + +cur:SZL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_SZL ; + qudt:currencyCode "SZL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "748" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Swazi_lilangeni"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$SZL$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Swazi_lilangeni?oldid=490323340"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Lilangeni"@en . + +cur:THB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_THB ; + qudt:currencyCode "THB" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "764" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Thai_baht"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Thai_baht?oldid=493286022"^^xsd:anyURI ; + qudt:symbol "฿" ; + rdfs:isDefinedBy ; + rdfs:label "Baht"@en . + +cur:TJS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TJS ; + qudt:currencyCode "TJS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "972" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tajikistani_somoni"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TJS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tajikistani_somoni?oldid=492500781"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Somoni"@en . + +cur:TMT + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TMT ; + qudt:currencyCode "TMT" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "934" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Manat"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TMM$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Manat?oldid=486967490"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Manat"@en . + +cur:TND + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TND ; + qudt:currencyCode "TND" ; + qudt:currencyExponent 3 ; + qudt:currencyNumber "788" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tunisian_dinar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tunisian_dinar?oldid=491218035"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tunisian Dinar"@en . + +cur:TOP + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TOP ; + qudt:currencyCode "TOP" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "776" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tongan_pa%CA%BBanga"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TOP$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tongan_paʻanga?oldid=482738012"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Pa'anga"@en . + +cur:TRY + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TRY ; + qudt:currencyCode "TRY" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "949" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Turkish_lira"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TRY$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Turkish_lira?oldid=494097764"^^xsd:anyURI ; + qudt:symbol "₺" ; + rdfs:isDefinedBy ; + rdfs:label "New Turkish Lira"@en . + +cur:TTD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TTD ; + qudt:currencyCode "TTD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "780" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Trinidad_and_Tobago_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TTD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Trinidad_and_Tobago_dollar?oldid=490325306"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Trinidad and Tobago Dollar"@en . + +cur:TWD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TWD ; + qudt:currencyCode "TWD" ; + qudt:currencyExponent 1 ; + qudt:currencyNumber "901" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/New_Taiwan_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/New_Taiwan_dollar?oldid=493996933"^^xsd:anyURI ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "New Taiwan Dollar"@en . + +cur:TZS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_TZS ; + qudt:currencyCode "TZS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "834" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Tanzanian_shilling"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$TZS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Tanzanian_shilling?oldid=492257527"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Tanzanian Shilling"@en . + +cur:UAH + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_UAH ; + qudt:currencyCode "UAH" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "980" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ukrainian_hryvnia"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$UAH$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ukrainian_hryvnia?oldid=493064633"^^xsd:anyURI ; + qudt:symbol "₴" ; + rdfs:isDefinedBy ; + rdfs:label "Hryvnia"@en . + +cur:UGX + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_UGX ; + qudt:currencyCode "UGX" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "800" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Ugandan_shilling"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$UGX$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Ugandan_shilling?oldid=495383966"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Uganda Shilling"@en . + +cur:USD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_USD ; + qudt:altSymbol "US$" ; + qudt:currencyCode "USD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "840" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:symbol "$" ; + rdfs:isDefinedBy ; + rdfs:label "US Dollar"@en . + +cur:USN + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_USN ; + qudt:currencyCode "USN" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "997" ; + qudt:deprecated true ; + qudt:expression "$USN$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "United States Dollar (next day) (funds code)"@en . + +cur:USS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_USS ; + qudt:currencyCode "USS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "998" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "United States Dollar (same day) (funds code)"@en . + +cur:UYU + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_UYU ; + qudt:currencyCode "UYU" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "858" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Uruguayan_peso"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$UYU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Uruguayan_peso?oldid=487528781"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Peso Uruguayo"@en . + +cur:UZS + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_UZS ; + qudt:currencyCode "UZS" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "860" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Uzbekistani_som"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$UZS$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Uzbekistani_som?oldid=490522228"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Uzbekistan Som"@en . + +cur:VES + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_VES ; + qudt:currencyCode "VES" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "928" ; + qudt:deprecated true ; + qudt:expression "$VEB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Venezuelan bolvar"@en . + +cur:VND + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_VND ; + qudt:currencyCode "VND" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "704" ; + qudt:deprecated true ; + qudt:expression "$VND$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Vietnamese ??ng"@en . + +cur:VUV + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_VUV ; + qudt:currencyCode "VUV" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "548" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Vanuatu_vatu"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$VUV$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Vanuatu_vatu?oldid=494667103"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Vatu"@en . + +cur:WST + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_WST ; + qudt:currencyCode "WST" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "882" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Samoan_tala"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$WST$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Samoan_tala?oldid=423898531"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Samoan Tala"@en . + +cur:XAF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XAF ; + qudt:currencyCode "XAF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "950" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFA Franc BEAC"@en . + +cur:XAG + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XAG ; + qudt:currencyCode "XAG" ; + qudt:currencyNumber "961" ; + qudt:deprecated true ; + qudt:expression "$XAG$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Ag}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Silver (one Troy ounce)"@en . + +cur:XAU + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XAU ; + qudt:currencyCode "XAU" ; + qudt:currencyNumber "959" ; + qudt:deprecated true ; + qudt:expression "$XAU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Au}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Gold (one Troy ounce)"@en . + +cur:XBA + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XBA ; + qudt:currencyCode "XBA" ; + qudt:currencyNumber "955" ; + qudt:deprecated true ; + qudt:expression "$XBA$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Composite Unit (EURCO) (Bonds market unit)"@en . + +cur:XBB + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XBB ; + qudt:currencyCode "XBB" ; + qudt:currencyNumber "956" ; + qudt:deprecated true ; + qudt:expression "$XBB$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Monetary Unit (E.M.U.-6) (Bonds market unit)"@en . + +cur:XBC + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XBC ; + qudt:currencyCode "XBC" ; + qudt:currencyNumber "957" ; + qudt:deprecated true ; + qudt:expression "$XBC$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Unit of Account 9 (E.U.A.-9) (Bonds market unit)"@en . + +cur:XBD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XBD ; + qudt:currencyCode "XBD" ; + qudt:currencyNumber "958" ; + qudt:deprecated true ; + qudt:expression "$XBD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "European Unit of Account 17 (E.U.A.-17) (Bonds market unit)"@en . + +cur:XCD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XCD ; + qudt:currencyCode "XCD" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "951" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/East_Caribbean_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$XCD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/East_Caribbean_dollar?oldid=493020176"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "East Caribbean Dollar"@en . + +cur:XDR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XDR ; + qudt:currencyCode "XDR" ; + qudt:currencyNumber "960" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Special_Drawing_Rights"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$XDR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Special_Drawing_Rights?oldid=467224374"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Special Drawing Rights"@en . + +cur:XFO + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XFO ; + qudt:currencyCode "XFO" ; + qudt:deprecated true ; + qudt:expression "$XFO$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "Gold franc (special settlement currency)"@en . + +cur:XFU + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XFU ; + qudt:currencyCode "XFU" ; + qudt:deprecated true ; + qudt:expression "$XFU$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "UIC franc (special settlement currency)"@en . + +cur:XOF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XOF ; + qudt:currencyCode "XOF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "952" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFA Franc BCEAO"@en . + +cur:XPD + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XPD ; + qudt:currencyCode "XPD" ; + qudt:currencyNumber "964" ; + qudt:deprecated true ; + qudt:expression "$XPD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Pd}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Palladium (one Troy ounce)"@en . + +cur:XPF + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XPF ; + qudt:currencyCode "XPF" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "953" ; + qudt:deprecated true ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + rdfs:isDefinedBy ; + rdfs:label "CFP franc"@en . + +cur:XPT + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_XPT ; + qudt:currencyCode "XPT" ; + qudt:currencyNumber "962" ; + qudt:deprecated true ; + qudt:expression "$XPT$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:ucumCode "[oz_tr]{Pt}"^^qudt:UCUMcs ; + rdfs:isDefinedBy ; + rdfs:label "Platinum (one Troy ounce)"@en . + +cur:YER + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_YER ; + qudt:currencyCode "YER" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "886" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Yemeni_rial"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$YER$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Yemeni_rial?oldid=494507603"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Yemeni Rial"@en . + +cur:ZAR + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ZAR ; + qudt:currencyCode "ZAR" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "710" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/South_African_rand"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ZAR$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/South_African_rand?oldid=493780395"^^xsd:anyURI ; + qudt:omUnit ; + qudt:symbol "R" ; + rdfs:isDefinedBy ; + rdfs:label "South African Rand"@en . + +cur:ZMW + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ZMW ; + qudt:currencyCode "ZMW" ; + qudt:currencyExponent 0 ; + qudt:currencyNumber "967" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zambian_kwacha"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ZMK$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zambian_kwacha?oldid=490328608"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Zambian Kwacha"@en . + +cur:ZWL + a qudt:CurrencyUnit ; + dcterms:isReplacedBy unit:CCY_ZWL ; + qudt:currencyCode "ZWL" ; + qudt:currencyExponent 2 ; + qudt:currencyNumber "932" ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Zimbabwean_dollar"^^xsd:anyURI ; + qudt:deprecated true ; + qudt:expression "$ZWD$"^^qudt:LatexString ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:hasQuantityKind quantitykind:Currency ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Zimbabwean_dollar?oldid=491532675"^^xsd:anyURI ; + rdfs:isDefinedBy ; + rdfs:label "Zimbabwe Dollar"@en . + +quantitykind:Currency + a qudt:QuantityKind ; + qudt:applicableUnit cur:MegaUSD ; + qudt:dbpediaMatch "http://dbpedia.org/resource/Currency"^^xsd:anyURI ; + qudt:hasDimensionVector qkdv:A0E0L0I0M0H0T0D1 ; + qudt:informativeReference "http://en.wikipedia.org/wiki/Currency"^^xsd:anyURI ; + qudt:plainTextDescription "In economics, currency is a generally accepted medium of exchange. These are usually the coins and banknotes of a particular government, which comprise the physical aspects of a nation's money supply. The other part of a nation's money supply consists of bank deposits (sometimes called deposit money), ownership of which can be transferred by means of cheques, debit cards, or other forms of money transfer. Deposit money and currency are money in the sense that both are acceptable as a means of payment." ; + rdfs:comment "Applicable units are those of quantitykind:Currency" ; + rdfs:isDefinedBy ; + rdfs:label "Currency"@en ; + skos:broader quantitykind:Asset . + +vaem:GMD_QUDT-UNITS-CURRENCY + a vaem:GraphMetaData ; + dcterms:contributor "Jack Hodges" ; + dcterms:contributor "Simon J D Cox" ; + dcterms:contributor "Steve Ray" ; + dcterms:created "2023-03-14"^^xsd:date ; + dcterms:creator "Steve Ray" ; + dcterms:modified "2025-03-20T15:47:09Z"^^xsd:dateTime ; + dcterms:rights """ + This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved. + +THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + """ ; + dcterms:rights "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org" ; + dcterms:subject "Units-Currency" ; + dcterms:title "Currency UNITS Version 3.1Vocabulary" ; + rdfs:isDefinedBy ; + rdfs:label "QUDT Currency Unit Vocabulary Metadata Version 3.1.0" ; + vaem:description "Standard units of measure for currency units." ; + vaem:graphName "qudt" ; + vaem:graphTitle "QUDT Currency Units Version 3.1.0" ; + vaem:hasGraphRole vaem:VocabularyGraph ; + vaem:hasOwner vaem:QUDT.org ; + vaem:hasSteward vaem:QUDT.org ; + vaem:intent "To provide a vocabulary of currency units." ; + vaem:isMetadataFor ; + vaem:latestPublishedVersion "https://qudt.org/doc/2025/03/DOC_VOCAB-UNITS-CURRENCY.html"^^xsd:anyURI ; + vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ; + vaem:namespace "http://qudt.org/vocab/currency/"^^xsd:anyURI ; + vaem:namespacePrefix "cur" ; + vaem:owner "QUDT.org" ; + vaem:previousPublishedVersion "https://qudt.org/doc/2025/02/DOC_VOCAB-UNITS-CURRENCY.html"^^xsd:anyURI ; + vaem:turtleFileURL "http://qudt.org/3.1.0/vocab/currency"^^xsd:anyURI ; + vaem:usesNonImportedResource dcterms:abstract ; + vaem:usesNonImportedResource dcterms:created ; + vaem:usesNonImportedResource dcterms:creator ; + vaem:usesNonImportedResource dcterms:modified ; + vaem:usesNonImportedResource dcterms:title . + +voag:QUDT-CURRENCY-UNITS-VocabCatalogEntry + a vaem:CatalogEntry ; + rdfs:isDefinedBy ; + rdfs:label "QUDT CURRENCY UNITS Vocab Catalog Entry" . + + diff --git a/notebooks/223P-Validation.ipynb b/notebooks/223P-Validation.ipynb index c0b6da7eb..758ee5eb4 100644 --- a/notebooks/223P-Validation.ipynb +++ b/notebooks/223P-Validation.ipynb @@ -110,7 +110,7 @@ ], "source": [ "# import 223P ontology from models.open223.info\n", - "s223 = Library.load(ontology_graph=\"libraries/ashrae/223p/ontology/223p.ttl\")" + "s223 = Library.load(ontology_graph=\"libraries/ashrae/223p/ontology/223p.ttl\", infer_templates=False)" ] }, { @@ -140,7 +140,8 @@ "source": [ "# create a model to hold an example building from models.open223.info\n", "lbnl_example_building = Model.create(Namespace(\"urn:lbnl\"))\n", - "lbnl_example_building.graph.parse(\"https://models.open223.info/compiled/lbnl-bdg3-1.ttl\")" + "lbnl_example_building.graph.parse(\"https://models.open223.info/lbnl-bdg3-1.ttl\")\n", + "compiled = lbnl_example_building.compile([s223.get_shape_collection()])" ] }, { diff --git a/notebooks/Compile-model.ipynb b/notebooks/Compile-model.ipynb index 57169bedb..3944562cb 100644 --- a/notebooks/Compile-model.ipynb +++ b/notebooks/Compile-model.ipynb @@ -3,19 +3,14 @@ { "cell_type": "code", "execution_count": 1, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:30:25.859551Z", - "iopub.status.busy": "2024-07-02T23:30:25.859387Z", - "iopub.status.idle": "2024-07-02T23:30:26.222018Z", - "shell.execute_reply": "2024-07-02T23:30:26.221585Z" - } - }, + "metadata": {}, "outputs": [], "source": [ "from buildingmotif import BuildingMOTIF\n", "from buildingmotif.dataclasses import Model, Library\n", - "import os" + "from buildingmotif.namespaces import BRICK\n", + "import os\n", + "from rdflib import URIRef" ] }, { @@ -26,14 +21,7 @@ { "cell_type": "code", "execution_count": 2, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:30:26.224436Z", - "iopub.status.busy": "2024-07-02T23:30:26.224281Z", - "iopub.status.idle": "2024-07-02T23:30:26.247705Z", - "shell.execute_reply": "2024-07-02T23:30:26.247364Z" - } - }, + "metadata": {}, "outputs": [], "source": [ "building_motif = BuildingMOTIF(\"sqlite://\")\n", @@ -50,19 +38,12 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:30:26.249834Z", - "iopub.status.busy": "2024-07-02T23:30:26.249698Z", - "iopub.status.idle": "2024-07-02T23:30:26.378432Z", - "shell.execute_reply": "2024-07-02T23:30:26.378106Z" - } - }, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - ")>" + ")>" ] }, "execution_count": 3, @@ -85,26 +66,56 @@ { "cell_type": "code", "execution_count": 4, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:30:26.380354Z", - "iopub.status.busy": "2024-07-02T23:30:26.380223Z", - "iopub.status.idle": "2024-07-02T23:30:43.794880Z", - "shell.execute_reply": "2024-07-02T23:30:43.794487Z" - } - }, + "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "/Users/gabe/Library/Caches/pypoetry/virtualenvs/buildingmotif-ozGZrh9J-py3.11/lib/python3.11/site-packages/pyshacl/extras/__init__.py:46: Warning: Extra \"js\" is not satisfied because requirement pyduktape2 is not installed.\n", - " warn(Warning(f\"Extra \\\"{extra_name}\\\" is not satisfied because requirement {req} is not installed.\"))\n" + "/Users/gabe/Library/Caches/pypoetry/virtualenvs/buildingmotif-FYjxCmL6-py3.11/lib/python3.11/site-packages/pyshacl/extras/__init__.py:46: Warning: Extra \"js\" is not satisfied because requirement pyduktape2 is not installed.\n", + " warn(Warning(f\"Extra \\\"{extra_name}\\\" is not satisfied because requirement {req} is not installed.\"))\n", + "2024-11-06 21:52:00,128 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/vocab/dimensionvector (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,128 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/schema/facade/qudt (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,129 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/vocab/sou (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,129 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/schema/shacl/overlay/qudt (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,130 | root | WARNING: An ontology could not resolve a dependency on https://w3id.org/rec/recimports (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,130 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/vocab/unit (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,131 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/schema/shacl/qudt (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,131 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/vocab/prefix (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,132 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/collection/usertest (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,132 | root | WARNING: An ontology could not resolve a dependency on http://data.ashrae.org/bacnet/2020 (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,133 | root | WARNING: An ontology could not resolve a dependency on https://brickschema.org/schema/Brick/ref (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:00,133 | root | WARNING: An ontology could not resolve a dependency on http://qudt.org/2.1/vocab/quantitykind (No row was found when one was required). Check this is loaded into BuildingMOTIF\n", + "2024-11-06 21:52:01,303 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7700 in libraries []\n", + "2024-11-06 21:52:01,306 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7698 in libraries []\n", + "2024-11-06 21:52:01,307 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7696 in libraries []\n", + "2024-11-06 21:52:01,309 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7694 in libraries []\n", + "2024-11-06 21:52:01,311 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7692 in libraries []\n", + "2024-11-06 21:52:01,313 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7616 in libraries []\n", + "2024-11-06 21:52:01,314 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7618 in libraries []\n", + "2024-11-06 21:52:01,316 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7620 in libraries []\n", + "2024-11-06 21:52:01,318 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7624 in libraries []\n", + "2024-11-06 21:52:01,319 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7614 in libraries []\n", + "2024-11-06 21:52:01,321 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7622 in libraries []\n", + "2024-11-06 21:52:01,323 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7586 in libraries []\n", + "2024-11-06 21:52:01,325 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7582 in libraries []\n", + "2024-11-06 21:52:01,326 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7578 in libraries []\n", + "2024-11-06 21:52:01,328 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7584 in libraries []\n", + "2024-11-06 21:52:01,330 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7580 in libraries []\n", + "2024-11-06 21:52:01,331 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7576 in libraries []\n", + "2024-11-06 21:52:01,334 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7633 in libraries []\n", + "2024-11-06 21:52:01,335 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7637 in libraries []\n", + "2024-11-06 21:52:01,337 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7635 in libraries []\n", + "2024-11-06 21:52:01,339 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7631 in libraries []\n", + "2024-11-06 21:52:01,341 | root | WARNING: Warning: could not find dependee n60a91bd72a7049ae82f9b6257580895ab7639 in libraries []\n", + "2024-11-06 21:52:04,716 | root | WARNING: Warning: could not find dependee urn:ashrae/g36/components/variable-speed-fan-vfd in libraries [rdflib.term.URIRef('https://brickschema.org/schema/1.4/Brick')]\n", + "2024-11-06 21:52:04,785 | root | WARNING: Warning: could not find dependee urn:ashrae/g36/components/variable-speed-fan-vfd in libraries [rdflib.term.URIRef('https://brickschema.org/schema/1.4/Brick')]\n" ] } ], "source": [ - "brick = Library.load(ontology_graph=\"../libraries/brick/Brick-full.ttl\")" + "brick = Library.load(ontology_graph=\"https://brickschema.org/schema/1.4/Brick.ttl\")\n", + "g36 = Library.load(directory=\"../libraries/ashrae/guideline36\")" ] }, { @@ -117,2966 +128,221 @@ { "cell_type": "code", "execution_count": 5, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:30:43.797457Z", - "iopub.status.busy": "2024-07-02T23:30:43.797180Z", - "iopub.status.idle": "2024-07-02T23:31:01.414212Z", - "shell.execute_reply": "2024-07-02T23:31:01.413790Z" - } - }, + "metadata": {}, "outputs": [], "source": [ - "compiled_model = small_office_model.compile([brick.get_shape_collection()])" + "compiled_model = small_office_model.compile([brick.get_shape_collection(), g36.get_shape_collection()])" ] }, { "cell_type": "code", "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# print(compiled_model.serialize(format=\"ttl\", destination=\"smallOffice_brick_compiled.ttl\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 7, "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:31:01.416395Z", - "iopub.status.busy": "2024-07-02T23:31:01.416243Z", - "iopub.status.idle": "2024-07-02T23:31:01.528618Z", - "shell.execute_reply": "2024-07-02T23:31:01.528287Z" - } + "tags": [] }, + "outputs": [], + "source": [ + "# print(compiled_model.serialize(format=\"ttl\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "[a rdfg:Graph;rdflib:storage [a rdflib:Store;rdfs:label 'Memory']].\n" + "PREFIX sh: \n", + "PREFIX rdf: \n", + "PREFIX rdfs: \n", + " SELECT ?OAT_AVG ?RAT_AVG ?MAT_AVG ?target WHERE {\n", + "?target rdf:type/rdfs:subClassOf* .\n", + "?target ?MAT_AVG .\n", + " ?MAT_AVG rdf:type/rdfs:subClassOf* .\n", + "?target ?RAT_AVG .\n", + " ?RAT_AVG rdf:type/rdfs:subClassOf* .\n", + "?target ?OAT_AVG .\n", + " ?OAT_AVG rdf:type/rdfs:subClassOf* .\n", + "\n", + "}\n" ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MAT_AVGOAT_AVGRAT_AVGtarget
0http://example.org/building/Perimeter_ZN_3-ZN-...http://example.org/building/Perimeter_ZN_3-ZN-...http://example.org/building/Perimeter_ZN_3-ZN-...http://example.org/building/Perimeter_ZN_3-ZN-...
1http://example.org/building/Perimeter_ZN_2-ZN-...http://example.org/building/Perimeter_ZN_2-ZN-...http://example.org/building/Perimeter_ZN_2-ZN-...http://example.org/building/Perimeter_ZN_2-ZN-...
2http://example.org/building/Perimeter_ZN_1-ZN-...http://example.org/building/Perimeter_ZN_1-ZN-...http://example.org/building/Perimeter_ZN_1-ZN-...http://example.org/building/Perimeter_ZN_1-ZN-...
3http://example.org/building/Perimeter_ZN_4-ZN-...http://example.org/building/Perimeter_ZN_4-ZN-...http://example.org/building/Perimeter_ZN_4-ZN-...http://example.org/building/Perimeter_ZN_4-ZN-...
4http://example.org/building/Core_ZN-ZN-PSZ-AC-...http://example.org/building/Core_ZN-ZN-PSZ-AC-...http://example.org/building/Core_ZN-ZN-PSZ-AC-...http://example.org/building/Core_ZN-ZN-PSZ-AC-...
\n", + "
" + ], + "text/plain": [ + " MAT_AVG \\\n", + "0 http://example.org/building/Perimeter_ZN_3-ZN-... \n", + "1 http://example.org/building/Perimeter_ZN_2-ZN-... \n", + "2 http://example.org/building/Perimeter_ZN_1-ZN-... \n", + "3 http://example.org/building/Perimeter_ZN_4-ZN-... \n", + "4 http://example.org/building/Core_ZN-ZN-PSZ-AC-... \n", + "\n", + " OAT_AVG \\\n", + "0 http://example.org/building/Perimeter_ZN_3-ZN-... \n", + "1 http://example.org/building/Perimeter_ZN_2-ZN-... \n", + "2 http://example.org/building/Perimeter_ZN_1-ZN-... \n", + "3 http://example.org/building/Perimeter_ZN_4-ZN-... \n", + "4 http://example.org/building/Core_ZN-ZN-PSZ-AC-... \n", + "\n", + " RAT_AVG \\\n", + "0 http://example.org/building/Perimeter_ZN_3-ZN-... \n", + "1 http://example.org/building/Perimeter_ZN_2-ZN-... \n", + "2 http://example.org/building/Perimeter_ZN_1-ZN-... \n", + "3 http://example.org/building/Perimeter_ZN_4-ZN-... \n", + "4 http://example.org/building/Core_ZN-ZN-PSZ-AC-... \n", + "\n", + " target \n", + "0 http://example.org/building/Perimeter_ZN_3-ZN-... \n", + "1 http://example.org/building/Perimeter_ZN_2-ZN-... \n", + "2 http://example.org/building/Perimeter_ZN_1-ZN-... \n", + "3 http://example.org/building/Perimeter_ZN_4-ZN-... \n", + "4 http://example.org/building/Core_ZN-ZN-PSZ-AC-... " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "print(compiled_model.serialize(format=\"ttl\", destination=\"smallOffice_brick_compiled.ttl\"))" + "compiled_model.shape_to_df(URIRef(\"urn:ashrae/g36/5.16.14/multiple-zone-vav-ahu-afdd/fc-2\")).head()" ] }, { "cell_type": "code", - "execution_count": 7, - "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:31:01.530462Z", - "iopub.status.busy": "2024-07-02T23:31:01.530329Z", - "iopub.status.idle": "2024-07-02T23:31:01.643532Z", - "shell.execute_reply": "2024-07-02T23:31:01.642765Z" - }, - "jupyter": { - "outputs_hidden": true - }, - "tags": [] - }, + "execution_count": 9, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "@prefix brick: .\n", - "@prefix owl: .\n", - "@prefix rdfs: .\n", - "\n", - " a owl:Ontology .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-HP-Htg-Coil-27-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-1spd-DX-HP-Clg-Coil-27kBtu/hr-13.0SEER_Cooling_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Fan_Fan_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER_Cooling_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Fan_Fan_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-HP-Htg-Coil-29-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-1spd-DX-HP-Clg-Coil-29kBtu/hr-13.0SEER_Cooling_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Fan_Fan_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-HP-Htg-Coil-30-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-1spd-DX-HP-Clg-Coil-30kBtu/hr-13.0SEER_Cooling_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Fan_Fan_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER_Cooling_Coil_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Electrical_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Fan_Fan_Electricity_Rate\" ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " brick:isTagOf .\n", - "\n", - " a brick:Energy_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Gas-Backup-Htg-Coil_Heating_Coil_NaturalGas_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Energy_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Gas-Backup-Htg-Coil_Heating_Coil_NaturalGas_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Energy_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Gas-Backup-Htg-Coil_Heating_Coil_NaturalGas_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Energy_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Gas-Backup-Htg-Coil_Heating_Coil_NaturalGas_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Energy_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Gas-Backup-Htg-Coil_Heating_Coil_NaturalGas_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-HP-Htg-Coil-27-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-1spd-DX-HP-Clg-Coil-27kBtu/hr-13.0SEER_Cooling_Coil_Total_Cooling_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Damper_Position_Command ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Diffuser-Zone-Air-Terminal-VAV-Damper-Position\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Gas-Backup-Htg-Coil_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Air_Flow_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Mixed-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER_Cooling_Coil_Total_Cooling_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Damper_Position_Command ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Diffuser-Zone-Air-Terminal-VAV-Damper-Position\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Gas-Backup-Htg-Coil_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Mixed-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-HP-Htg-Coil-29-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-1spd-DX-HP-Clg-Coil-29kBtu/hr-13.0SEER_Cooling_Coil_Total_Cooling_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Damper_Position_Command ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Diffuser-Zone-Air-Terminal-VAV-Damper-Position\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Gas-Backup-Htg-Coil_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Mixed-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-HP-Htg-Coil-30-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-1spd-DX-HP-Clg-Coil-30kBtu/hr-13.0SEER_Cooling_Coil_Total_Cooling_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Damper_Position_Command ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Diffuser-Zone-Air-Terminal-VAV-Damper-Position\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Gas-Backup-Htg-Coil_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Mixed-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER_Cooling_Coil_Total_Cooling_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Damper_Position_Command ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Diffuser-Zone-Air-Terminal-VAV-Damper-Position\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Thermal_Power_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Gas-Backup-Htg-Coil_Heating_Coil_Air_Heating_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Mixed-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:Mixed_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Mixed-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Dewpoint_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Outdoor-Air-Node_System_Node_Dewpoint_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Flow_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Outdoor-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Outdoor-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Flow_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Relief-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Relief-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Flow_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Inlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Inlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-Zone-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Mixed_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Mixed-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Dewpoint_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Outdoor-Air-Node_System_Node_Dewpoint_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Outdoor-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Outdoor-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Relief-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Relief-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Inlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Inlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-Zone-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Mixed_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Mixed-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Dewpoint_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Outdoor-Air-Node_System_Node_Dewpoint_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Outdoor-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Outdoor-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Relief-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Relief-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Inlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Inlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-Zone-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Mixed_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Mixed-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Dewpoint_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Outdoor-Air-Node_System_Node_Dewpoint_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Outdoor-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Outdoor-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Relief-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Relief-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Inlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Inlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-Zone-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Mixed_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Mixed-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Dewpoint_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Outdoor-Air-Node_System_Node_Dewpoint_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Outdoor-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Outdoor-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Relief-Air-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Relief-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Inlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Inlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-Zone-Air-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:Min_Position_Setpoint_Limit ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Diffuser-Zone-Air-Terminal-Minimum-Air-Flow-Fraction\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Fan,\n", - " brick:Supply_Fan ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Fan\" ;\n", - " brick:hasPoint ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Mixed_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Mixed-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Outdoor-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Relief-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Inlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Flow_Sensor,\n", - " brick:Supply_Air_Flow_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Outlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Temperature_Sensor,\n", - " brick:Supply_Air_Temperature_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Outlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Cooling_Temperature_Setpoint ;\n", - " rdfs:label \"Core_ZN-ZN-Zone-Air-Node-Cooling-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-Zone-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Min_Position_Setpoint_Limit ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Diffuser-Zone-Air-Terminal-Minimum-Air-Flow-Fraction\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Fan,\n", - " brick:Supply_Fan ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Fan\" ;\n", - " brick:hasPoint ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Mixed_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Mixed-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Outdoor-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Relief-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Inlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Flow_Sensor,\n", - " brick:Supply_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Outlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Temperature_Sensor,\n", - " brick:Supply_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Outlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Cooling_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-Zone-Air-Node-Cooling-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-Zone-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Min_Position_Setpoint_Limit ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Diffuser-Zone-Air-Terminal-Minimum-Air-Flow-Fraction\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Fan,\n", - " brick:Supply_Fan ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Fan\" ;\n", - " brick:hasPoint ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Mixed_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Mixed-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Outdoor-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Relief-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Inlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Flow_Sensor,\n", - " brick:Supply_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Outlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Temperature_Sensor,\n", - " brick:Supply_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Outlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Cooling_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-Zone-Air-Node-Cooling-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-Zone-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Min_Position_Setpoint_Limit ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Diffuser-Zone-Air-Terminal-Minimum-Air-Flow-Fraction\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Fan,\n", - " brick:Supply_Fan ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Fan\" ;\n", - " brick:hasPoint ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Mixed_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Mixed-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Outdoor-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Relief-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Inlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Flow_Sensor,\n", - " brick:Supply_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Outlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Temperature_Sensor,\n", - " brick:Supply_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Outlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Cooling_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-Zone-Air-Node-Cooling-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-Zone-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Min_Position_Setpoint_Limit ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Diffuser-Zone-Air-Terminal-Minimum-Air-Flow-Fraction\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Fan,\n", - " brick:Supply_Fan ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Fan\" ;\n", - " brick:hasPoint ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Mixed_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Mixed-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Outside_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Outdoor-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Exhaust_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Relief-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Return_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Inlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Flow_Sensor,\n", - " brick:Supply_Air_Flow_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Outlet-Node_System_Node_Mass_Flow_Rate\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Discharge_Air_Temperature_Sensor,\n", - " brick:Supply_Air_Temperature_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Outlet-Node_System_Node_Temperature\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Cooling_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-Zone-Air-Node-Cooling-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-Zone-Air-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Building ;\n", - " rdfs:label \"smallOffice\" ;\n", - " brick:hasTag ,\n", - " ;\n", - " brick:isLocationOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Core_ZN-ZN-HP-Htg-Coil-27-Clg-kBtu/hr-7.7HSPF\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Gas-Backup-Htg-Coil\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Discharge_Air_Humidity_Sensor,\n", - " brick:Supply_Air_Humidity_Sensor ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Supply-Outlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Heating_Temperature_Setpoint ;\n", - " rdfs:label \"Core_ZN-ZN-Zone-Air-Node-Heating-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Gas-Backup-Htg-Coil\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Discharge_Air_Humidity_Sensor,\n", - " brick:Supply_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Outlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Heating_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-Zone-Air-Node-Heating-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-HP-Htg-Coil-29-Clg-kBtu/hr-7.7HSPF\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Gas-Backup-Htg-Coil\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Discharge_Air_Humidity_Sensor,\n", - " brick:Supply_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Outlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Heating_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-Zone-Air-Node-Heating-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-HP-Htg-Coil-30-Clg-kBtu/hr-7.7HSPF\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Gas-Backup-Htg-Coil\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Discharge_Air_Humidity_Sensor,\n", - " brick:Supply_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Outlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Heating_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-Zone-Air-Node-Heating-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-HP-Htg-Coil-31-Clg-kBtu/hr-7.7HSPF\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Heating_Coil ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Gas-Backup-Htg-Coil\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:Discharge_Air_Humidity_Sensor,\n", - " brick:Supply_Air_Humidity_Sensor ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Outlet-Node_System_Node_Relative_Humidity\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:Zone_Air_Heating_Temperature_Setpoint ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-Zone-Air-Node-Heating-Setpoint\" ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasUnit ;\n", - " brick:isPointOf .\n", - "\n", - " a brick:HVAC_Zone ;\n", - " rdfs:label \"Core_ZN-ZN\" ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:isFedBy ;\n", - " brick:isLocationOf .\n", - "\n", - " a brick:Cooling_Coil ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-1spd-DX-HP-Clg-Coil-27kBtu/hr-13.0SEER\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:HVAC_Zone ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN\" ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:isFedBy ;\n", - " brick:isLocationOf .\n", - "\n", - " a brick:Cooling_Coil ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:HVAC_Zone ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN\" ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:isFedBy ;\n", - " brick:isLocationOf .\n", - "\n", - " a brick:Cooling_Coil ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-1spd-DX-HP-Clg-Coil-29kBtu/hr-13.0SEER\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:HVAC_Zone ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN\" ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:isFedBy ;\n", - " brick:isLocationOf .\n", - "\n", - " a brick:Cooling_Coil ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-1spd-DX-HP-Clg-Coil-30kBtu/hr-13.0SEER\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " a brick:HVAC_Zone ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN\" ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ;\n", - " brick:isFedBy ;\n", - " brick:isLocationOf .\n", - "\n", - " a brick:Cooling_Coil ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-1spd-DX-HP-Clg-Coil-31kBtu/hr-13.0SEER\" ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isPartOf .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:CAV,\n", - " brick:Constant_Air_Volume_Box ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Diffuser\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isFedBy .\n", - "\n", - " a brick:CAV,\n", - " brick:Constant_Air_Volume_Box ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Diffuser\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isFedBy .\n", - "\n", - " a brick:CAV,\n", - " brick:Constant_Air_Volume_Box ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Diffuser\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isFedBy .\n", - "\n", - " a brick:CAV,\n", - " brick:Constant_Air_Volume_Box ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Diffuser\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isFedBy .\n", - "\n", - " a brick:CAV,\n", - " brick:Constant_Air_Volume_Box ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Diffuser\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPoint ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:isFedBy .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:AHU,\n", - " brick:Air_Handler_Unit,\n", - " brick:Air_Handling_Unit ;\n", - " rdfs:label \"Core_ZN-ZN-PSZ-AC-1-Unitary-HP\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPart ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:AHU,\n", - " brick:Air_Handler_Unit,\n", - " brick:Air_Handling_Unit ;\n", - " rdfs:label \"Perimeter_ZN_1-ZN-PSZ-AC-2-Unitary-HP\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPart ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:AHU,\n", - " brick:Air_Handler_Unit,\n", - " brick:Air_Handling_Unit ;\n", - " rdfs:label \"Perimeter_ZN_2-ZN-PSZ-AC-3-Unitary-HP\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPart ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:AHU,\n", - " brick:Air_Handler_Unit,\n", - " brick:Air_Handling_Unit ;\n", - " rdfs:label \"Perimeter_ZN_3-ZN-PSZ-AC-4-Unitary-HP\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPart ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " a brick:AHU,\n", - " brick:Air_Handler_Unit,\n", - " brick:Air_Handling_Unit ;\n", - " rdfs:label \"Perimeter_ZN_4-ZN-PSZ-AC-5-Unitary-HP\" ;\n", - " brick:feeds ;\n", - " brick:hasLocation ;\n", - " brick:hasPart ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasPoint ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ;\n", - " brick:hasTag ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - " brick:isTagOf ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " .\n", - "\n", - "\n" + "PREFIX sh: \n", + "PREFIX rdf: \n", + "PREFIX rdfs: \n", + " SELECT ?OAT_AVG ?RAT_AVG ?MAT_AVG ?target WHERE {\n", + "?target rdf:type/rdfs:subClassOf* .\n", + "?target ?MAT_AVG .\n", + " ?MAT_AVG rdf:type/rdfs:subClassOf* .\n", + "?target ?RAT_AVG .\n", + " ?RAT_AVG rdf:type/rdfs:subClassOf* .\n", + "?target ?OAT_AVG .\n", + " ?OAT_AVG rdf:type/rdfs:subClassOf* .\n", + "\n", + "}\n" ] + }, + { + "data": { + "text/plain": [ + "[('http://example.org/building/Perimeter_ZN_3-ZN-PSZ-AC-4-Mixed-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_3-ZN-PSZ-AC-4-Outdoor-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_3-ZN-PSZ-AC-4-Supply-Inlet-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_3-ZN-PSZ-AC-4-Unitary-HP'),\n", + " ('http://example.org/building/Perimeter_ZN_2-ZN-PSZ-AC-3-Mixed-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_2-ZN-PSZ-AC-3-Outdoor-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_2-ZN-PSZ-AC-3-Supply-Inlet-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_2-ZN-PSZ-AC-3-Unitary-HP'),\n", + " ('http://example.org/building/Perimeter_ZN_1-ZN-PSZ-AC-2-Mixed-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_1-ZN-PSZ-AC-2-Outdoor-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_1-ZN-PSZ-AC-2-Supply-Inlet-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_1-ZN-PSZ-AC-2-Unitary-HP'),\n", + " ('http://example.org/building/Perimeter_ZN_4-ZN-PSZ-AC-5-Mixed-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_4-ZN-PSZ-AC-5-Outdoor-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_4-ZN-PSZ-AC-5-Supply-Inlet-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Perimeter_ZN_4-ZN-PSZ-AC-5-Unitary-HP'),\n", + " ('http://example.org/building/Core_ZN-ZN-PSZ-AC-1-Mixed-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Core_ZN-ZN-PSZ-AC-1-Outdoor-Air-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Core_ZN-ZN-PSZ-AC-1-Supply-Inlet-Node_System_Node_Temperature',\n", + " 'http://example.org/building/Core_ZN-ZN-PSZ-AC-1-Unitary-HP')]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "print(compiled_model.serialize(format=\"ttl\"))" + "import sqlite3\n", + "conn = sqlite3.connect(':memory:')\n", + "compiled_model.shape_to_table(URIRef(\"urn:ashrae/g36/5.16.14/multiple-zone-vav-ahu-afdd/fc-2\"), \"fc2\", conn)\n", + "conn.execute('select * from fc2').fetchall()" ] }, { @@ -3103,7 +369,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.11.10" }, "vscode": { "interpreter": { diff --git a/notebooks/Existing-model-validation-example.ipynb b/notebooks/Existing-model-validation-example.ipynb index 42f740267..fd456a1bc 100644 --- a/notebooks/Existing-model-validation-example.ipynb +++ b/notebooks/Existing-model-validation-example.ipynb @@ -413,7 +413,17 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# we will use these for compiling and validation\n", + "shape_collections = [brick.get_shape_collection(), ashrae_g36.get_shape_collection()]" + ] + }, + { + "cell_type": "code", + "execution_count": 10, "metadata": { "execution": { "iopub.execute_input": "2024-07-02T23:31:47.868930Z", @@ -428,9 +438,9 @@ "outputs": [], "source": [ "BLDG = Namespace(\"http://example.org/building/\")\n", - "medium_office_model = Model.create(BLDG)\n", - "medium_office_model.graph.parse(os.path.join('mediumOffice-validation', 'mediumOffice_brick_compiled.ttl'), format=\"ttl\")\n", - "medium_office_model.get_manifest().add_graph(manifest)" + "medium_office_model_base = Model.from_file(os.path.join('mediumOffice-validation', 'mediumOffice_brick_compiled.ttl'))\n", + "medium_office_model_base.get_manifest().add_graph(manifest)\n", + "medium_office_model = medium_office_model_base.compile(shape_collections)" ] }, { @@ -729,21 +739,14 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 14, "metadata": { - "execution": { - "iopub.execute_input": "2024-07-02T23:32:25.838283Z", - "iopub.status.busy": "2024-07-02T23:32:25.838120Z", - "iopub.status.idle": "2024-07-02T23:32:25.843676Z", - "shell.execute_reply": "2024-07-02T23:32:25.843309Z" - }, "slideshow": { "slide_type": "-" } }, "outputs": [], "source": [ - "shape_collections = [brick.get_shape_collection(), ashrae_g36.get_shape_collection()]\n", "shapes_to_test = ashrae_g36.get_shape_collection().get_shapes_of_definition_type(BMOTIF[\"Analytics_Application\"])\n", "# choose the first 2 shapes to test; running them all can take a few minutes\n", "shapes_to_test = shapes_to_test[:2]" @@ -776,8 +779,7 @@ }, "outputs": [], "source": [ - "conformance = medium_office_model.test_model_against_shapes(\n", - " shape_collections=shape_collections,\n", + "conformance = medium_office_model.validate_model_against_shapes(\n", " shapes_to_test=shapes_to_test,\n", " target_class=BRICK[\"AHU\"])\n" ] diff --git a/notebooks/GabeDemo.ipynb b/notebooks/GabeDemo.ipynb index ac99ec266..9ec00b18e 100644 --- a/notebooks/GabeDemo.ipynb +++ b/notebooks/GabeDemo.ipynb @@ -41,7 +41,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "81f0cddb-f98d-412a-85b8-a3b99b3a8c63", "metadata": { "execution": { @@ -57,7 +57,7 @@ }, "outputs": [], "source": [ - "bm = BuildingMOTIF(\"sqlite://\") # in-memory" + "bm = BuildingMOTIF(\"sqlite://\", \"topquadrant\") # in-memory" ] }, { @@ -2922,7 +2922,7 @@ "metadata": { "celltoolbar": "Slideshow", "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -2936,12 +2936,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" - }, - "vscode": { - "interpreter": { - "hash": "15fae041f31e3c236ca4e007ba84180412c78f76afbcc47bd25b3db75fd5ecba" - } + "version": "3.10.16" } }, "nbformat": 4, diff --git a/notebooks/Ingress-Tutorial-CSV.ipynb b/notebooks/Ingress-Tutorial-CSV.ipynb index 997f16d2a..100a63e21 100644 --- a/notebooks/Ingress-Tutorial-CSV.ipynb +++ b/notebooks/Ingress-Tutorial-CSV.ipynb @@ -23,7 +23,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "4ab8e1ee-ff06-4357-8c9f-5b62c898fb8a", "metadata": { "execution": { @@ -35,7 +35,7 @@ }, "outputs": [], "source": [ - "bm = BuildingMOTIF(\"sqlite://\") # in-memory" + "bm = BuildingMOTIF(\"sqlite://\", \"topquadrant\") # in-memory" ] }, { @@ -427,7 +427,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -441,7 +441,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.10.16" } }, "nbformat": 4, diff --git a/notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb b/notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb index 6b37c5b0a..696dda919 100644 --- a/notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb +++ b/notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb @@ -24,7 +24,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "4ab8e1ee-ff06-4357-8c9f-5b62c898fb8a", "metadata": { "execution": { @@ -36,7 +36,7 @@ }, "outputs": [], "source": [ - "bm = BuildingMOTIF(\"sqlite://\") # in-memory" + "bm = BuildingMOTIF(\"sqlite://\", \"topquadrant\") # in-memory" ] }, { @@ -454,7 +454,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -468,7 +468,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.10.16" } }, "nbformat": 4, diff --git a/notebooks/Ingress-Tutorial-XLSX.ipynb b/notebooks/Ingress-Tutorial-XLSX.ipynb index 53d21057e..4f49df13e 100644 --- a/notebooks/Ingress-Tutorial-XLSX.ipynb +++ b/notebooks/Ingress-Tutorial-XLSX.ipynb @@ -24,7 +24,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "4ab8e1ee-ff06-4357-8c9f-5b62c898fb8a", "metadata": { "execution": { @@ -36,7 +36,7 @@ }, "outputs": [], "source": [ - "bm = BuildingMOTIF(\"sqlite://\") # in-memory" + "bm = BuildingMOTIF(\"sqlite://\", \"topquadrant\") # in-memory" ] }, { @@ -426,7 +426,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -440,7 +440,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.10.16" } }, "nbformat": 4, diff --git a/notebooks/Template-Usage.ipynb b/notebooks/Template-Usage.ipynb index de34ca7fa..96e889e1a 100644 --- a/notebooks/Template-Usage.ipynb +++ b/notebooks/Template-Usage.ipynb @@ -56,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "dfefe386-b5a5-4933-b43e-554e09a51bd1", "metadata": { "execution": { @@ -68,7 +68,7 @@ }, "outputs": [], "source": [ - "bm = BuildingMOTIF(\"sqlite://\")\n", + "bm = BuildingMOTIF(\"sqlite://\", \"topquadrant\")\n", "bldg = Model.create(\"https://example.com\")" ] }, @@ -1041,7 +1041,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -1055,7 +1055,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.10.16" } }, "nbformat": 4, diff --git a/poetry.lock b/poetry.lock index 94e120bd9..fced16d1a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,72 +1,74 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand. [[package]] name = "accessible-pygments" -version = "0.0.4" +version = "0.0.5" description = "A collection of accessible pygments styles" optional = false -python-versions = "*" +python-versions = ">=3.9" files = [ - {file = "accessible-pygments-0.0.4.tar.gz", hash = "sha256:e7b57a9b15958e9601c7e9eb07a440c813283545a20973f2574a5f453d0e953e"}, - {file = "accessible_pygments-0.0.4-py2.py3-none-any.whl", hash = "sha256:416c6d8c1ea1c5ad8701903a20fcedf953c6e720d64f33dc47bfb2d3f2fa4e8d"}, + {file = "accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7"}, + {file = "accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872"}, ] [package.dependencies] pygments = ">=1.5" +[package.extras] +dev = ["pillow", "pkginfo (>=1.10)", "playwright", "pre-commit", "setuptools", "twine (>=5.0)"] +tests = ["hypothesis", "pytest"] + [[package]] name = "alabaster" -version = "0.7.13" -description = "A configurable sidebar-enabled Sphinx theme" +version = "0.7.16" +description = "A light, configurable Sphinx theme" optional = false -python-versions = ">=3.6" +python-versions = ">=3.9" files = [ - {file = "alabaster-0.7.13-py3-none-any.whl", hash = "sha256:1ee19aca801bbabb5ba3f5f258e4422dfa86f82f3e9cefb0859b283cdd7f62a3"}, - {file = "alabaster-0.7.13.tar.gz", hash = "sha256:a27a4a084d5e690e16e01e03ad2b2e552c61a65469419b907243193de1a84ae2"}, + {file = "alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92"}, + {file = "alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65"}, ] [[package]] name = "alembic" -version = "1.13.2" +version = "1.15.1" description = "A database migration tool for SQLAlchemy." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "alembic-1.13.2-py3-none-any.whl", hash = "sha256:6b8733129a6224a9a711e17c99b08462dbf7cc9670ba8f2e2ae9af860ceb1953"}, - {file = "alembic-1.13.2.tar.gz", hash = "sha256:1ff0ae32975f4fd96028c39ed9bb3c867fe3af956bd7bb37343b54c9fe7445ef"}, + {file = "alembic-1.15.1-py3-none-any.whl", hash = "sha256:197de710da4b3e91cf66a826a5b31b5d59a127ab41bd0fc42863e2902ce2bbbe"}, + {file = "alembic-1.15.1.tar.gz", hash = "sha256:e1a1c738577bca1f27e68728c910cd389b9a92152ff91d902da649c192e30c49"}, ] [package.dependencies] -importlib-metadata = {version = "*", markers = "python_version < \"3.9\""} -importlib-resources = {version = "*", markers = "python_version < \"3.9\""} Mako = "*" -SQLAlchemy = ">=1.3.0" -typing-extensions = ">=4" +SQLAlchemy = ">=1.4.0" +typing-extensions = ">=4.12" [package.extras] -tz = ["backports.zoneinfo"] +tz = ["tzdata"] [[package]] name = "anyio" -version = "4.4.0" +version = "4.8.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7"}, - {file = "anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94"}, + {file = "anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a"}, + {file = "anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a"}, ] [package.dependencies] exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} +typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""} [package.extras] -doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (>=0.23)"] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"] +trio = ["trio (>=0.26.1)"] [[package]] name = "appnope" @@ -157,21 +159,18 @@ test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock [[package]] name = "asttokens" -version = "2.4.1" +version = "3.0.0" description = "Annotate AST trees with source code positions" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, - {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, + {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"}, + {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"}, ] -[package.dependencies] -six = ">=1.12.0" - [package.extras] -astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] -test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] +astroid = ["astroid (>=2,<4)"] +test = ["astroid (>=2,<4)", "pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "async-lru" @@ -189,39 +188,36 @@ typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} [[package]] name = "attrs" -version = "24.2.0" +version = "25.1.0" description = "Classes Without Boilerplate" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, + {file = "attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a"}, + {file = "attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e"}, ] [package.extras] benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "babel" -version = "2.16.0" +version = "2.17.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" files = [ - {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, - {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, + {file = "babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2"}, + {file = "babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d"}, ] -[package.dependencies] -pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""} - [package.extras] -dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] +dev = ["backports.zoneinfo", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata"] [[package]] name = "bac0" @@ -238,41 +234,30 @@ files = [ bacpypes = "*" colorama = "*" -[[package]] -name = "backcall" -version = "0.2.0" -description = "Specifications for callback functions passed in to an API" -optional = false -python-versions = "*" -files = [ - {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, - {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, -] - [[package]] name = "bacpypes" -version = "0.18.7" +version = "0.19.0" description = "BACnet Communications Library" optional = false python-versions = "*" files = [ - {file = "bacpypes-0.18.7-py2-none-any.whl", hash = "sha256:7c6a68530a6c9f659374027a29998546d608c30496256d82c9f77b9dc1e89736"}, - {file = "bacpypes-0.18.7-py3-none-any.whl", hash = "sha256:6818108d85178b197bed6db793dbeb63da59406754774d6cb086b49603c2fb5c"}, + {file = "bacpypes-0.19.0-py3-none-any.whl", hash = "sha256:317fbe440474845978dab134f8aefb5f45a41a13926cbdf87b9b8afe6e79131b"}, ] [[package]] name = "beautifulsoup4" -version = "4.12.3" +version = "4.13.3" description = "Screen-scraping library" optional = false -python-versions = ">=3.6.0" +python-versions = ">=3.7.0" files = [ - {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, - {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, + {file = "beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16"}, + {file = "beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b"}, ] [package.dependencies] soupsieve = ">1.2" +typing-extensions = ">=4.0.0" [package.extras] cchardet = ["cchardet"] @@ -308,7 +293,6 @@ mypy-extensions = ">=0.4.3" pathspec = ">=0.9.0" platformdirs = ">=2" tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} -typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -318,42 +302,42 @@ uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "bleach" -version = "6.1.0" +version = "6.2.0" description = "An easy safelist-based HTML-sanitizing tool." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"}, - {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"}, + {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, + {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, ] [package.dependencies] -six = ">=1.9.0" +tinycss2 = {version = ">=1.1.0,<1.5", optional = true, markers = "extra == \"css\""} webencodings = "*" [package.extras] -css = ["tinycss2 (>=1.1.0,<1.3)"] +css = ["tinycss2 (>=1.1.0,<1.5)"] [[package]] name = "blinker" -version = "1.8.2" +version = "1.9.0" description = "Fast, simple object-to-object and broadcast signaling" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01"}, - {file = "blinker-1.8.2.tar.gz", hash = "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83"}, + {file = "blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc"}, + {file = "blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf"}, ] [[package]] name = "brick-tq-shacl" -version = "0.3.3a3" +version = "0.3.4a2" description = "Wraps topquadrant's SHACL implementation in a simple Python wrapper" optional = true python-versions = "<4.0,>=3.8.1" files = [ - {file = "brick_tq_shacl-0.3.3a3-py3-none-any.whl", hash = "sha256:7b627c8a42096ea82f08059b83f5377cc55a15af98c3c4963b8b83f29baa5fc7"}, - {file = "brick_tq_shacl-0.3.3a3.tar.gz", hash = "sha256:704c55a91fbaab63d52cfa1aa4948df3639df8da17ad4dd5247a7b3e00b941e7"}, + {file = "brick_tq_shacl-0.3.4a2-py3-none-any.whl", hash = "sha256:ac43253e0a56f6fd27c98e48703be6574a413e387c66f90d25998d30a1f74bf5"}, + {file = "brick_tq_shacl-0.3.4a2.tar.gz", hash = "sha256:af8f0c5434bf444f2fab49c07c60a8cb27eb3a2b0ad5aa0d0e9e366c69dcef59"}, ] [package.dependencies] @@ -361,89 +345,89 @@ rdflib = ">=7.0,<8.0" [[package]] name = "certifi" -version = "2024.8.30" +version = "2025.1.31" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, + {file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"}, + {file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"}, ] [[package]] name = "cffi" -version = "1.17.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, - {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, - {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, - {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, - {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, - {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, - {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, - {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, - {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, - {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, - {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, - {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, - {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, - {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, - {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, - {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, - {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, - {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, - {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, - {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, - {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, - {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, - {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, - {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, - {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, - {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, - {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, - {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -462,112 +446,114 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.1" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.7" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"}, + {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"}, + {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"}, ] [[package]] name = "click" -version = "8.1.7" +version = "8.1.8" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, - {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, + {file = "click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2"}, + {file = "click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"}, ] [package.dependencies] @@ -601,85 +587,149 @@ traitlets = ">=4" [package.extras] test = ["pytest"] +[[package]] +name = "contourpy" +version = "1.3.1" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.10" +files = [ + {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595"}, + {file = "contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697"}, + {file = "contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f"}, + {file = "contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375"}, + {file = "contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d"}, + {file = "contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e"}, + {file = "contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1"}, + {file = "contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82"}, + {file = "contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53"}, + {file = "contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699"}, +] + +[package.dependencies] +numpy = ">=1.23" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.11.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"] + [[package]] name = "coverage" -version = "7.6.1" +version = "7.6.12" description = "Code coverage measurement for Python" optional = false -python-versions = ">=3.8" -files = [ - {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, - {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, - {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, - {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, - {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, - {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, - {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, - {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, - {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, - {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, - {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, - {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, - {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, - {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, - {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, - {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, - {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, - {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, - {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, - {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, - {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, - {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, - {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, - {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, - {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, - {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, - {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, - {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, - {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, - {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, +python-versions = ">=3.9" +files = [ + {file = "coverage-7.6.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:704c8c8c6ce6569286ae9622e534b4f5b9759b6f2cd643f1c1a61f666d534fe8"}, + {file = "coverage-7.6.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ad7525bf0241e5502168ae9c643a2f6c219fa0a283001cee4cf23a9b7da75879"}, + {file = "coverage-7.6.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06097c7abfa611c91edb9e6920264e5be1d6ceb374efb4986f38b09eed4cb2fe"}, + {file = "coverage-7.6.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:220fa6c0ad7d9caef57f2c8771918324563ef0d8272c94974717c3909664e674"}, + {file = "coverage-7.6.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3688b99604a24492bcfe1c106278c45586eb819bf66a654d8a9a1433022fb2eb"}, + {file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d1a987778b9c71da2fc8948e6f2656da6ef68f59298b7e9786849634c35d2c3c"}, + {file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:cec6b9ce3bd2b7853d4a4563801292bfee40b030c05a3d29555fd2a8ee9bd68c"}, + {file = "coverage-7.6.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ace9048de91293e467b44bce0f0381345078389814ff6e18dbac8fdbf896360e"}, + {file = "coverage-7.6.12-cp310-cp310-win32.whl", hash = "sha256:ea31689f05043d520113e0552f039603c4dd71fa4c287b64cb3606140c66f425"}, + {file = "coverage-7.6.12-cp310-cp310-win_amd64.whl", hash = "sha256:676f92141e3c5492d2a1596d52287d0d963df21bf5e55c8b03075a60e1ddf8aa"}, + {file = "coverage-7.6.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e18aafdfb3e9ec0d261c942d35bd7c28d031c5855dadb491d2723ba54f4c3015"}, + {file = "coverage-7.6.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66fe626fd7aa5982cdebad23e49e78ef7dbb3e3c2a5960a2b53632f1f703ea45"}, + {file = "coverage-7.6.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ef01d70198431719af0b1f5dcbefc557d44a190e749004042927b2a3fed0702"}, + {file = "coverage-7.6.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e92ae5a289a4bc4c0aae710c0948d3c7892e20fd3588224ebe242039573bf0"}, + {file = "coverage-7.6.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e695df2c58ce526eeab11a2e915448d3eb76f75dffe338ea613c1201b33bab2f"}, + {file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d74c08e9aaef995f8c4ef6d202dbd219c318450fe2a76da624f2ebb9c8ec5d9f"}, + {file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e995b3b76ccedc27fe4f477b349b7d64597e53a43fc2961db9d3fbace085d69d"}, + {file = "coverage-7.6.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b1f097878d74fe51e1ddd1be62d8e3682748875b461232cf4b52ddc6e6db0bba"}, + {file = "coverage-7.6.12-cp311-cp311-win32.whl", hash = "sha256:1f7ffa05da41754e20512202c866d0ebfc440bba3b0ed15133070e20bf5aeb5f"}, + {file = "coverage-7.6.12-cp311-cp311-win_amd64.whl", hash = "sha256:e216c5c45f89ef8971373fd1c5d8d1164b81f7f5f06bbf23c37e7908d19e8558"}, + {file = "coverage-7.6.12-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b172f8e030e8ef247b3104902cc671e20df80163b60a203653150d2fc204d1ad"}, + {file = "coverage-7.6.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:641dfe0ab73deb7069fb972d4d9725bf11c239c309ce694dd50b1473c0f641c3"}, + {file = "coverage-7.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e549f54ac5f301e8e04c569dfdb907f7be71b06b88b5063ce9d6953d2d58574"}, + {file = "coverage-7.6.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:959244a17184515f8c52dcb65fb662808767c0bd233c1d8a166e7cf74c9ea985"}, + {file = "coverage-7.6.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bda1c5f347550c359f841d6614fb8ca42ae5cb0b74d39f8a1e204815ebe25750"}, + {file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1ceeb90c3eda1f2d8c4c578c14167dbd8c674ecd7d38e45647543f19839dd6ea"}, + {file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f16f44025c06792e0fb09571ae454bcc7a3ec75eeb3c36b025eccf501b1a4c3"}, + {file = "coverage-7.6.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b076e625396e787448d27a411aefff867db2bffac8ed04e8f7056b07024eed5a"}, + {file = "coverage-7.6.12-cp312-cp312-win32.whl", hash = "sha256:00b2086892cf06c7c2d74983c9595dc511acca00665480b3ddff749ec4fb2a95"}, + {file = "coverage-7.6.12-cp312-cp312-win_amd64.whl", hash = "sha256:7ae6eabf519bc7871ce117fb18bf14e0e343eeb96c377667e3e5dd12095e0288"}, + {file = "coverage-7.6.12-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:488c27b3db0ebee97a830e6b5a3ea930c4a6e2c07f27a5e67e1b3532e76b9ef1"}, + {file = "coverage-7.6.12-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d1095bbee1851269f79fd8e0c9b5544e4c00c0c24965e66d8cba2eb5bb535fd"}, + {file = "coverage-7.6.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0533adc29adf6a69c1baa88c3d7dbcaadcffa21afbed3ca7a225a440e4744bf9"}, + {file = "coverage-7.6.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53c56358d470fa507a2b6e67a68fd002364d23c83741dbc4c2e0680d80ca227e"}, + {file = "coverage-7.6.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64cbb1a3027c79ca6310bf101014614f6e6e18c226474606cf725238cf5bc2d4"}, + {file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:79cac3390bfa9836bb795be377395f28410811c9066bc4eefd8015258a7578c6"}, + {file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9b148068e881faa26d878ff63e79650e208e95cf1c22bd3f77c3ca7b1d9821a3"}, + {file = "coverage-7.6.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8bec2ac5da793c2685ce5319ca9bcf4eee683b8a1679051f8e6ec04c4f2fd7dc"}, + {file = "coverage-7.6.12-cp313-cp313-win32.whl", hash = "sha256:200e10beb6ddd7c3ded322a4186313d5ca9e63e33d8fab4faa67ef46d3460af3"}, + {file = "coverage-7.6.12-cp313-cp313-win_amd64.whl", hash = "sha256:2b996819ced9f7dbb812c701485d58f261bef08f9b85304d41219b1496b591ef"}, + {file = "coverage-7.6.12-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:299cf973a7abff87a30609879c10df0b3bfc33d021e1adabc29138a48888841e"}, + {file = "coverage-7.6.12-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4b467a8c56974bf06e543e69ad803c6865249d7a5ccf6980457ed2bc50312703"}, + {file = "coverage-7.6.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2458f275944db8129f95d91aee32c828a408481ecde3b30af31d552c2ce284a0"}, + {file = "coverage-7.6.12-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a9d8be07fb0832636a0f72b80d2a652fe665e80e720301fb22b191c3434d924"}, + {file = "coverage-7.6.12-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14d47376a4f445e9743f6c83291e60adb1b127607a3618e3185bbc8091f0467b"}, + {file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b95574d06aa9d2bd6e5cc35a5bbe35696342c96760b69dc4287dbd5abd4ad51d"}, + {file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:ecea0c38c9079570163d663c0433a9af4094a60aafdca491c6a3d248c7432827"}, + {file = "coverage-7.6.12-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2251fabcfee0a55a8578a9d29cecfee5f2de02f11530e7d5c5a05859aa85aee9"}, + {file = "coverage-7.6.12-cp313-cp313t-win32.whl", hash = "sha256:eb5507795caabd9b2ae3f1adc95f67b1104971c22c624bb354232d65c4fc90b3"}, + {file = "coverage-7.6.12-cp313-cp313t-win_amd64.whl", hash = "sha256:f60a297c3987c6c02ffb29effc70eadcbb412fe76947d394a1091a3615948e2f"}, + {file = "coverage-7.6.12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e7575ab65ca8399c8c4f9a7d61bbd2d204c8b8e447aab9d355682205c9dd948d"}, + {file = "coverage-7.6.12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8161d9fbc7e9fe2326de89cd0abb9f3599bccc1287db0aba285cb68d204ce929"}, + {file = "coverage-7.6.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a1e465f398c713f1b212400b4e79a09829cd42aebd360362cd89c5bdc44eb87"}, + {file = "coverage-7.6.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f25d8b92a4e31ff1bd873654ec367ae811b3a943583e05432ea29264782dc32c"}, + {file = "coverage-7.6.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a936309a65cc5ca80fa9f20a442ff9e2d06927ec9a4f54bcba9c14c066323f2"}, + {file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:aa6f302a3a0b5f240ee201297fff0bbfe2fa0d415a94aeb257d8b461032389bd"}, + {file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f973643ef532d4f9be71dd88cf7588936685fdb576d93a79fe9f65bc337d9d73"}, + {file = "coverage-7.6.12-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:78f5243bb6b1060aed6213d5107744c19f9571ec76d54c99cc15938eb69e0e86"}, + {file = "coverage-7.6.12-cp39-cp39-win32.whl", hash = "sha256:69e62c5034291c845fc4df7f8155e8544178b6c774f97a99e2734b05eb5bed31"}, + {file = "coverage-7.6.12-cp39-cp39-win_amd64.whl", hash = "sha256:b01a840ecc25dce235ae4c1b6a0daefb2a203dba0e6e980637ee9c2f6ee0df57"}, + {file = "coverage-7.6.12-pp39.pp310-none-any.whl", hash = "sha256:7e39e845c4d764208e7b8f6a21c541ade741e2c41afabdfa1caa28687a3c98cf"}, + {file = "coverage-7.6.12-py3-none-any.whl", hash = "sha256:eb8668cfbc279a536c633137deeb9435d2962caec279c3f8cf8b91fff6ff8953"}, + {file = "coverage-7.6.12.tar.gz", hash = "sha256:48cfc4641d95d34766ad41d9573cc0f22a48aa88d22657a1fe01dca0dbae4de2"}, ] [package.dependencies] @@ -688,46 +738,65 @@ tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.1 [package.extras] toml = ["tomli"] +[[package]] +name = "cycler" +version = "0.12.1" +description = "Composable style cycles" +optional = false +python-versions = ">=3.8" +files = [ + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, +] + +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + [[package]] name = "debugpy" -version = "1.8.5" +version = "1.8.13" description = "An implementation of the Debug Adapter Protocol for Python" optional = false python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.5-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7e4d594367d6407a120b76bdaa03886e9eb652c05ba7f87e37418426ad2079f7"}, - {file = "debugpy-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4413b7a3ede757dc33a273a17d685ea2b0c09dbd312cc03f5534a0fd4d40750a"}, - {file = "debugpy-1.8.5-cp310-cp310-win32.whl", hash = "sha256:dd3811bd63632bb25eda6bd73bea8e0521794cda02be41fa3160eb26fc29e7ed"}, - {file = "debugpy-1.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:b78c1250441ce893cb5035dd6f5fc12db968cc07f91cc06996b2087f7cefdd8e"}, - {file = "debugpy-1.8.5-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:606bccba19f7188b6ea9579c8a4f5a5364ecd0bf5a0659c8a5d0e10dcee3032a"}, - {file = "debugpy-1.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db9fb642938a7a609a6c865c32ecd0d795d56c1aaa7a7a5722d77855d5e77f2b"}, - {file = "debugpy-1.8.5-cp311-cp311-win32.whl", hash = "sha256:4fbb3b39ae1aa3e5ad578f37a48a7a303dad9a3d018d369bc9ec629c1cfa7408"}, - {file = "debugpy-1.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:345d6a0206e81eb68b1493ce2fbffd57c3088e2ce4b46592077a943d2b968ca3"}, - {file = "debugpy-1.8.5-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:5b5c770977c8ec6c40c60d6f58cacc7f7fe5a45960363d6974ddb9b62dbee156"}, - {file = "debugpy-1.8.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a65b00b7cdd2ee0c2cf4c7335fef31e15f1b7056c7fdbce9e90193e1a8c8cb"}, - {file = "debugpy-1.8.5-cp312-cp312-win32.whl", hash = "sha256:c9f7c15ea1da18d2fcc2709e9f3d6de98b69a5b0fff1807fb80bc55f906691f7"}, - {file = "debugpy-1.8.5-cp312-cp312-win_amd64.whl", hash = "sha256:28ced650c974aaf179231668a293ecd5c63c0a671ae6d56b8795ecc5d2f48d3c"}, - {file = "debugpy-1.8.5-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:3df6692351172a42af7558daa5019651f898fc67450bf091335aa8a18fbf6f3a"}, - {file = "debugpy-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd04a73eb2769eb0bfe43f5bfde1215c5923d6924b9b90f94d15f207a402226"}, - {file = "debugpy-1.8.5-cp38-cp38-win32.whl", hash = "sha256:8f913ee8e9fcf9d38a751f56e6de12a297ae7832749d35de26d960f14280750a"}, - {file = "debugpy-1.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:a697beca97dad3780b89a7fb525d5e79f33821a8bc0c06faf1f1289e549743cf"}, - {file = "debugpy-1.8.5-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0a1029a2869d01cb777216af8c53cda0476875ef02a2b6ff8b2f2c9a4b04176c"}, - {file = "debugpy-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84c276489e141ed0b93b0af648eef891546143d6a48f610945416453a8ad406"}, - {file = "debugpy-1.8.5-cp39-cp39-win32.whl", hash = "sha256:ad84b7cde7fd96cf6eea34ff6c4a1b7887e0fe2ea46e099e53234856f9d99a34"}, - {file = "debugpy-1.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:7b0fe36ed9d26cb6836b0a51453653f8f2e347ba7348f2bbfe76bfeb670bfb1c"}, - {file = "debugpy-1.8.5-py2.py3-none-any.whl", hash = "sha256:55919dce65b471eff25901acf82d328bbd5b833526b6c1364bd5133754777a44"}, - {file = "debugpy-1.8.5.zip", hash = "sha256:b2112cfeb34b4507399d298fe7023a16656fc553ed5246536060ca7bd0e668d0"}, + {file = "debugpy-1.8.13-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:06859f68e817966723ffe046b896b1bd75c665996a77313370336ee9e1de3e90"}, + {file = "debugpy-1.8.13-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb56c2db69fb8df3168bc857d7b7d2494fed295dfdbde9a45f27b4b152f37520"}, + {file = "debugpy-1.8.13-cp310-cp310-win32.whl", hash = "sha256:46abe0b821cad751fc1fb9f860fb2e68d75e2c5d360986d0136cd1db8cad4428"}, + {file = "debugpy-1.8.13-cp310-cp310-win_amd64.whl", hash = "sha256:dc7b77f5d32674686a5f06955e4b18c0e41fb5a605f5b33cf225790f114cfeec"}, + {file = "debugpy-1.8.13-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:eee02b2ed52a563126c97bf04194af48f2fe1f68bb522a312b05935798e922ff"}, + {file = "debugpy-1.8.13-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4caca674206e97c85c034c1efab4483f33971d4e02e73081265ecb612af65377"}, + {file = "debugpy-1.8.13-cp311-cp311-win32.whl", hash = "sha256:7d9a05efc6973b5aaf076d779cf3a6bbb1199e059a17738a2aa9d27a53bcc888"}, + {file = "debugpy-1.8.13-cp311-cp311-win_amd64.whl", hash = "sha256:62f9b4a861c256f37e163ada8cf5a81f4c8d5148fc17ee31fb46813bd658cdcc"}, + {file = "debugpy-1.8.13-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:2b8de94c5c78aa0d0ed79023eb27c7c56a64c68217d881bee2ffbcb13951d0c1"}, + {file = "debugpy-1.8.13-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887d54276cefbe7290a754424b077e41efa405a3e07122d8897de54709dbe522"}, + {file = "debugpy-1.8.13-cp312-cp312-win32.whl", hash = "sha256:3872ce5453b17837ef47fb9f3edc25085ff998ce63543f45ba7af41e7f7d370f"}, + {file = "debugpy-1.8.13-cp312-cp312-win_amd64.whl", hash = "sha256:63ca7670563c320503fea26ac688988d9d6b9c6a12abc8a8cf2e7dd8e5f6b6ea"}, + {file = "debugpy-1.8.13-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:31abc9618be4edad0b3e3a85277bc9ab51a2d9f708ead0d99ffb5bb750e18503"}, + {file = "debugpy-1.8.13-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0bd87557f97bced5513a74088af0b84982b6ccb2e254b9312e29e8a5c4270eb"}, + {file = "debugpy-1.8.13-cp313-cp313-win32.whl", hash = "sha256:5268ae7fdca75f526d04465931cb0bd24577477ff50e8bb03dab90983f4ebd02"}, + {file = "debugpy-1.8.13-cp313-cp313-win_amd64.whl", hash = "sha256:79ce4ed40966c4c1631d0131606b055a5a2f8e430e3f7bf8fd3744b09943e8e8"}, + {file = "debugpy-1.8.13-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:acf39a6e98630959763f9669feddee540745dfc45ad28dbc9bd1f9cd60639391"}, + {file = "debugpy-1.8.13-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:924464d87e7d905eb0d79fb70846558910e906d9ee309b60c4fe597a2e802590"}, + {file = "debugpy-1.8.13-cp38-cp38-win32.whl", hash = "sha256:3dae443739c6b604802da9f3e09b0f45ddf1cf23c99161f3a1a8039f61a8bb89"}, + {file = "debugpy-1.8.13-cp38-cp38-win_amd64.whl", hash = "sha256:ed93c3155fc1f888ab2b43626182174e457fc31b7781cd1845629303790b8ad1"}, + {file = "debugpy-1.8.13-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:6fab771639332bd8ceb769aacf454a30d14d7a964f2012bf9c4e04c60f16e85b"}, + {file = "debugpy-1.8.13-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32b6857f8263a969ce2ca098f228e5cc0604d277447ec05911a8c46cf3e7e307"}, + {file = "debugpy-1.8.13-cp39-cp39-win32.whl", hash = "sha256:f14d2c4efa1809da125ca62df41050d9c7cd9cb9e380a2685d1e453c4d450ccb"}, + {file = "debugpy-1.8.13-cp39-cp39-win_amd64.whl", hash = "sha256:ea869fe405880327497e6945c09365922c79d2a1eed4c3ae04d77ac7ae34b2b5"}, + {file = "debugpy-1.8.13-py2.py3-none-any.whl", hash = "sha256:d4ba115cdd0e3a70942bd562adba9ec8c651fe69ddde2298a1be296fc331906f"}, + {file = "debugpy-1.8.13.tar.gz", hash = "sha256:837e7bef95bdefba426ae38b9a94821ebdc5bea55627879cd48165c90b9e50ce"}, ] [[package]] name = "decorator" -version = "5.1.1" +version = "5.2.1" description = "Decorators for Humans" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, - {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, + {file = "decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a"}, + {file = "decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360"}, ] [[package]] @@ -743,13 +812,13 @@ files = [ [[package]] name = "distlib" -version = "0.3.8" +version = "0.3.9" description = "Distribution utilities" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, - {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, + {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"}, + {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"}, ] [[package]] @@ -765,13 +834,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -790,13 +859,13 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "2.1.0" +version = "2.2.0" description = "Get the currently executing AST node of a frame, and other information" optional = false python-versions = ">=3.8" files = [ - {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, - {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, + {file = "executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa"}, + {file = "executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755"}, ] [package.extras] @@ -804,13 +873,13 @@ tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipyth [[package]] name = "fastjsonschema" -version = "2.20.0" +version = "2.21.1" description = "Fastest Python implementation of JSON schema" optional = false python-versions = "*" files = [ - {file = "fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a"}, - {file = "fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23"}, + {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"}, + {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"}, ] [package.extras] @@ -818,35 +887,35 @@ devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benc [[package]] name = "filelock" -version = "3.15.4" +version = "3.17.0" description = "A platform independent file lock." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7"}, - {file = "filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb"}, + {file = "filelock-3.17.0-py3-none-any.whl", hash = "sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338"}, + {file = "filelock-3.17.0.tar.gz", hash = "sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-asyncio (>=0.21)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)", "virtualenv (>=20.26.2)"] -typing = ["typing-extensions (>=4.8)"] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"] +typing = ["typing-extensions (>=4.12.2)"] [[package]] name = "flake8" -version = "5.0.4" +version = "7.1.2" description = "the modular source code checker: pep8 pyflakes and co" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.8.1" files = [ - {file = "flake8-5.0.4-py2.py3-none-any.whl", hash = "sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248"}, - {file = "flake8-5.0.4.tar.gz", hash = "sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db"}, + {file = "flake8-7.1.2-py2.py3-none-any.whl", hash = "sha256:1cbc62e65536f65e6d754dfe6f1bada7f5cf392d6f5db3c2b85892466c3e7c1a"}, + {file = "flake8-7.1.2.tar.gz", hash = "sha256:c586ffd0b41540951ae41af572e6790dbd49fc12b3aa2541685d253d9bd504bd"}, ] [package.dependencies] mccabe = ">=0.7.0,<0.8.0" -pycodestyle = ">=2.9.0,<2.10.0" -pyflakes = ">=2.5.0,<2.6.0" +pycodestyle = ">=2.12.0,<2.13.0" +pyflakes = ">=3.2.0,<3.3.0" [[package]] name = "flask" @@ -862,7 +931,6 @@ files = [ [package.dependencies] blinker = ">=1.6.2" click = ">=8.1.3" -importlib-metadata = {version = ">=3.6.0", markers = "python_version < \"3.10\""} itsdangerous = ">=2.1.2" Jinja2 = ">=3.1.2" Werkzeug = ">=2.3.7" @@ -885,6 +953,79 @@ files = [ [package.dependencies] Flask = ">=2.0.0" +[[package]] +name = "fonttools" +version = "4.56.0" +description = "Tools to manipulate font files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fonttools-4.56.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:331954d002dbf5e704c7f3756028e21db07097c19722569983ba4d74df014000"}, + {file = "fonttools-4.56.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8d1613abd5af2f93c05867b3a3759a56e8bf97eb79b1da76b2bc10892f96ff16"}, + {file = "fonttools-4.56.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:705837eae384fe21cee5e5746fd4f4b2f06f87544fa60f60740007e0aa600311"}, + {file = "fonttools-4.56.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc871904a53a9d4d908673c6faa15689874af1c7c5ac403a8e12d967ebd0c0dc"}, + {file = "fonttools-4.56.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:38b947de71748bab150259ee05a775e8a0635891568e9fdb3cdd7d0e0004e62f"}, + {file = "fonttools-4.56.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:86b2a1013ef7a64d2e94606632683f07712045ed86d937c11ef4dde97319c086"}, + {file = "fonttools-4.56.0-cp310-cp310-win32.whl", hash = "sha256:133bedb9a5c6376ad43e6518b7e2cd2f866a05b1998f14842631d5feb36b5786"}, + {file = "fonttools-4.56.0-cp310-cp310-win_amd64.whl", hash = "sha256:17f39313b649037f6c800209984a11fc256a6137cbe5487091c6c7187cae4685"}, + {file = "fonttools-4.56.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7ef04bc7827adb7532be3d14462390dd71287644516af3f1e67f1e6ff9c6d6df"}, + {file = "fonttools-4.56.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ffda9b8cd9cb8b301cae2602ec62375b59e2e2108a117746f12215145e3f786c"}, + {file = "fonttools-4.56.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e993e8db36306cc3f1734edc8ea67906c55f98683d6fd34c3fc5593fdbba4c"}, + {file = "fonttools-4.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:003548eadd674175510773f73fb2060bb46adb77c94854af3e0cc5bc70260049"}, + {file = "fonttools-4.56.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd9825822e7bb243f285013e653f6741954d8147427aaa0324a862cdbf4cbf62"}, + {file = "fonttools-4.56.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b23d30a2c0b992fb1c4f8ac9bfde44b5586d23457759b6cf9a787f1a35179ee0"}, + {file = "fonttools-4.56.0-cp311-cp311-win32.whl", hash = "sha256:47b5e4680002ae1756d3ae3b6114e20aaee6cc5c69d1e5911f5ffffd3ee46c6b"}, + {file = "fonttools-4.56.0-cp311-cp311-win_amd64.whl", hash = "sha256:14a3e3e6b211660db54ca1ef7006401e4a694e53ffd4553ab9bc87ead01d0f05"}, + {file = "fonttools-4.56.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6f195c14c01bd057bc9b4f70756b510e009c83c5ea67b25ced3e2c38e6ee6e9"}, + {file = "fonttools-4.56.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fa760e5fe8b50cbc2d71884a1eff2ed2b95a005f02dda2fa431560db0ddd927f"}, + {file = "fonttools-4.56.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d54a45d30251f1d729e69e5b675f9a08b7da413391a1227781e2a297fa37f6d2"}, + {file = "fonttools-4.56.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:661a8995d11e6e4914a44ca7d52d1286e2d9b154f685a4d1f69add8418961563"}, + {file = "fonttools-4.56.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9d94449ad0a5f2a8bf5d2f8d71d65088aee48adbe45f3c5f8e00e3ad861ed81a"}, + {file = "fonttools-4.56.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f59746f7953f69cc3290ce2f971ab01056e55ddd0fb8b792c31a8acd7fee2d28"}, + {file = "fonttools-4.56.0-cp312-cp312-win32.whl", hash = "sha256:bce60f9a977c9d3d51de475af3f3581d9b36952e1f8fc19a1f2254f1dda7ce9c"}, + {file = "fonttools-4.56.0-cp312-cp312-win_amd64.whl", hash = "sha256:300c310bb725b2bdb4f5fc7e148e190bd69f01925c7ab437b9c0ca3e1c7cd9ba"}, + {file = "fonttools-4.56.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f20e2c0dfab82983a90f3d00703ac0960412036153e5023eed2b4641d7d5e692"}, + {file = "fonttools-4.56.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f36a0868f47b7566237640c026c65a86d09a3d9ca5df1cd039e30a1da73098a0"}, + {file = "fonttools-4.56.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62b4c6802fa28e14dba010e75190e0e6228513573f1eeae57b11aa1a39b7e5b1"}, + {file = "fonttools-4.56.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a05d1f07eb0a7d755fbe01fee1fd255c3a4d3730130cf1bfefb682d18fd2fcea"}, + {file = "fonttools-4.56.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0073b62c3438cf0058488c002ea90489e8801d3a7af5ce5f7c05c105bee815c3"}, + {file = "fonttools-4.56.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2cad98c94833465bcf28f51c248aaf07ca022efc6a3eba750ad9c1e0256d278"}, + {file = "fonttools-4.56.0-cp313-cp313-win32.whl", hash = "sha256:d0cb73ccf7f6d7ca8d0bc7ea8ac0a5b84969a41c56ac3ac3422a24df2680546f"}, + {file = "fonttools-4.56.0-cp313-cp313-win_amd64.whl", hash = "sha256:62cc1253827d1e500fde9dbe981219fea4eb000fd63402283472d38e7d8aa1c6"}, + {file = "fonttools-4.56.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3fd3fccb7b9adaaecfa79ad51b759f2123e1aba97f857936ce044d4f029abd71"}, + {file = "fonttools-4.56.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:193b86e9f769320bc98ffdb42accafb5d0c8c49bd62884f1c0702bc598b3f0a2"}, + {file = "fonttools-4.56.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e81c1cc80c1d8bf071356cc3e0e25071fbba1c75afc48d41b26048980b3c771"}, + {file = "fonttools-4.56.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9270505a19361e81eecdbc2c251ad1e1a9a9c2ad75fa022ccdee533f55535dc"}, + {file = "fonttools-4.56.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:53f5e9767978a4daf46f28e09dbeb7d010319924ae622f7b56174b777258e5ba"}, + {file = "fonttools-4.56.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:9da650cb29bc098b8cfd15ef09009c914b35c7986c8fa9f08b51108b7bc393b4"}, + {file = "fonttools-4.56.0-cp38-cp38-win32.whl", hash = "sha256:965d0209e6dbdb9416100123b6709cb13f5232e2d52d17ed37f9df0cc31e2b35"}, + {file = "fonttools-4.56.0-cp38-cp38-win_amd64.whl", hash = "sha256:654ac4583e2d7c62aebc6fc6a4c6736f078f50300e18aa105d87ce8925cfac31"}, + {file = "fonttools-4.56.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca7962e8e5fc047cc4e59389959843aafbf7445b6c08c20d883e60ced46370a5"}, + {file = "fonttools-4.56.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1af375734018951c31c0737d04a9d5fd0a353a0253db5fbed2ccd44eac62d8c"}, + {file = "fonttools-4.56.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:442ad4122468d0e47d83bc59d0e91b474593a8c813839e1872e47c7a0cb53b10"}, + {file = "fonttools-4.56.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cf4f8d2a30b454ac682e12c61831dcb174950c406011418e739de592bbf8f76"}, + {file = "fonttools-4.56.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:96a4271f63a615bcb902b9f56de00ea225d6896052c49f20d0c91e9f43529a29"}, + {file = "fonttools-4.56.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6c1d38642ca2dddc7ae992ef5d026e5061a84f10ff2b906be5680ab089f55bb8"}, + {file = "fonttools-4.56.0-cp39-cp39-win32.whl", hash = "sha256:2d351275f73ebdd81dd5b09a8b8dac7a30f29a279d41e1c1192aedf1b6dced40"}, + {file = "fonttools-4.56.0-cp39-cp39-win_amd64.whl", hash = "sha256:d6ca96d1b61a707ba01a43318c9c40aaf11a5a568d1e61146fafa6ab20890793"}, + {file = "fonttools-4.56.0-py3-none-any.whl", hash = "sha256:1088182f68c303b50ca4dc0c82d42083d176cba37af1937e1a976a31149d4d14"}, + {file = "fonttools-4.56.0.tar.gz", hash = "sha256:a114d1567e1a1586b7e9e7fc2ff686ca542a82769a296cef131e4c4af51e58f4"}, +] + +[package.extras] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] +graphite = ["lz4 (>=1.7.4.2)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] +pathops = ["skia-pathops (>=0.5.0)"] +plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] +symfont = ["sympy"] +type1 = ["xattr"] +ufo = ["fs (>=2.2.0,<3)"] +unicode = ["unicodedata2 (>=15.1.0)"] +woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] + [[package]] name = "fqdn" version = "1.5.1" @@ -898,69 +1039,84 @@ files = [ [[package]] name = "greenlet" -version = "3.0.3" +version = "3.1.1" description = "Lightweight in-process concurrent programming" optional = false python-versions = ">=3.7" files = [ - {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405"}, - {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f"}, - {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb"}, - {file = "greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9"}, - {file = "greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22"}, - {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3"}, - {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d"}, - {file = "greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728"}, - {file = "greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf"}, - {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305"}, - {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6"}, - {file = "greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2"}, - {file = "greenlet-3.0.3-cp37-cp37m-macosx_11_0_universal2.whl", hash = "sha256:5b51e85cb5ceda94e79d019ed36b35386e8c37d22f07d6a751cb659b180d5274"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:daf3cb43b7cf2ba96d614252ce1684c1bccee6b2183a01328c98d36fcd7d5cb0"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99bf650dc5d69546e076f413a87481ee1d2d09aaaaaca058c9251b6d8c14783f"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dd6e660effd852586b6a8478a1d244b8dc90ab5b1321751d2ea15deb49ed414"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3391d1e16e2a5a1507d83e4a8b100f4ee626e8eca43cf2cadb543de69827c4c"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e1f145462f1fa6e4a4ae3c0f782e580ce44d57c8f2c7aae1b6fa88c0b2efdb41"}, - {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1a7191e42732df52cb5f39d3527217e7ab73cae2cb3694d241e18f53d84ea9a7"}, - {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0448abc479fab28b00cb472d278828b3ccca164531daab4e970a0458786055d6"}, - {file = "greenlet-3.0.3-cp37-cp37m-win32.whl", hash = "sha256:b542be2440edc2d48547b5923c408cbe0fc94afb9f18741faa6ae970dbcb9b6d"}, - {file = "greenlet-3.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:01bc7ea167cf943b4c802068e178bbf70ae2e8c080467070d01bfa02f337ee67"}, - {file = "greenlet-3.0.3-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc0f794e6ad661e321caa8d2f0a55ce01213c74722587256fb6566049a8b04"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9db1c18f0eaad2f804728c67d6c610778456e3e1cc4ab4bbd5eeb8e6053c6fc"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7170375bcc99f1a2fbd9c306f5be8764eaf3ac6b5cb968862cad4c7057756506"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4"}, - {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:81bb9c6d52e8321f09c3d165b2a78c680506d9af285bfccbad9fb7ad5a5da3e5"}, - {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fd096eb7ffef17c456cfa587523c5f92321ae02427ff955bebe9e3c63bc9f0da"}, - {file = "greenlet-3.0.3-cp38-cp38-win32.whl", hash = "sha256:d46677c85c5ba00a9cb6f7a00b2bfa6f812192d2c9f7d9c4f6a55b60216712f3"}, - {file = "greenlet-3.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf"}, - {file = "greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b"}, - {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6"}, - {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113"}, - {file = "greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e"}, - {file = "greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067"}, - {file = "greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491"}, + {file = "greenlet-3.1.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:0bbae94a29c9e5c7e4a2b7f0aae5c17e8e90acbfd3bf6270eeba60c39fce3563"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fde093fb93f35ca72a556cf72c92ea3ebfda3d79fc35bb19fbe685853869a83"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36b89d13c49216cadb828db8dfa6ce86bbbc476a82d3a6c397f0efae0525bdd0"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94b6150a85e1b33b40b1464a3f9988dcc5251d6ed06842abff82e42632fac120"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93147c513fac16385d1036b7e5b102c7fbbdb163d556b791f0f11eada7ba65dc"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:da7a9bff22ce038e19bf62c4dd1ec8391062878710ded0a845bcf47cc0200617"}, + {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b2795058c23988728eec1f36a4e5e4ebad22f8320c85f3587b539b9ac84128d7"}, + {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ed10eac5830befbdd0c32f83e8aa6288361597550ba669b04c48f0f9a2c843c6"}, + {file = "greenlet-3.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:77c386de38a60d1dfb8e55b8c1101d68c79dfdd25c7095d51fec2dd800892b80"}, + {file = "greenlet-3.1.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:e4d333e558953648ca09d64f13e6d8f0523fa705f51cae3f03b5983489958c70"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fc016b73c94e98e29af67ab7b9a879c307c6731a2c9da0db5a7d9b7edd1159"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5e975ca70269d66d17dd995dafc06f1b06e8cb1ec1e9ed54c1d1e4a7c4cf26e"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2813dc3de8c1ee3f924e4d4227999285fd335d1bcc0d2be6dc3f1f6a318ec1"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e347b3bfcf985a05e8c0b7d462ba6f15b1ee1c909e2dcad795e49e91b152c383"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e8f8c9cb53cdac7ba9793c276acd90168f416b9ce36799b9b885790f8ad6c0a"}, + {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62ee94988d6b4722ce0028644418d93a52429e977d742ca2ccbe1c4f4a792511"}, + {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1776fd7f989fc6b8d8c8cb8da1f6b82c5814957264d1f6cf818d475ec2bf6395"}, + {file = "greenlet-3.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:48ca08c771c268a768087b408658e216133aecd835c0ded47ce955381105ba39"}, + {file = "greenlet-3.1.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:4afe7ea89de619adc868e087b4d2359282058479d7cfb94970adf4b55284574d"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f406b22b7c9a9b4f8aa9d2ab13d6ae0ac3e85c9a809bd590ad53fed2bf70dc79"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3a701fe5a9695b238503ce5bbe8218e03c3bcccf7e204e455e7462d770268aa"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2846930c65b47d70b9d178e89c7e1a69c95c1f68ea5aa0a58646b7a96df12441"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99cfaa2110534e2cf3ba31a7abcac9d328d1d9f1b95beede58294a60348fba36"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1443279c19fca463fc33e65ef2a935a5b09bb90f978beab37729e1c3c6c25fe9"}, + {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b7cede291382a78f7bb5f04a529cb18e068dd29e0fb27376074b6d0317bf4dd0"}, + {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:23f20bb60ae298d7d8656c6ec6db134bca379ecefadb0b19ce6f19d1f232a942"}, + {file = "greenlet-3.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:7124e16b4c55d417577c2077be379514321916d5790fa287c9ed6f23bd2ffd01"}, + {file = "greenlet-3.1.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:05175c27cb459dcfc05d026c4232f9de8913ed006d42713cb8a5137bd49375f1"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:935e943ec47c4afab8965954bf49bfa639c05d4ccf9ef6e924188f762145c0ff"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:667a9706c970cb552ede35aee17339a18e8f2a87a51fba2ed39ceeeb1004798a"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8a678974d1f3aa55f6cc34dc480169d58f2e6d8958895d68845fa4ab566509e"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efc0f674aa41b92da8c49e0346318c6075d734994c3c4e4430b1c3f853e498e4"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0153404a4bb921f0ff1abeb5ce8a5131da56b953eda6e14b88dc6bbc04d2049e"}, + {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:275f72decf9932639c1c6dd1013a1bc266438eb32710016a1c742df5da6e60a1"}, + {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c4aab7f6381f38a4b42f269057aee279ab0fc7bf2e929e3d4abfae97b682a12c"}, + {file = "greenlet-3.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:b42703b1cf69f2aa1df7d1030b9d77d3e584a70755674d60e710f0af570f3761"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1695e76146579f8c06c1509c7ce4dfe0706f49c6831a817ac04eebb2fd02011"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7876452af029456b3f3549b696bb36a06db7c90747740c5302f74a9e9fa14b13"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ead44c85f8ab905852d3de8d86f6f8baf77109f9da589cb4fa142bd3b57b475"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8320f64b777d00dd7ccdade271eaf0cad6636343293a25074cc5566160e4de7b"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6510bf84a6b643dabba74d3049ead221257603a253d0a9873f55f6a59a65f822"}, + {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:04b013dc07c96f83134b1e99888e7a79979f1a247e2a9f59697fa14b5862ed01"}, + {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:411f015496fec93c1c8cd4e5238da364e1da7a124bcb293f085bf2860c32c6f6"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47da355d8687fd65240c364c90a31569a133b7b60de111c255ef5b606f2ae291"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98884ecf2ffb7d7fe6bd517e8eb99d31ff7855a840fa6d0d63cd07c037f6a981"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1d4aeb8891338e60d1ab6127af1fe45def5259def8094b9c7e34690c8858803"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db32b5348615a04b82240cc67983cb315309e88d444a288934ee6ceaebcad6cc"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dcc62f31eae24de7f8dce72134c8651c58000d3b1868e01392baea7c32c247de"}, + {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1d3755bcb2e02de341c55b4fca7a745a24a9e7212ac953f6b3a48d117d7257aa"}, + {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b8da394b34370874b4572676f36acabac172602abf054cbc4ac910219f3340af"}, + {file = "greenlet-3.1.1-cp37-cp37m-win32.whl", hash = "sha256:a0dfc6c143b519113354e780a50381508139b07d2177cb6ad6a08278ec655798"}, + {file = "greenlet-3.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54558ea205654b50c438029505def3834e80f0869a70fb15b871c29b4575ddef"}, + {file = "greenlet-3.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:346bed03fe47414091be4ad44786d1bd8bef0c3fcad6ed3dee074a032ab408a9"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfc59d69fc48664bc693842bd57acfdd490acafda1ab52c7836e3fc75c90a111"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21e10da6ec19b457b82636209cbe2331ff4306b54d06fa04b7c138ba18c8a81"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37b9de5a96111fc15418819ab4c4432e4f3c2ede61e660b1e33971eba26ef9ba"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ef9ea3f137e5711f0dbe5f9263e8c009b7069d8a1acea822bd5e9dae0ae49c8"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85f3ff71e2e60bd4b4932a043fbbe0f499e263c628390b285cb599154a3b03b1"}, + {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:95ffcf719966dd7c453f908e208e14cde192e09fde6c7186c8f1896ef778d8cd"}, + {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:03a088b9de532cbfe2ba2034b2b85e82df37874681e8c470d6fb2f8c04d7e4b7"}, + {file = "greenlet-3.1.1-cp38-cp38-win32.whl", hash = "sha256:8b8b36671f10ba80e159378df9c4f15c14098c4fd73a36b9ad715f057272fbef"}, + {file = "greenlet-3.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:7017b2be767b9d43cc31416aba48aab0d2309ee31b4dbf10a1d38fb7972bdf9d"}, + {file = "greenlet-3.1.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:396979749bd95f018296af156201d6211240e7a23090f50a8d5d18c370084dc3"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca9d0ff5ad43e785350894d97e13633a66e2b50000e8a183a50a88d834752d42"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f6ff3b14f2df4c41660a7dec01045a045653998784bf8cfcb5a525bdffffbc8f"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94ebba31df2aa506d7b14866fed00ac141a867e63143fe5bca82a8e503b36437"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73aaad12ac0ff500f62cebed98d8789198ea0e6f233421059fa68a5aa7220145"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63e4844797b975b9af3a3fb8f7866ff08775f5426925e1e0bbcfe7932059a12c"}, + {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7939aa3ca7d2a1593596e7ac6d59391ff30281ef280d8632fa03d81f7c5f955e"}, + {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0028e725ee18175c6e422797c407874da24381ce0690d6b9396c204c7f7276e"}, + {file = "greenlet-3.1.1-cp39-cp39-win32.whl", hash = "sha256:5e06afd14cbaf9e00899fae69b24a32f2196c19de08fcb9f4779dd4f004e5e7c"}, + {file = "greenlet-3.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:3319aa75e0e0639bc15ff54ca327e8dc7a6fe404003496e3c6925cd3142e0e22"}, + {file = "greenlet-3.1.1.tar.gz", hash = "sha256:4ce3ac6cdb6adf7946475d7ef31777c26d94bccc377e070a7986bd2d5c515467"}, ] [package.extras] @@ -979,35 +1135,25 @@ files = [ ] [[package]] -name = "html5lib" -version = "1.1" +name = "html5rdf" +version = "1.2.1" description = "HTML parser based on the WHATWG HTML specification" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.8" files = [ - {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, - {file = "html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f"}, + {file = "html5rdf-1.2.1-py2.py3-none-any.whl", hash = "sha256:1f519121bc366af3e485310dc8041d2e86e5173c1a320fac3dc9d2604069b83e"}, + {file = "html5rdf-1.2.1.tar.gz", hash = "sha256:ace9b420ce52995bb4f05e7425eedf19e433c981dfe7a831ab391e2fa2e1a195"}, ] -[package.dependencies] -six = ">=1.9" -webencodings = "*" - -[package.extras] -all = ["chardet (>=2.2)", "genshi", "lxml"] -chardet = ["chardet (>=2.2)"] -genshi = ["genshi"] -lxml = ["lxml"] - [[package]] name = "httpcore" -version = "1.0.5" +version = "1.0.7" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"}, - {file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"}, + {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, + {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, ] [package.dependencies] @@ -1018,17 +1164,17 @@ h11 = ">=0.13,<0.15" asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<0.26.0)"] +trio = ["trio (>=0.22.0,<1.0)"] [[package]] name = "httpx" -version = "0.27.2" +version = "0.28.1" description = "The next generation HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, + {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"}, + {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"}, ] [package.dependencies] @@ -1036,7 +1182,6 @@ anyio = "*" certifi = "*" httpcore = "==1.*" idna = "*" -sniffio = "*" [package.extras] brotli = ["brotli", "brotlicffi"] @@ -1047,13 +1192,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "identify" -version = "2.6.0" +version = "2.6.8" description = "File identification library for Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "identify-2.6.0-py2.py3-none-any.whl", hash = "sha256:e79ae4406387a9d300332b5fd366d8994f1525e8414984e1a59e058b2eda2dd0"}, - {file = "identify-2.6.0.tar.gz", hash = "sha256:cb171c685bdc31bcc4c1734698736a7d5b6c8bf2e0c15117f4d469c8640ae5cf"}, + {file = "identify-2.6.8-py2.py3-none-any.whl", hash = "sha256:83657f0f766a3c8d0eaea16d4ef42494b39b34629a4b3192a9d020d349b3e255"}, + {file = "identify-2.6.8.tar.gz", hash = "sha256:61491417ea2c0c5c670484fd8abbb34de34cdae1e5f39a73ee65e48e4bb663fc"}, ] [package.extras] @@ -1061,15 +1206,18 @@ license = ["ukkonen"] [[package]] name = "idna" -version = "3.8" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.6" files = [ - {file = "idna-3.8-py3-none-any.whl", hash = "sha256:050b4e5baadcd44d760cedbd2b8e639f2ff89bbc7a5730fcc662954303377aac"}, - {file = "idna-3.8.tar.gz", hash = "sha256:d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "imagesize" version = "1.4.1" @@ -1083,43 +1231,25 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.4.0" +version = "8.6.1" description = "Read metadata from Python packages" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "importlib_metadata-8.4.0-py3-none-any.whl", hash = "sha256:66f342cc6ac9818fc6ff340576acd24d65ba0b3efabb2b4ac08b598965a4a2f1"}, - {file = "importlib_metadata-8.4.0.tar.gz", hash = "sha256:9a547d3bc3608b025f93d403fdd1aae741c24fbb8314df4b155675742ce303c5"}, + {file = "importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e"}, + {file = "importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580"}, ] [package.dependencies] -zipp = ">=0.5" - -[package.extras] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -perf = ["ipython"] -test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] - -[[package]] -name = "importlib-resources" -version = "6.4.4" -description = "Read resources from Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "importlib_resources-6.4.4-py3-none-any.whl", hash = "sha256:dda242603d1c9cd836c3368b1174ed74cb4049ecd209e7a1a0104620c18c5c11"}, - {file = "importlib_resources-6.4.4.tar.gz", hash = "sha256:20600c8b7361938dc0bb2d5ec0297802e575df486f5a544fa414da65e13721f7"}, -] - -[package.dependencies] -zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} +zipp = ">=3.20" [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] -test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +perf = ["ipython"] +test = ["flufl.flake8", "importlib_resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] type = ["pytest-mypy"] [[package]] @@ -1168,42 +1298,41 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio [[package]] name = "ipython" -version = "8.12.3" +version = "8.33.0" description = "IPython: Productive Interactive Computing" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" files = [ - {file = "ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c"}, - {file = "ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363"}, + {file = "ipython-8.33.0-py3-none-any.whl", hash = "sha256:aa5b301dfe1eaf0167ff3238a6825f810a029c9dad9d3f1597f30bd5ff65cc44"}, + {file = "ipython-8.33.0.tar.gz", hash = "sha256:4c3e36a6dfa9e8e3702bd46f3df668624c975a22ff340e96ea7277afbd76217d"}, ] [package.dependencies] -appnope = {version = "*", markers = "sys_platform == \"darwin\""} -backcall = "*" colorama = {version = "*", markers = "sys_platform == \"win32\""} decorator = "*" +exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} jedi = ">=0.16" matplotlib-inline = "*" -pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} -pickleshare = "*" -prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} +prompt_toolkit = ">=3.0.41,<3.1.0" pygments = ">=2.4.0" -stack-data = "*" -traitlets = ">=5" -typing-extensions = {version = "*", markers = "python_version < \"3.10\""} +stack_data = "*" +traitlets = ">=5.13.0" +typing_extensions = {version = ">=4.6", markers = "python_version < \"3.12\""} [package.extras] -all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] black = ["black"] -doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] +doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing_extensions"] kernel = ["ipykernel"] +matplotlib = ["matplotlib"] nbconvert = ["nbconvert"] nbformat = ["nbformat"] notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] -test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] +test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] [[package]] name = "ipywidgets" @@ -1228,18 +1357,15 @@ test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] [[package]] name = "isodate" -version = "0.6.1" +version = "0.7.2" description = "An ISO 8601 date/time/duration parser and formatter" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, + {file = "isodate-0.7.2-py3-none-any.whl", hash = "sha256:28009937d8031054830160fce6d409ed342816b543597cece116d966c6d99e15"}, + {file = "isodate-0.7.2.tar.gz", hash = "sha256:4cd1aa0f43ca76f4a6c6c0292a85f40b35ec2e43e315b59f06e6d32171a953e6"}, ] -[package.dependencies] -six = "*" - [[package]] name = "isoduration" version = "20.11.0" @@ -1281,32 +1407,32 @@ files = [ [[package]] name = "jedi" -version = "0.19.1" +version = "0.19.2" description = "An autocompletion tool for Python that can be used for text editors." optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, - {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, + {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, + {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, ] [package.dependencies] -parso = ">=0.8.3,<0.9.0" +parso = ">=0.8.4,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] -testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"] [[package]] name = "jinja2" -version = "3.1.4" +version = "3.1.6" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, + {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"}, + {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"}, ] [package.dependencies] @@ -1317,15 +1443,18 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "json5" -version = "0.9.25" +version = "0.10.0" description = "A Python implementation of the JSON5 data format." optional = false -python-versions = ">=3.8" +python-versions = ">=3.8.0" files = [ - {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"}, - {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"}, + {file = "json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa"}, + {file = "json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559"}, ] +[package.extras] +dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"] + [[package]] name = "jsonpointer" version = "3.0.0" @@ -1352,11 +1481,9 @@ files = [ attrs = ">=22.2.0" fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} jsonschema-specifications = ">=2023.03.6" -pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} referencing = ">=0.28.4" rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} @@ -1370,17 +1497,16 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- [[package]] name = "jsonschema-specifications" -version = "2023.12.1" +version = "2024.10.1" description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, - {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, + {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, + {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, ] [package.dependencies] -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} referencing = ">=0.31.0" [[package]] @@ -1468,17 +1594,16 @@ testing = ["coverage", "ipykernel", "jupytext", "matplotlib", "nbdime", "nbforma [[package]] name = "jupyter-client" -version = "8.6.2" +version = "8.6.3" description = "Jupyter protocol implementation and client libraries" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_client-8.6.2-py3-none-any.whl", hash = "sha256:50cbc5c66fd1b8f65ecb66bc490ab73217993632809b6e505687de18e9dea39f"}, - {file = "jupyter_client-8.6.2.tar.gz", hash = "sha256:2bda14d55ee5ba58552a8c53ae43d215ad9868853489213f37da060ced54d8df"}, + {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"}, + {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"}, ] [package.dependencies] -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" @@ -1535,17 +1660,18 @@ test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout" [[package]] name = "jupyter-events" -version = "0.10.0" +version = "0.12.0" description = "Jupyter Event System library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, - {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, + {file = "jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb"}, + {file = "jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b"}, ] [package.dependencies] jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} +packaging = "*" python-json-logger = ">=2.0.4" pyyaml = ">=5.3" referencing = "*" @@ -1555,7 +1681,7 @@ traitlets = ">=5.3" [package.extras] cli = ["click", "rich"] -docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme (>=0.16)", "sphinx (>=8)", "sphinxcontrib-spelling"] test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] [[package]] @@ -1570,18 +1696,17 @@ files = [ ] [package.dependencies] -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} jupyter-server = ">=1.1.2" [[package]] name = "jupyter-server" -version = "2.14.2" +version = "2.15.0" description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"}, - {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"}, + {file = "jupyter_server-2.15.0-py3-none-any.whl", hash = "sha256:872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3"}, + {file = "jupyter_server-2.15.0.tar.gz", hash = "sha256:9d446b8697b4f7337a1b7cdcac40778babdd93ba614b6d68ab1c0c918f1c4084"}, ] [package.dependencies] @@ -1590,7 +1715,7 @@ argon2-cffi = ">=21.1" jinja2 = ">=3.0.3" jupyter-client = ">=7.4.4" jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -jupyter-events = ">=0.9.0" +jupyter-events = ">=0.11.0" jupyter-server-terminals = ">=0.4.4" nbconvert = ">=6.4.4" nbformat = ">=5.3.0" @@ -1630,20 +1755,18 @@ test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (> [[package]] name = "jupyterlab" -version = "4.2.5" +version = "4.3.5" description = "JupyterLab computational environment" optional = false python-versions = ">=3.8" files = [ - {file = "jupyterlab-4.2.5-py3-none-any.whl", hash = "sha256:73b6e0775d41a9fee7ee756c80f58a6bed4040869ccc21411dc559818874d321"}, - {file = "jupyterlab-4.2.5.tar.gz", hash = "sha256:ae7f3a1b8cb88b4f55009ce79fa7c06f99d70cd63601ee4aa91815d054f46f75"}, + {file = "jupyterlab-4.3.5-py3-none-any.whl", hash = "sha256:571bbdee20e4c5321ab5195bc41cf92a75a5cff886be5e57ce78dfa37a5e9fdb"}, + {file = "jupyterlab-4.3.5.tar.gz", hash = "sha256:c779bf72ced007d7d29d5bcef128e7fdda96ea69299e19b04a43635a7d641f9d"}, ] [package.dependencies] async-lru = ">=1.0.0" httpx = ">=0.25.0" -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -importlib-resources = {version = ">=1.4", markers = "python_version < \"3.9\""} ipykernel = ">=6.5.0" jinja2 = ">=3.0.3" jupyter-core = "*" @@ -1652,15 +1775,15 @@ jupyter-server = ">=2.4.0,<3" jupyterlab-server = ">=2.27.1,<3" notebook-shim = ">=0.2" packaging = "*" -setuptools = ">=40.1.0" +setuptools = ">=40.8.0" tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""} tornado = ">=6.2.0" traitlets = "*" [package.extras] -dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.3.5)"] -docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<7.3.0)", "sphinx-copybutton"] -docs-screenshots = ["altair (==5.3.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.2)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.1.post2)", "matplotlib (==3.8.3)", "nbconvert (>=7.0.0)", "pandas (==2.2.1)", "scipy (==1.12.0)", "vega-datasets (==0.9.0)"] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.6.9)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.1.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.4.1)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.2.post3)", "matplotlib (==3.9.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.14.1)", "vega-datasets (==0.9.0)"] test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"] @@ -1688,7 +1811,6 @@ files = [ [package.dependencies] babel = ">=2.10" -importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} jinja2 = ">=3.0.3" json5 = ">=0.9.0" jsonschema = ">=4.18.0" @@ -1714,13 +1836,13 @@ files = [ [[package]] name = "jupytext" -version = "1.16.4" +version = "1.16.7" description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts" optional = false python-versions = ">=3.8" files = [ - {file = "jupytext-1.16.4-py3-none-any.whl", hash = "sha256:76989d2690e65667ea6fb411d8056abe7cd0437c07bd774660b83d62acf9490a"}, - {file = "jupytext-1.16.4.tar.gz", hash = "sha256:28e33f46f2ce7a41fb9d677a4a2c95327285579b64ca104437c4b9eb1e4174e9"}, + {file = "jupytext-1.16.7-py3-none-any.whl", hash = "sha256:912f9d9af7bd3f15470105e5c5dddf1669b2d8c17f0c55772687fc5a4a73fe69"}, + {file = "jupytext-1.16.7.tar.gz", hash = "sha256:fc4e97f0890e22062c4ef10313c7ca960b07b3767246a1fef7585888cc2afe5d"}, ] [package.dependencies] @@ -1732,15 +1854,104 @@ pyyaml = "*" tomli = {version = "*", markers = "python_version < \"3.11\""} [package.extras] -dev = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-cov (>=2.6.1)", "pytest-randomly", "pytest-xdist", "sphinx-gallery (<0.8)"] +dev = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-cov (>=2.6.1)", "pytest-randomly", "pytest-xdist", "sphinx (<8)", "sphinx-gallery (<0.8)"] docs = ["myst-parser", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme"] test = ["pytest", "pytest-randomly", "pytest-xdist"] test-cov = ["ipykernel", "jupyter-server (!=2.11)", "nbconvert", "pytest", "pytest-cov (>=2.6.1)", "pytest-randomly", "pytest-xdist"] -test-external = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-randomly", "pytest-xdist", "sphinx-gallery (<0.8)"] +test-external = ["autopep8", "black", "flake8", "gitpython", "ipykernel", "isort", "jupyter-fs (>=1.0)", "jupyter-server (!=2.11)", "nbconvert", "pre-commit", "pytest", "pytest-randomly", "pytest-xdist", "sphinx (<8)", "sphinx-gallery (<0.8)"] test-functional = ["pytest", "pytest-randomly", "pytest-xdist"] test-integration = ["ipykernel", "jupyter-server (!=2.11)", "nbconvert", "pytest", "pytest-randomly", "pytest-xdist"] test-ui = ["calysto-bash"] +[[package]] +name = "kiwisolver" +version = "1.4.8" +description = "A fast implementation of the Cassowary constraint solver" +optional = false +python-versions = ">=3.10" +files = [ + {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db"}, + {file = "kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b"}, + {file = "kiwisolver-1.4.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce2cf1e5688edcb727fdf7cd1bbd0b6416758996826a8be1d958f91880d0809d"}, + {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c8bf637892dc6e6aad2bc6d4d69d08764166e5e3f69d469e55427b6ac001b19d"}, + {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:034d2c891f76bd3edbdb3ea11140d8510dca675443da7304205a2eaa45d8334c"}, + {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d47b28d1dfe0793d5e96bce90835e17edf9a499b53969b03c6c47ea5985844c3"}, + {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb158fe28ca0c29f2260cca8c43005329ad58452c36f0edf298204de32a9a3ed"}, + {file = "kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5536185fce131780ebd809f8e623bf4030ce1b161353166c49a3c74c287897f"}, + {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:369b75d40abedc1da2c1f4de13f3482cb99e3237b38726710f4a793432b1c5ff"}, + {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:641f2ddf9358c80faa22e22eb4c9f54bd3f0e442e038728f500e3b978d00aa7d"}, + {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d561d2d8883e0819445cfe58d7ddd673e4015c3c57261d7bdcd3710d0d14005c"}, + {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1732e065704b47c9afca7ffa272f845300a4eb959276bf6970dc07265e73b605"}, + {file = "kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcb1ebc3547619c3b58a39e2448af089ea2ef44b37988caf432447374941574e"}, + {file = "kiwisolver-1.4.8-cp310-cp310-win_amd64.whl", hash = "sha256:89c107041f7b27844179ea9c85d6da275aa55ecf28413e87624d033cf1f6b751"}, + {file = "kiwisolver-1.4.8-cp310-cp310-win_arm64.whl", hash = "sha256:b5773efa2be9eb9fcf5415ea3ab70fc785d598729fd6057bea38d539ead28271"}, + {file = "kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84"}, + {file = "kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561"}, + {file = "kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7"}, + {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03"}, + {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954"}, + {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79"}, + {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6"}, + {file = "kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0"}, + {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab"}, + {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc"}, + {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25"}, + {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc"}, + {file = "kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67"}, + {file = "kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34"}, + {file = "kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2"}, + {file = "kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502"}, + {file = "kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31"}, + {file = "kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb"}, + {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f"}, + {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc"}, + {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a"}, + {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a"}, + {file = "kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a"}, + {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3"}, + {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b"}, + {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4"}, + {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d"}, + {file = "kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8"}, + {file = "kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50"}, + {file = "kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476"}, + {file = "kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09"}, + {file = "kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1"}, + {file = "kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c"}, + {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b"}, + {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47"}, + {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16"}, + {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc"}, + {file = "kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246"}, + {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794"}, + {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b"}, + {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3"}, + {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957"}, + {file = "kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb"}, + {file = "kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2"}, + {file = "kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90"}, + {file = "kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e7a019419b7b510f0f7c9dceff8c5eae2392037eae483a7f9162625233802b0a"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:286b18e86682fd2217a48fc6be6b0f20c1d0ed10958d8dc53453ad58d7be0bf8"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4191ee8dfd0be1c3666ccbac178c5a05d5f8d689bbe3fc92f3c4abec817f8fe0"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd2785b9391f2873ad46088ed7599a6a71e762e1ea33e87514b1a441ed1da1c"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c07b29089b7ba090b6f1a669f1411f27221c3662b3a1b7010e67b59bb5a6f10b"}, + {file = "kiwisolver-1.4.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65ea09a5a3faadd59c2ce96dc7bf0f364986a315949dc6374f04396b0d60e09b"}, + {file = "kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e"}, +] + [[package]] name = "latexcodec" version = "3.0.0" @@ -1774,13 +1985,13 @@ test = ["coverage", "pytest", "pytest-cov"] [[package]] name = "mako" -version = "1.3.5" +version = "1.3.9" description = "A super-fast templating language that borrows the best ideas from the existing templating languages." optional = false python-versions = ">=3.8" files = [ - {file = "Mako-1.3.5-py3-none-any.whl", hash = "sha256:260f1dbc3a519453a9c856dedfe4beb4e50bd5a26d96386cb6c80856556bb91a"}, - {file = "Mako-1.3.5.tar.gz", hash = "sha256:48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc"}, + {file = "Mako-1.3.9-py3-none-any.whl", hash = "sha256:95920acccb578427a9aa38e37a186b1e43156c87260d7ba18ca63aa4c7cbd3a1"}, + {file = "mako-1.3.9.tar.gz", hash = "sha256:b5d65ff3462870feec922dbccf38f6efb44e5714d7b593a656be86663d8600ac"}, ] [package.dependencies] @@ -1817,73 +2028,131 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" -files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, +python-versions = ">=3.9" +files = [ + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, +] + +[[package]] +name = "matplotlib" +version = "3.10.1" +description = "Python plotting package" +optional = false +python-versions = ">=3.10" +files = [ + {file = "matplotlib-3.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ff2ae14910be903f4a24afdbb6d7d3a6c44da210fc7d42790b87aeac92238a16"}, + {file = "matplotlib-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0721a3fd3d5756ed593220a8b86808a36c5031fce489adb5b31ee6dbb47dd5b2"}, + {file = "matplotlib-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0673b4b8f131890eb3a1ad058d6e065fb3c6e71f160089b65f8515373394698"}, + {file = "matplotlib-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e875b95ac59a7908978fe307ecdbdd9a26af7fa0f33f474a27fcf8c99f64a19"}, + {file = "matplotlib-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2589659ea30726284c6c91037216f64a506a9822f8e50592d48ac16a2f29e044"}, + {file = "matplotlib-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:a97ff127f295817bc34517255c9db6e71de8eddaab7f837b7d341dee9f2f587f"}, + {file = "matplotlib-3.10.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:057206ff2d6ab82ff3e94ebd94463d084760ca682ed5f150817b859372ec4401"}, + {file = "matplotlib-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a144867dd6bf8ba8cb5fc81a158b645037e11b3e5cf8a50bd5f9917cb863adfe"}, + {file = "matplotlib-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56c5d9fcd9879aa8040f196a235e2dcbdf7dd03ab5b07c0696f80bc6cf04bedd"}, + {file = "matplotlib-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f69dc9713e4ad2fb21a1c30e37bd445d496524257dfda40ff4a8efb3604ab5c"}, + {file = "matplotlib-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4c59af3e8aca75d7744b68e8e78a669e91ccbcf1ac35d0102a7b1b46883f1dd7"}, + {file = "matplotlib-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:11b65088c6f3dae784bc72e8d039a2580186285f87448babb9ddb2ad0082993a"}, + {file = "matplotlib-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:66e907a06e68cb6cfd652c193311d61a12b54f56809cafbed9736ce5ad92f107"}, + {file = "matplotlib-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b4bb156abb8fa5e5b2b460196f7db7264fc6d62678c03457979e7d5254b7be"}, + {file = "matplotlib-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1985ad3d97f51307a2cbfc801a930f120def19ba22864182dacef55277102ba6"}, + {file = "matplotlib-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c96f2c2f825d1257e437a1482c5a2cf4fee15db4261bd6fc0750f81ba2b4ba3d"}, + {file = "matplotlib-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35e87384ee9e488d8dd5a2dd7baf471178d38b90618d8ea147aced4ab59c9bea"}, + {file = "matplotlib-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:cfd414bce89cc78a7e1d25202e979b3f1af799e416010a20ab2b5ebb3a02425c"}, + {file = "matplotlib-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c42eee41e1b60fd83ee3292ed83a97a5f2a8239b10c26715d8a6172226988d7b"}, + {file = "matplotlib-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4f0647b17b667ae745c13721602b540f7aadb2a32c5b96e924cd4fea5dcb90f1"}, + {file = "matplotlib-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3854b5f9473564ef40a41bc922be978fab217776e9ae1545c9b3a5cf2092a3"}, + {file = "matplotlib-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e496c01441be4c7d5f96d4e40f7fca06e20dcb40e44c8daa2e740e1757ad9e6"}, + {file = "matplotlib-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5d45d3f5245be5b469843450617dcad9af75ca50568acf59997bed9311131a0b"}, + {file = "matplotlib-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:8e8e25b1209161d20dfe93037c8a7f7ca796ec9aa326e6e4588d8c4a5dd1e473"}, + {file = "matplotlib-3.10.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:19b06241ad89c3ae9469e07d77efa87041eac65d78df4fcf9cac318028009b01"}, + {file = "matplotlib-3.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01e63101ebb3014e6e9f80d9cf9ee361a8599ddca2c3e166c563628b39305dbb"}, + {file = "matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f06bad951eea6422ac4e8bdebcf3a70c59ea0a03338c5d2b109f57b64eb3972"}, + {file = "matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3dfb036f34873b46978f55e240cff7a239f6c4409eac62d8145bad3fc6ba5a3"}, + {file = "matplotlib-3.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dc6ab14a7ab3b4d813b88ba957fc05c79493a037f54e246162033591e770de6f"}, + {file = "matplotlib-3.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bc411ebd5889a78dabbc457b3fa153203e22248bfa6eedc6797be5df0164dbf9"}, + {file = "matplotlib-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:648406f1899f9a818cef8c0231b44dcfc4ff36f167101c3fd1c9151f24220fdc"}, + {file = "matplotlib-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:02582304e352f40520727984a5a18f37e8187861f954fea9be7ef06569cf85b4"}, + {file = "matplotlib-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3809916157ba871bcdd33d3493acd7fe3037db5daa917ca6e77975a94cef779"}, + {file = "matplotlib-3.10.1.tar.gz", hash = "sha256:e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba"}, ] +[package.dependencies] +contourpy = ">=1.0.1" +cycler = ">=0.10" +fonttools = ">=4.22.0" +kiwisolver = ">=1.3.1" +numpy = ">=1.23" +packaging = ">=20.0" +pillow = ">=8" +pyparsing = ">=2.3.1" +python-dateutil = ">=2.7" + +[package.extras] +dev = ["meson-python (>=0.13.1,<0.17.0)", "pybind11 (>=2.13.2,!=2.13.3)", "setuptools (>=64)", "setuptools_scm (>=7)"] + [[package]] name = "matplotlib-inline" version = "0.1.7" @@ -1941,15 +2210,18 @@ files = [ [[package]] name = "mistune" -version = "3.0.2" +version = "3.1.2" description = "A sane and fast Markdown parser with useful plugins and renderers" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, - {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, + {file = "mistune-3.1.2-py3-none-any.whl", hash = "sha256:4b47731332315cdca99e0ded46fc0004001c1299ff773dfb48fbe1fd226de319"}, + {file = "mistune-3.1.2.tar.gz", hash = "sha256:733bf018ba007e8b5f2d3a9eb624034f6ee26c4ea769a98ec533ee111d504dff"}, ] +[package.dependencies] +typing-extensions = {version = "*", markers = "python_version < \"3.11\""} + [[package]] name = "mypy" version = "1.9.0" @@ -2064,41 +2336,41 @@ testing = ["beautifulsoup4", "coverage[toml]", "pytest (>=6,<7)", "pytest-cov", [[package]] name = "nbclient" -version = "0.6.8" +version = "0.7.4" description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." optional = false python-versions = ">=3.7.0" files = [ - {file = "nbclient-0.6.8-py3-none-any.whl", hash = "sha256:7cce8b415888539180535953f80ea2385cdbb444944cdeb73ffac1556fdbc228"}, - {file = "nbclient-0.6.8.tar.gz", hash = "sha256:268fde3457cafe1539e32eb1c6d796bbedb90b9e92bacd3e43d83413734bb0e8"}, + {file = "nbclient-0.7.4-py3-none-any.whl", hash = "sha256:c817c0768c5ff0d60e468e017613e6eae27b6fa31e43f905addd2d24df60c125"}, + {file = "nbclient-0.7.4.tar.gz", hash = "sha256:d447f0e5a4cfe79d462459aec1b3dc5c2e9152597262be8ee27f7d4c02566a0d"}, ] [package.dependencies] -jupyter-client = ">=6.1.5" -nbformat = ">=5.0" -nest-asyncio = "*" -traitlets = ">=5.2.2" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +nbformat = ">=5.1" +traitlets = ">=5.3" [package.extras] -sphinx = ["Sphinx (>=1.7)", "autodoc-traits", "mock", "moto", "myst-parser", "sphinx-book-theme"] -test = ["black", "check-manifest", "flake8", "ipykernel", "ipython", "ipywidgets", "mypy", "nbconvert", "pip (>=18.1)", "pre-commit", "pytest (>=4.1)", "pytest-asyncio", "pytest-cov (>=2.6.1)", "setuptools (>=60.0)", "testpath", "twine (>=1.11.0)", "xmltodict"] +dev = ["pre-commit"] +docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] +test = ["flaky", "ipykernel", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] [[package]] name = "nbconvert" -version = "7.16.4" +version = "7.16.6" description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." optional = false python-versions = ">=3.8" files = [ - {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, - {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, + {file = "nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b"}, + {file = "nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582"}, ] [package.dependencies] beautifulsoup4 = "*" -bleach = "!=5.0.0" +bleach = {version = "!=5.0.0", extras = ["css"]} defusedxml = "*" -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} jinja2 = ">=3.0" jupyter-core = ">=4.7" jupyterlab-pygments = "*" @@ -2109,7 +2381,6 @@ nbformat = ">=5.7" packaging = "*" pandocfilters = ">=1.4.1" pygments = ">=2.4.1" -tinycss2 = "*" traitlets = ">=5.1" [package.extras] @@ -2144,20 +2415,20 @@ test = ["pep440", "pre-commit", "pytest", "testpath"] [[package]] name = "nbmake" -version = "1.5.4" +version = "1.5.5" description = "Pytest plugin for testing notebooks" optional = false -python-versions = "<4.0.0,>=3.8.0" +python-versions = ">=3.8.0" files = [ - {file = "nbmake-1.5.4-py3-none-any.whl", hash = "sha256:8e440a61a7d4ab303064aa86b8d2c088177c89960e2b4a0f91a768dc9f68382b"}, - {file = "nbmake-1.5.4.tar.gz", hash = "sha256:56417fe80d50069671122955532df6e26369a23f68b9c6e2191ae9cfef19abb2"}, + {file = "nbmake-1.5.5-py3-none-any.whl", hash = "sha256:c6fbe6e48b60cacac14af40b38bf338a3b88f47f085c54ac5b8639ff0babaf4b"}, + {file = "nbmake-1.5.5.tar.gz", hash = "sha256:239dc868ea13a7c049746e2aba2c229bd0f6cdbc6bfa1d22f4c88638aa4c5f5c"}, ] [package.dependencies] ipykernel = ">=5.4.0" -nbclient = ">=0.6.6,<0.7.0" -nbformat = ">=5.0.8,<6.0.0" -Pygments = ">=2.7.3,<3.0.0" +nbclient = ">=0.6.6" +nbformat = ">=5.0.4" +pygments = ">=2.7.3" pytest = ">=6.1.0" [[package]] @@ -2212,21 +2483,22 @@ files = [ [[package]] name = "networkx" -version = "2.8.8" +version = "3.4.2" description = "Python package for creating and manipulating graphs and networks" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" files = [ - {file = "networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524"}, - {file = "networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e"}, + {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, + {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, ] [package.extras] -default = ["matplotlib (>=3.4)", "numpy (>=1.19)", "pandas (>=1.3)", "scipy (>=1.8)"] -developer = ["mypy (>=0.982)", "pre-commit (>=2.20)"] -doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.2)", "pydata-sphinx-theme (>=0.11)", "sphinx (>=5.2)", "sphinx-gallery (>=0.11)", "texext (>=0.6.6)"] -extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.9)", "sympy (>=1.10)"] -test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] +default = ["matplotlib (>=3.7)", "numpy (>=1.24)", "pandas (>=2.0)", "scipy (>=1.10,!=1.11.0,!=1.11.1)"] +developer = ["changelist (==0.5)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"] +doc = ["intersphinx-registry", "myst-nb (>=1.1)", "numpydoc (>=1.8.0)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.15)", "sphinx (>=7.3)", "sphinx-gallery (>=0.16)", "texext (>=0.6.7)"] +example = ["cairocffi (>=1.7)", "contextily (>=1.6)", "igraph (>=0.11)", "momepy (>=0.7.2)", "osmnx (>=1.9)", "scikit-learn (>=1.5)", "seaborn (>=0.13)"] +extra = ["lxml (>=4.6)", "pydot (>=3.0.1)", "pygraphviz (>=1.14)", "sympy (>=1.10)"] +test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] [[package]] name = "nodeenv" @@ -2241,18 +2513,18 @@ files = [ [[package]] name = "notebook" -version = "7.2.2" +version = "7.3.2" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" optional = false python-versions = ">=3.8" files = [ - {file = "notebook-7.2.2-py3-none-any.whl", hash = "sha256:c89264081f671bc02eec0ed470a627ed791b9156cad9285226b31611d3e9fe1c"}, - {file = "notebook-7.2.2.tar.gz", hash = "sha256:2ef07d4220421623ad3fe88118d687bc0450055570cdd160814a59cf3a1c516e"}, + {file = "notebook-7.3.2-py3-none-any.whl", hash = "sha256:e5f85fc59b69d3618d73cf27544418193ff8e8058d5bf61d315ce4f473556288"}, + {file = "notebook-7.3.2.tar.gz", hash = "sha256:705e83a1785f45b383bf3ee13cb76680b92d24f56fb0c7d2136fe1d850cd3ca8"}, ] [package.dependencies] jupyter-server = ">=2.4.0,<3" -jupyterlab = ">=4.2.0,<4.3" +jupyterlab = ">=4.3.4,<4.4" jupyterlab-server = ">=2.27.1,<3" notebook-shim = ">=0.2,<0.3" tornado = ">=6.2.0" @@ -2279,6 +2551,70 @@ jupyter-server = ">=1.8,<3" [package.extras] test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] +[[package]] +name = "numpy" +version = "2.2.3" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "numpy-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cbc6472e01952d3d1b2772b720428f8b90e2deea8344e854df22b0618e9cce71"}, + {file = "numpy-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdfe0c22692a30cd830c0755746473ae66c4a8f2e7bd508b35fb3b6a0813d787"}, + {file = "numpy-2.2.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:e37242f5324ffd9f7ba5acf96d774f9276aa62a966c0bad8dae692deebec7716"}, + {file = "numpy-2.2.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:95172a21038c9b423e68be78fd0be6e1b97674cde269b76fe269a5dfa6fadf0b"}, + {file = "numpy-2.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5b47c440210c5d1d67e1cf434124e0b5c395eee1f5806fdd89b553ed1acd0a3"}, + {file = "numpy-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0391ea3622f5c51a2e29708877d56e3d276827ac5447d7f45e9bc4ade8923c52"}, + {file = "numpy-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f6b3dfc7661f8842babd8ea07e9897fe3d9b69a1d7e5fbb743e4160f9387833b"}, + {file = "numpy-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1ad78ce7f18ce4e7df1b2ea4019b5817a2f6a8a16e34ff2775f646adce0a5027"}, + {file = "numpy-2.2.3-cp310-cp310-win32.whl", hash = "sha256:5ebeb7ef54a7be11044c33a17b2624abe4307a75893c001a4800857956b41094"}, + {file = "numpy-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:596140185c7fa113563c67c2e894eabe0daea18cf8e33851738c19f70ce86aeb"}, + {file = "numpy-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:16372619ee728ed67a2a606a614f56d3eabc5b86f8b615c79d01957062826ca8"}, + {file = "numpy-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5521a06a3148686d9269c53b09f7d399a5725c47bbb5b35747e1cb76326b714b"}, + {file = "numpy-2.2.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7c8dde0ca2f77828815fd1aedfdf52e59071a5bae30dac3b4da2a335c672149a"}, + {file = "numpy-2.2.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:77974aba6c1bc26e3c205c2214f0d5b4305bdc719268b93e768ddb17e3fdd636"}, + {file = "numpy-2.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d42f9c36d06440e34226e8bd65ff065ca0963aeecada587b937011efa02cdc9d"}, + {file = "numpy-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2712c5179f40af9ddc8f6727f2bd910ea0eb50206daea75f58ddd9fa3f715bb"}, + {file = "numpy-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c8b0451d2ec95010d1db8ca733afc41f659f425b7f608af569711097fd6014e2"}, + {file = "numpy-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d9b4a8148c57ecac25a16b0e11798cbe88edf5237b0df99973687dd866f05e1b"}, + {file = "numpy-2.2.3-cp311-cp311-win32.whl", hash = "sha256:1f45315b2dc58d8a3e7754fe4e38b6fce132dab284a92851e41b2b344f6441c5"}, + {file = "numpy-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f48ba6f6c13e5e49f3d3efb1b51c8193215c42ac82610a04624906a9270be6f"}, + {file = "numpy-2.2.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:12c045f43b1d2915eca6b880a7f4a256f59d62df4f044788c8ba67709412128d"}, + {file = "numpy-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:87eed225fd415bbae787f93a457af7f5990b92a334e346f72070bf569b9c9c95"}, + {file = "numpy-2.2.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:712a64103d97c404e87d4d7c47fb0c7ff9acccc625ca2002848e0d53288b90ea"}, + {file = "numpy-2.2.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a5ae282abe60a2db0fd407072aff4599c279bcd6e9a2475500fc35b00a57c532"}, + {file = "numpy-2.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5266de33d4c3420973cf9ae3b98b54a2a6d53a559310e3236c4b2b06b9c07d4e"}, + {file = "numpy-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b787adbf04b0db1967798dba8da1af07e387908ed1553a0d6e74c084d1ceafe"}, + {file = "numpy-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:34c1b7e83f94f3b564b35f480f5652a47007dd91f7c839f404d03279cc8dd021"}, + {file = "numpy-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d8335b5f1b6e2bce120d55fb17064b0262ff29b459e8493d1785c18ae2553b8"}, + {file = "numpy-2.2.3-cp312-cp312-win32.whl", hash = "sha256:4d9828d25fb246bedd31e04c9e75714a4087211ac348cb39c8c5f99dbb6683fe"}, + {file = "numpy-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:83807d445817326b4bcdaaaf8e8e9f1753da04341eceec705c001ff342002e5d"}, + {file = "numpy-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7bfdb06b395385ea9b91bf55c1adf1b297c9fdb531552845ff1d3ea6e40d5aba"}, + {file = "numpy-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:23c9f4edbf4c065fddb10a4f6e8b6a244342d95966a48820c614891e5059bb50"}, + {file = "numpy-2.2.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:a0c03b6be48aaf92525cccf393265e02773be8fd9551a2f9adbe7db1fa2b60f1"}, + {file = "numpy-2.2.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:2376e317111daa0a6739e50f7ee2a6353f768489102308b0d98fcf4a04f7f3b5"}, + {file = "numpy-2.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fb62fe3d206d72fe1cfe31c4a1106ad2b136fcc1606093aeab314f02930fdf2"}, + {file = "numpy-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52659ad2534427dffcc36aac76bebdd02b67e3b7a619ac67543bc9bfe6b7cdb1"}, + {file = "numpy-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1b416af7d0ed3271cad0f0a0d0bee0911ed7eba23e66f8424d9f3dfcdcae1304"}, + {file = "numpy-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1402da8e0f435991983d0a9708b779f95a8c98c6b18a171b9f1be09005e64d9d"}, + {file = "numpy-2.2.3-cp313-cp313-win32.whl", hash = "sha256:136553f123ee2951bfcfbc264acd34a2fc2f29d7cdf610ce7daf672b6fbaa693"}, + {file = "numpy-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:5b732c8beef1d7bc2d9e476dbba20aaff6167bf205ad9aa8d30913859e82884b"}, + {file = "numpy-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:435e7a933b9fda8126130b046975a968cc2d833b505475e588339e09f7672890"}, + {file = "numpy-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7678556eeb0152cbd1522b684dcd215250885993dd00adb93679ec3c0e6e091c"}, + {file = "numpy-2.2.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2e8da03bd561504d9b20e7a12340870dfc206c64ea59b4cfee9fceb95070ee94"}, + {file = "numpy-2.2.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:c9aa4496fd0e17e3843399f533d62857cef5900facf93e735ef65aa4bbc90ef0"}, + {file = "numpy-2.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4ca91d61a4bf61b0f2228f24bbfa6a9facd5f8af03759fe2a655c50ae2c6610"}, + {file = "numpy-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:deaa09cd492e24fd9b15296844c0ad1b3c976da7907e1c1ed3a0ad21dded6f76"}, + {file = "numpy-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:246535e2f7496b7ac85deffe932896a3577be7af8fb7eebe7146444680297e9a"}, + {file = "numpy-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:daf43a3d1ea699402c5a850e5313680ac355b4adc9770cd5cfc2940e7861f1bf"}, + {file = "numpy-2.2.3-cp313-cp313t-win32.whl", hash = "sha256:cf802eef1f0134afb81fef94020351be4fe1d6681aadf9c5e862af6602af64ef"}, + {file = "numpy-2.2.3-cp313-cp313t-win_amd64.whl", hash = "sha256:aee2512827ceb6d7f517c8b85aa5d3923afe8fc7a57d028cffcd522f1c6fd082"}, + {file = "numpy-2.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3c2ec8a0f51d60f1e9c0c5ab116b7fc104b165ada3f6c58abf881cb2eb16044d"}, + {file = "numpy-2.2.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:ed2cf9ed4e8ebc3b754d398cba12f24359f018b416c380f577bbae112ca52fc9"}, + {file = "numpy-2.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39261798d208c3095ae4f7bc8eaeb3481ea8c6e03dc48028057d3cbdbdb8937e"}, + {file = "numpy-2.2.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:783145835458e60fa97afac25d511d00a1eca94d4a8f3ace9fe2043003c678e4"}, + {file = "numpy-2.2.3.tar.gz", hash = "sha256:dbdc15f0c81611925f382dfa97b3bd0bc2c1ce19d4fe50482cb0ddc12ba30020"}, +] + [[package]] name = "openpyxl" version = "3.1.5" @@ -2306,29 +2642,115 @@ files = [ [[package]] name = "owlrl" -version = "6.0.2" -description = "OWL-RL and RDFS based RDF Closure inferencing for Python" +version = "7.1.3" +description = "A simple implementation of the OWL2 RL Profile, as well as a basic RDFS inference, on top of RDFLib. Based mechanical forward chaining." optional = false -python-versions = "*" +python-versions = "<4.0,>=3.8.1" files = [ - {file = "owlrl-6.0.2-py3-none-any.whl", hash = "sha256:57eca06b221edbbc682376c8d42e2ddffc99f61e82c0da02e26735592f08bacc"}, - {file = "owlrl-6.0.2.tar.gz", hash = "sha256:904e3310ff4df15101475776693d2427d1f8244ee9a6a9f9e13c3c57fae90b74"}, + {file = "owlrl-7.1.3-py3-none-any.whl", hash = "sha256:371076ed3427b7962bf5675aded0bb2d23bee61595b85582f8dce11f75ee10a8"}, + {file = "owlrl-7.1.3.tar.gz", hash = "sha256:c9acf66135821ed7a6c4e002387bdb60a5804c86bf0210310df7d5a5da5d2eb1"}, ] [package.dependencies] -rdflib = ">=6.0.2" +rdflib = ">=7.1.3" [[package]] name = "packaging" -version = "24.1" +version = "24.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, + {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, + {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, +] + +[[package]] +name = "pandas" +version = "2.2.3" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5"}, + {file = "pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348"}, + {file = "pandas-2.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed"}, + {file = "pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57"}, + {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42"}, + {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f"}, + {file = "pandas-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645"}, + {file = "pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039"}, + {file = "pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd"}, + {file = "pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698"}, + {file = "pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc"}, + {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3"}, + {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32"}, + {file = "pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5"}, + {file = "pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9"}, + {file = "pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4"}, + {file = "pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3"}, + {file = "pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319"}, + {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8"}, + {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a"}, + {file = "pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13"}, + {file = "pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015"}, + {file = "pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28"}, + {file = "pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0"}, + {file = "pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24"}, + {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659"}, + {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb"}, + {file = "pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d"}, + {file = "pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468"}, + {file = "pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18"}, + {file = "pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2"}, + {file = "pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4"}, + {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d"}, + {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a"}, + {file = "pandas-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc6b93f9b966093cb0fd62ff1a7e4c09e6d546ad7c1de191767baffc57628f39"}, + {file = "pandas-2.2.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5dbca4c1acd72e8eeef4753eeca07de9b1db4f398669d5994086f788a5d7cc30"}, + {file = "pandas-2.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8cd6d7cc958a3910f934ea8dbdf17b2364827bb4dafc38ce6eef6bb3d65ff09c"}, + {file = "pandas-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99df71520d25fade9db7c1076ac94eb994f4d2673ef2aa2e86ee039b6746d20c"}, + {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31d0ced62d4ea3e231a9f228366919a5ea0b07440d9d4dac345376fd8e1477ea"}, + {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7eee9e7cea6adf3e3d24e304ac6b8300646e2a5d1cd3a3c2abed9101b0846761"}, + {file = "pandas-2.2.3-cp39-cp39-win_amd64.whl", hash = "sha256:4850ba03528b6dd51d6c5d273c46f183f39a9baf3f0143e566b89450965b105e"}, + {file = "pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667"}, ] +[package.dependencies] +numpy = [ + {version = ">=1.22.4", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + [[package]] name = "pandocfilters" version = "1.5.1" @@ -2381,42 +2803,108 @@ files = [ ptyprocess = ">=0.5" [[package]] -name = "pickleshare" -version = "0.7.5" -description = "Tiny 'shelve'-like database with concurrency support" -optional = false -python-versions = "*" -files = [ - {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, - {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, +name = "pillow" +version = "11.1.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pillow-11.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:e1abe69aca89514737465752b4bcaf8016de61b3be1397a8fc260ba33321b3a8"}, + {file = "pillow-11.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c640e5a06869c75994624551f45e5506e4256562ead981cce820d5ab39ae2192"}, + {file = "pillow-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a07dba04c5e22824816b2615ad7a7484432d7f540e6fa86af60d2de57b0fcee2"}, + {file = "pillow-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e267b0ed063341f3e60acd25c05200df4193e15a4a5807075cd71225a2386e26"}, + {file = "pillow-11.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd165131fd51697e22421d0e467997ad31621b74bfc0b75956608cb2906dda07"}, + {file = "pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:abc56501c3fd148d60659aae0af6ddc149660469082859fa7b066a298bde9482"}, + {file = "pillow-11.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:54ce1c9a16a9561b6d6d8cb30089ab1e5eb66918cb47d457bd996ef34182922e"}, + {file = "pillow-11.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:73ddde795ee9b06257dac5ad42fcb07f3b9b813f8c1f7f870f402f4dc54b5269"}, + {file = "pillow-11.1.0-cp310-cp310-win32.whl", hash = "sha256:3a5fe20a7b66e8135d7fd617b13272626a28278d0e578c98720d9ba4b2439d49"}, + {file = "pillow-11.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6123aa4a59d75f06e9dd3dac5bf8bc9aa383121bb3dd9a7a612e05eabc9961a"}, + {file = "pillow-11.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:a76da0a31da6fcae4210aa94fd779c65c75786bc9af06289cd1c184451ef7a65"}, + {file = "pillow-11.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457"}, + {file = "pillow-11.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35"}, + {file = "pillow-11.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2"}, + {file = "pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070"}, + {file = "pillow-11.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6"}, + {file = "pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1"}, + {file = "pillow-11.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2"}, + {file = "pillow-11.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96"}, + {file = "pillow-11.1.0-cp311-cp311-win32.whl", hash = "sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f"}, + {file = "pillow-11.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761"}, + {file = "pillow-11.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71"}, + {file = "pillow-11.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2062ffb1d36544d42fcaa277b069c88b01bb7298f4efa06731a7fd6cc290b81a"}, + {file = "pillow-11.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a85b653980faad27e88b141348707ceeef8a1186f75ecc600c395dcac19f385b"}, + {file = "pillow-11.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9409c080586d1f683df3f184f20e36fb647f2e0bc3988094d4fd8c9f4eb1b3b3"}, + {file = "pillow-11.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fdadc077553621911f27ce206ffcbec7d3f8d7b50e0da39f10997e8e2bb7f6a"}, + {file = "pillow-11.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:93a18841d09bcdd774dcdc308e4537e1f867b3dec059c131fde0327899734aa1"}, + {file = "pillow-11.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9aa9aeddeed452b2f616ff5507459e7bab436916ccb10961c4a382cd3e03f47f"}, + {file = "pillow-11.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3cdcdb0b896e981678eee140d882b70092dac83ac1cdf6b3a60e2216a73f2b91"}, + {file = "pillow-11.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:36ba10b9cb413e7c7dfa3e189aba252deee0602c86c309799da5a74009ac7a1c"}, + {file = "pillow-11.1.0-cp312-cp312-win32.whl", hash = "sha256:cfd5cd998c2e36a862d0e27b2df63237e67273f2fc78f47445b14e73a810e7e6"}, + {file = "pillow-11.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:a697cd8ba0383bba3d2d3ada02b34ed268cb548b369943cd349007730c92bddf"}, + {file = "pillow-11.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:4dd43a78897793f60766563969442020e90eb7847463eca901e41ba186a7d4a5"}, + {file = "pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc"}, + {file = "pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0"}, + {file = "pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1"}, + {file = "pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec"}, + {file = "pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5"}, + {file = "pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114"}, + {file = "pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352"}, + {file = "pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3"}, + {file = "pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9"}, + {file = "pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c"}, + {file = "pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65"}, + {file = "pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861"}, + {file = "pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081"}, + {file = "pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c"}, + {file = "pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547"}, + {file = "pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab"}, + {file = "pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9"}, + {file = "pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe"}, + {file = "pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756"}, + {file = "pillow-11.1.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:bf902d7413c82a1bfa08b06a070876132a5ae6b2388e2712aab3a7cbc02205c6"}, + {file = "pillow-11.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c1eec9d950b6fe688edee07138993e54ee4ae634c51443cfb7c1e7613322718e"}, + {file = "pillow-11.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e275ee4cb11c262bd108ab2081f750db2a1c0b8c12c1897f27b160c8bd57bbc"}, + {file = "pillow-11.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4db853948ce4e718f2fc775b75c37ba2efb6aaea41a1a5fc57f0af59eee774b2"}, + {file = "pillow-11.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ab8a209b8485d3db694fa97a896d96dd6533d63c22829043fd9de627060beade"}, + {file = "pillow-11.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:54251ef02a2309b5eec99d151ebf5c9904b77976c8abdcbce7891ed22df53884"}, + {file = "pillow-11.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5bb94705aea800051a743aa4874bb1397d4695fb0583ba5e425ee0328757f196"}, + {file = "pillow-11.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:89dbdb3e6e9594d512780a5a1c42801879628b38e3efc7038094430844e271d8"}, + {file = "pillow-11.1.0-cp39-cp39-win32.whl", hash = "sha256:e5449ca63da169a2e6068dd0e2fcc8d91f9558aba89ff6d02121ca8ab11e79e5"}, + {file = "pillow-11.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:3362c6ca227e65c54bf71a5f88b3d4565ff1bcbc63ae72c34b07bbb1cc59a43f"}, + {file = "pillow-11.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:b20be51b37a75cc54c2c55def3fa2c65bb94ba859dde241cd0a4fd302de5ae0a"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8c730dc3a83e5ac137fbc92dfcfe1511ce3b2b5d7578315b63dbbb76f7f51d90"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d33d2fae0e8b170b6a6c57400e077412240f6f5bb2a342cf1ee512a787942bb"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8d65b38173085f24bc07f8b6c505cbb7418009fa1a1fcb111b1f4961814a442"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:015c6e863faa4779251436db398ae75051469f7c903b043a48f078e437656f83"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d44ff19eea13ae4acdaaab0179fa68c0c6f2f45d66a4d8ec1eda7d6cecbcc15f"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d3d8da4a631471dfaf94c10c85f5277b1f8e42ac42bade1ac67da4b4a7359b73"}, + {file = "pillow-11.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:4637b88343166249fe8aa94e7c4a62a180c4b3898283bb5d3d2fd5fe10d8e4e0"}, + {file = "pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20"}, ] -[[package]] -name = "pkgutil-resolve-name" -version = "1.3.10" -description = "Resolve a name to an object." -optional = false -python-versions = ">=3.6" -files = [ - {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, - {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, -] +[package.extras] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +tests = ["check-manifest", "coverage (>=7.4.2)", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout", "trove-classifiers (>=2024.10.12)"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -2453,13 +2941,13 @@ virtualenv = ">=20.10.0" [[package]] name = "prettytable" -version = "3.11.0" +version = "3.15.1" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "prettytable-3.11.0-py3-none-any.whl", hash = "sha256:aa17083feb6c71da11a68b2c213b04675c4af4ce9c541762632ca3f2cb3546dd"}, - {file = "prettytable-3.11.0.tar.gz", hash = "sha256:7e23ca1e68bbfd06ba8de98bf553bf3493264c96d5e8a615c0471025deeba722"}, + {file = "prettytable-3.15.1-py3-none-any.whl", hash = "sha256:1bb0da7437e904ec879d2998aded19abc722719aa3d384a7faa44dcbe4aeb2e9"}, + {file = "prettytable-3.15.1.tar.gz", hash = "sha256:f0edb38060cb9161b2417939bfd5cd9877da73388fb19d1e8bf7987e8558896e"}, ] [package.dependencies] @@ -2470,13 +2958,13 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixtures"] [[package]] name = "prometheus-client" -version = "0.20.0" +version = "0.21.1" description = "Python client for the Prometheus monitoring system." optional = false python-versions = ">=3.8" files = [ - {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"}, - {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"}, + {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"}, + {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"}, ] [package.extras] @@ -2484,13 +2972,13 @@ twisted = ["twisted"] [[package]] name = "prompt-toolkit" -version = "3.0.47" +version = "3.0.50" description = "Library for building powerful interactive command lines in Python" optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" files = [ - {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"}, - {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"}, + {file = "prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198"}, + {file = "prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab"}, ] [package.dependencies] @@ -2498,134 +2986,119 @@ wcwidth = "*" [[package]] name = "psutil" -version = "6.0.0" -description = "Cross-platform lib for process and system monitoring in Python." +version = "7.0.0" +description = "Cross-platform lib for process and system monitoring in Python. NOTE: the syntax of this script MUST be kept compatible with Python 2.7." optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +python-versions = ">=3.6" files = [ - {file = "psutil-6.0.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a021da3e881cd935e64a3d0a20983bda0bb4cf80e4f74fa9bfcb1bc5785360c6"}, - {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1287c2b95f1c0a364d23bc6f2ea2365a8d4d9b726a3be7294296ff7ba97c17f0"}, - {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a9a3dbfb4de4f18174528d87cc352d1f788b7496991cca33c6996f40c9e3c92c"}, - {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6ec7588fb3ddaec7344a825afe298db83fe01bfaaab39155fa84cf1c0d6b13c3"}, - {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:1e7c870afcb7d91fdea2b37c24aeb08f98b6d67257a5cb0a8bc3ac68d0f1a68c"}, - {file = "psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35"}, - {file = "psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1"}, - {file = "psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0"}, - {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0"}, - {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd"}, - {file = "psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132"}, - {file = "psutil-6.0.0-cp36-cp36m-win32.whl", hash = "sha256:fc8c9510cde0146432bbdb433322861ee8c3efbf8589865c8bf8d21cb30c4d14"}, - {file = "psutil-6.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:34859b8d8f423b86e4385ff3665d3f4d94be3cdf48221fbe476e883514fdb71c"}, - {file = "psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d"}, - {file = "psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3"}, - {file = "psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0"}, - {file = "psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2"}, + {file = "psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25"}, + {file = "psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da"}, + {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91"}, + {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34"}, + {file = "psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993"}, + {file = "psutil-7.0.0-cp36-cp36m-win32.whl", hash = "sha256:84df4eb63e16849689f76b1ffcb36db7b8de703d1bc1fe41773db487621b6c17"}, + {file = "psutil-7.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1e744154a6580bc968a0195fd25e80432d3afec619daf145b9e5ba16cc1d688e"}, + {file = "psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99"}, + {file = "psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553"}, + {file = "psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456"}, ] [package.extras] -test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] +dev = ["abi3audit", "black (==24.10.0)", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest", "pytest-cov", "pytest-xdist", "requests", "rstcheck", "ruff", "setuptools", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "vulture", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] [[package]] name = "psycopg2" -version = "2.9.9" +version = "2.9.10" description = "psycopg2 - Python-PostgreSQL Database Adapter" optional = true -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "psycopg2-2.9.9-cp310-cp310-win32.whl", hash = "sha256:38a8dcc6856f569068b47de286b472b7c473ac7977243593a288ebce0dc89516"}, - {file = "psycopg2-2.9.9-cp310-cp310-win_amd64.whl", hash = "sha256:426f9f29bde126913a20a96ff8ce7d73fd8a216cfb323b1f04da402d452853c3"}, - {file = "psycopg2-2.9.9-cp311-cp311-win32.whl", hash = "sha256:ade01303ccf7ae12c356a5e10911c9e1c51136003a9a1d92f7aa9d010fb98372"}, - {file = "psycopg2-2.9.9-cp311-cp311-win_amd64.whl", hash = "sha256:121081ea2e76729acfb0673ff33755e8703d45e926e416cb59bae3a86c6a4981"}, - {file = "psycopg2-2.9.9-cp312-cp312-win32.whl", hash = "sha256:d735786acc7dd25815e89cc4ad529a43af779db2e25aa7c626de864127e5a024"}, - {file = "psycopg2-2.9.9-cp312-cp312-win_amd64.whl", hash = "sha256:a7653d00b732afb6fc597e29c50ad28087dcb4fbfb28e86092277a559ae4e693"}, - {file = "psycopg2-2.9.9-cp37-cp37m-win32.whl", hash = "sha256:5e0d98cade4f0e0304d7d6f25bbfbc5bd186e07b38eac65379309c4ca3193efa"}, - {file = "psycopg2-2.9.9-cp37-cp37m-win_amd64.whl", hash = "sha256:7e2dacf8b009a1c1e843b5213a87f7c544b2b042476ed7755be813eaf4e8347a"}, - {file = "psycopg2-2.9.9-cp38-cp38-win32.whl", hash = "sha256:ff432630e510709564c01dafdbe996cb552e0b9f3f065eb89bdce5bd31fabf4c"}, - {file = "psycopg2-2.9.9-cp38-cp38-win_amd64.whl", hash = "sha256:bac58c024c9922c23550af2a581998624d6e02350f4ae9c5f0bc642c633a2d5e"}, - {file = "psycopg2-2.9.9-cp39-cp39-win32.whl", hash = "sha256:c92811b2d4c9b6ea0285942b2e7cac98a59e166d59c588fe5cfe1eda58e72d59"}, - {file = "psycopg2-2.9.9-cp39-cp39-win_amd64.whl", hash = "sha256:de80739447af31525feddeb8effd640782cf5998e1a4e9192ebdf829717e3913"}, - {file = "psycopg2-2.9.9.tar.gz", hash = "sha256:d1454bde93fb1e224166811694d600e746430c006fbb031ea06ecc2ea41bf156"}, + {file = "psycopg2-2.9.10-cp310-cp310-win32.whl", hash = "sha256:5df2b672140f95adb453af93a7d669d7a7bf0a56bcd26f1502329166f4a61716"}, + {file = "psycopg2-2.9.10-cp310-cp310-win_amd64.whl", hash = "sha256:c6f7b8561225f9e711a9c47087388a97fdc948211c10a4bccbf0ba68ab7b3b5a"}, + {file = "psycopg2-2.9.10-cp311-cp311-win32.whl", hash = "sha256:47c4f9875125344f4c2b870e41b6aad585901318068acd01de93f3677a6522c2"}, + {file = "psycopg2-2.9.10-cp311-cp311-win_amd64.whl", hash = "sha256:0435034157049f6846e95103bd8f5a668788dd913a7c30162ca9503fdf542cb4"}, + {file = "psycopg2-2.9.10-cp312-cp312-win32.whl", hash = "sha256:65a63d7ab0e067e2cdb3cf266de39663203d38d6a8ed97f5ca0cb315c73fe067"}, + {file = "psycopg2-2.9.10-cp312-cp312-win_amd64.whl", hash = "sha256:4a579d6243da40a7b3182e0430493dbd55950c493d8c68f4eec0b302f6bbf20e"}, + {file = "psycopg2-2.9.10-cp39-cp39-win32.whl", hash = "sha256:9d5b3b94b79a844a986d029eee38998232451119ad653aea42bb9220a8c5066b"}, + {file = "psycopg2-2.9.10-cp39-cp39-win_amd64.whl", hash = "sha256:88138c8dedcbfa96408023ea2b0c369eda40fe5d75002c0964c78f46f11fa442"}, + {file = "psycopg2-2.9.10.tar.gz", hash = "sha256:12ec0b40b0273f95296233e8750441339298e6a572f7039da5b260e3c8b60e11"}, ] [[package]] name = "psycopg2-binary" -version = "2.9.9" +version = "2.9.10" description = "psycopg2 - Python-PostgreSQL Database Adapter" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c6af2a6d4b7ee9615cbb162b0738f6e1fd1f5c3eda7e5da17861eacf4c717ea7"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:75723c3c0fbbf34350b46a3199eb50638ab22a0228f93fb472ef4d9becc2382b"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83791a65b51ad6ee6cf0845634859d69a038ea9b03d7b26e703f94c7e93dbcf9"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ef4854e82c09e84cc63084a9e4ccd6d9b154f1dbdd283efb92ecd0b5e2b8c84"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed1184ab8f113e8d660ce49a56390ca181f2981066acc27cf637d5c1e10ce46e"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d2997c458c690ec2bc6b0b7ecbafd02b029b7b4283078d3b32a852a7ce3ddd98"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b58b4710c7f4161b5e9dcbe73bb7c62d65670a87df7bcce9e1faaad43e715245"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0c009475ee389757e6e34611d75f6e4f05f0cf5ebb76c6037508318e1a1e0d7e"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8dbf6d1bc73f1d04ec1734bae3b4fb0ee3cb2a493d35ede9badbeb901fb40f6f"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-win32.whl", hash = "sha256:3f78fd71c4f43a13d342be74ebbc0666fe1f555b8837eb113cb7416856c79682"}, - {file = "psycopg2_binary-2.9.9-cp310-cp310-win_amd64.whl", hash = "sha256:876801744b0dee379e4e3c38b76fc89f88834bb15bf92ee07d94acd06ec890a0"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ee825e70b1a209475622f7f7b776785bd68f34af6e7a46e2e42f27b659b5bc26"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1ea665f8ce695bcc37a90ee52de7a7980be5161375d42a0b6c6abedbf0d81f0f"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:143072318f793f53819048fdfe30c321890af0c3ec7cb1dfc9cc87aa88241de2"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c332c8d69fb64979ebf76613c66b985414927a40f8defa16cf1bc028b7b0a7b0"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7fc5a5acafb7d6ccca13bfa8c90f8c51f13d8fb87d95656d3950f0158d3ce53"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977646e05232579d2e7b9c59e21dbe5261f403a88417f6a6512e70d3f8a046be"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b6356793b84728d9d50ead16ab43c187673831e9d4019013f1402c41b1db9b27"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bc7bb56d04601d443f24094e9e31ae6deec9ccb23581f75343feebaf30423359"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:77853062a2c45be16fd6b8d6de2a99278ee1d985a7bd8b103e97e41c034006d2"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:78151aa3ec21dccd5cdef6c74c3e73386dcdfaf19bced944169697d7ac7482fc"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-win32.whl", hash = "sha256:dc4926288b2a3e9fd7b50dc6a1909a13bbdadfc67d93f3374d984e56f885579d"}, - {file = "psycopg2_binary-2.9.9-cp311-cp311-win_amd64.whl", hash = "sha256:b76bedd166805480ab069612119ea636f5ab8f8771e640ae103e05a4aae3e417"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:8532fd6e6e2dc57bcb3bc90b079c60de896d2128c5d9d6f24a63875a95a088cf"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0605eaed3eb239e87df0d5e3c6489daae3f7388d455d0c0b4df899519c6a38d"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f8544b092a29a6ddd72f3556a9fcf249ec412e10ad28be6a0c0d948924f2212"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d423c8d8a3c82d08fe8af900ad5b613ce3632a1249fd6a223941d0735fce493"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e5afae772c00980525f6d6ecf7cbca55676296b580c0e6abb407f15f3706996"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e6f98446430fdf41bd36d4faa6cb409f5140c1c2cf58ce0bbdaf16af7d3f119"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c77e3d1862452565875eb31bdb45ac62502feabbd53429fdc39a1cc341d681ba"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:cb16c65dcb648d0a43a2521f2f0a2300f40639f6f8c1ecbc662141e4e3e1ee07"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:911dda9c487075abd54e644ccdf5e5c16773470a6a5d3826fda76699410066fb"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:57fede879f08d23c85140a360c6a77709113efd1c993923c59fde17aa27599fe"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-win32.whl", hash = "sha256:64cf30263844fa208851ebb13b0732ce674d8ec6a0c86a4e160495d299ba3c93"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-win_amd64.whl", hash = "sha256:81ff62668af011f9a48787564ab7eded4e9fb17a4a6a74af5ffa6a457400d2ab"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2293b001e319ab0d869d660a704942c9e2cce19745262a8aba2115ef41a0a42a"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ef7df18daf2c4c07e2695e8cfd5ee7f748a1d54d802330985a78d2a5a6dca9"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a602ea5aff39bb9fac6308e9c9d82b9a35c2bf288e184a816002c9fae930b77"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8359bf4791968c5a78c56103702000105501adb557f3cf772b2c207284273984"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:275ff571376626195ab95a746e6a04c7df8ea34638b99fc11160de91f2fef503"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f9b5571d33660d5009a8b3c25dc1db560206e2d2f89d3df1cb32d72c0d117d52"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:420f9bbf47a02616e8554e825208cb947969451978dceb77f95ad09c37791dae"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:4154ad09dac630a0f13f37b583eae260c6aa885d67dfbccb5b02c33f31a6d420"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a148c5d507bb9b4f2030a2025c545fccb0e1ef317393eaba42e7eabd28eb6041"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-win32.whl", hash = "sha256:68fc1f1ba168724771e38bee37d940d2865cb0f562380a1fb1ffb428b75cb692"}, - {file = "psycopg2_binary-2.9.9-cp37-cp37m-win_amd64.whl", hash = "sha256:281309265596e388ef483250db3640e5f414168c5a67e9c665cafce9492eda2f"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:60989127da422b74a04345096c10d416c2b41bd7bf2a380eb541059e4e999980"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:246b123cc54bb5361588acc54218c8c9fb73068bf227a4a531d8ed56fa3ca7d6"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34eccd14566f8fe14b2b95bb13b11572f7c7d5c36da61caf414d23b91fcc5d94"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18d0ef97766055fec15b5de2c06dd8e7654705ce3e5e5eed3b6651a1d2a9a152"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d3f82c171b4ccd83bbaf35aa05e44e690113bd4f3b7b6cc54d2219b132f3ae55"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ead20f7913a9c1e894aebe47cccf9dc834e1618b7aa96155d2091a626e59c972"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ca49a8119c6cbd77375ae303b0cfd8c11f011abbbd64601167ecca18a87e7cdd"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:323ba25b92454adb36fa425dc5cf6f8f19f78948cbad2e7bc6cdf7b0d7982e59"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:1236ed0952fbd919c100bc839eaa4a39ebc397ed1c08a97fc45fee2a595aa1b3"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:729177eaf0aefca0994ce4cffe96ad3c75e377c7b6f4efa59ebf003b6d398716"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-win32.whl", hash = "sha256:804d99b24ad523a1fe18cc707bf741670332f7c7412e9d49cb5eab67e886b9b5"}, - {file = "psycopg2_binary-2.9.9-cp38-cp38-win_amd64.whl", hash = "sha256:a6cdcc3ede532f4a4b96000b6362099591ab4a3e913d70bcbac2b56c872446f7"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:72dffbd8b4194858d0941062a9766f8297e8868e1dd07a7b36212aaa90f49472"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:30dcc86377618a4c8f3b72418df92e77be4254d8f89f14b8e8f57d6d43603c0f"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31a34c508c003a4347d389a9e6fcc2307cc2150eb516462a7a17512130de109e"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15208be1c50b99203fe88d15695f22a5bed95ab3f84354c494bcb1d08557df67"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1873aade94b74715be2246321c8650cabf5a0d098a95bab81145ffffa4c13876"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a58c98a7e9c021f357348867f537017057c2ed7f77337fd914d0bedb35dace7"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4686818798f9194d03c9129a4d9a702d9e113a89cb03bffe08c6cf799e053291"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ebdc36bea43063116f0486869652cb2ed7032dbc59fbcb4445c4862b5c1ecf7f"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:ca08decd2697fdea0aea364b370b1249d47336aec935f87b8bbfd7da5b2ee9c1"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ac05fb791acf5e1a3e39402641827780fe44d27e72567a000412c648a85ba860"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-win32.whl", hash = "sha256:9dba73be7305b399924709b91682299794887cbbd88e38226ed9f6712eabee90"}, - {file = "psycopg2_binary-2.9.9-cp39-cp39-win_amd64.whl", hash = "sha256:f7ae5d65ccfbebdfa761585228eb4d0df3a8b15cfb53bd953e713e09fbb12957"}, + {file = "psycopg2-binary-2.9.10.tar.gz", hash = "sha256:4b3df0e6990aa98acda57d983942eff13d824135fe2250e6522edaa782a06de2"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:0ea8e3d0ae83564f2fc554955d327fa081d065c8ca5cc6d2abb643e2c9c1200f"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:3e9c76f0ac6f92ecfc79516a8034a544926430f7b080ec5a0537bca389ee0906"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ad26b467a405c798aaa1458ba09d7e2b6e5f96b1ce0ac15d82fd9f95dc38a92"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:270934a475a0e4b6925b5f804e3809dd5f90f8613621d062848dd82f9cd62007"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:48b338f08d93e7be4ab2b5f1dbe69dc5e9ef07170fe1f86514422076d9c010d0"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4152f8f76d2023aac16285576a9ecd2b11a9895373a1f10fd9db54b3ff06b4"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:32581b3020c72d7a421009ee1c6bf4a131ef5f0a968fab2e2de0c9d2bb4577f1"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2ce3e21dc3437b1d960521eca599d57408a695a0d3c26797ea0f72e834c7ffe5"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e984839e75e0b60cfe75e351db53d6db750b00de45644c5d1f7ee5d1f34a1ce5"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c4745a90b78e51d9ba06e2088a2fe0c693ae19cc8cb051ccda44e8df8a6eb53"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-win32.whl", hash = "sha256:e5720a5d25e3b99cd0dc5c8a440570469ff82659bb09431c1439b92caf184d3b"}, + {file = "psycopg2_binary-2.9.10-cp310-cp310-win_amd64.whl", hash = "sha256:3c18f74eb4386bf35e92ab2354a12c17e5eb4d9798e4c0ad3a00783eae7cd9f1"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:04392983d0bb89a8717772a193cfaac58871321e3ec69514e1c4e0d4957b5aff"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:1a6784f0ce3fec4edc64e985865c17778514325074adf5ad8f80636cd029ef7c"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5f86c56eeb91dc3135b3fd8a95dc7ae14c538a2f3ad77a19645cf55bab1799c"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b3d2491d4d78b6b14f76881905c7a8a8abcf974aad4a8a0b065273a0ed7a2cb"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2286791ececda3a723d1910441c793be44625d86d1a4e79942751197f4d30341"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:512d29bb12608891e349af6a0cccedce51677725a921c07dba6342beaf576f9a"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5a507320c58903967ef7384355a4da7ff3f28132d679aeb23572753cbf2ec10b"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6d4fa1079cab9018f4d0bd2db307beaa612b0d13ba73b5c6304b9fe2fb441ff7"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:851485a42dbb0bdc1edcdabdb8557c09c9655dfa2ca0460ff210522e073e319e"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:35958ec9e46432d9076286dda67942ed6d968b9c3a6a2fd62b48939d1d78bf68"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-win32.whl", hash = "sha256:ecced182e935529727401b24d76634a357c71c9275b356efafd8a2a91ec07392"}, + {file = "psycopg2_binary-2.9.10-cp311-cp311-win_amd64.whl", hash = "sha256:ee0e8c683a7ff25d23b55b11161c2663d4b099770f6085ff0a20d4505778d6b4"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:880845dfe1f85d9d5f7c412efea7a08946a46894537e4e5d091732eb1d34d9a0"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9440fa522a79356aaa482aa4ba500b65f28e5d0e63b801abf6aa152a29bd842a"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3923c1d9870c49a2d44f795df0c889a22380d36ef92440ff618ec315757e539"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b2c956c028ea5de47ff3a8d6b3cc3330ab45cf0b7c3da35a2d6ff8420896526"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f758ed67cab30b9a8d2833609513ce4d3bd027641673d4ebc9c067e4d208eec1"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cd9b4f2cfab88ed4a9106192de509464b75a906462fb846b936eabe45c2063e"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dc08420625b5a20b53551c50deae6e231e6371194fa0651dbe0fb206452ae1f"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d7cd730dfa7c36dbe8724426bf5612798734bff2d3c3857f36f2733f5bfc7c00"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:155e69561d54d02b3c3209545fb08938e27889ff5a10c19de8d23eb5a41be8a5"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3cc28a6fd5a4a26224007712e79b81dbaee2ffb90ff406256158ec4d7b52b47"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-win32.whl", hash = "sha256:ec8a77f521a17506a24a5f626cb2aee7850f9b69a0afe704586f63a464f3cd64"}, + {file = "psycopg2_binary-2.9.10-cp312-cp312-win_amd64.whl", hash = "sha256:18c5ee682b9c6dd3696dad6e54cc7ff3a1a9020df6a5c0f861ef8bfd338c3ca0"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:26540d4a9a4e2b096f1ff9cce51253d0504dca5a85872c7f7be23be5a53eb18d"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e217ce4d37667df0bc1c397fdcd8de5e81018ef305aed9415c3b093faaeb10fb"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:245159e7ab20a71d989da00f280ca57da7641fa2cdcf71749c193cea540a74f7"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c4ded1a24b20021ebe677b7b08ad10bf09aac197d6943bfe6fec70ac4e4690d"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3abb691ff9e57d4a93355f60d4f4c1dd2d68326c968e7db17ea96df3c023ef73"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8608c078134f0b3cbd9f89b34bd60a943b23fd33cc5f065e8d5f840061bd0673"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:230eeae2d71594103cd5b93fd29d1ace6420d0b86f4778739cb1a5a32f607d1f"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bb89f0a835bcfc1d42ccd5f41f04870c1b936d8507c6df12b7737febc40f0909"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f0c2d907a1e102526dd2986df638343388b94c33860ff3bbe1384130828714b1"}, + {file = "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f8157bed2f51db683f31306aa497311b560f2265998122abe1dce6428bd86567"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:eb09aa7f9cecb45027683bb55aebaaf45a0df8bf6de68801a6afdc7947bb09d4"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b73d6d7f0ccdad7bc43e6d34273f70d587ef62f824d7261c4ae9b8b1b6af90e8"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce5ab4bf46a211a8e924d307c1b1fcda82368586a19d0a24f8ae166f5c784864"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:056470c3dc57904bbf63d6f534988bafc4e970ffd50f6271fc4ee7daad9498a5"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73aa0e31fa4bb82578f3a6c74a73c273367727de397a7a0f07bd83cbea696baa"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8de718c0e1c4b982a54b41779667242bc630b2197948405b7bd8ce16bcecac92"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5c370b1e4975df846b0277b4deba86419ca77dbc25047f535b0bb03d1a544d44"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ffe8ed017e4ed70f68b7b371d84b7d4a790368db9203dfc2d222febd3a9c8863"}, + {file = "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8aecc5e80c63f7459a1a2ab2c64df952051df196294d9f739933a9f6687e86b3"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:7a813c8bdbaaaab1f078014b9b0b13f5de757e2b5d9be6403639b298a04d218b"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d00924255d7fc916ef66e4bf22f354a940c67179ad3fd7067d7a0a9c84d2fbfc"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7559bce4b505762d737172556a4e6ea8a9998ecac1e39b5233465093e8cee697"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8b58f0a96e7a1e341fc894f62c1177a7c83febebb5ff9123b579418fdc8a481"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b269105e59ac96aba877c1707c600ae55711d9dcd3fc4b5012e4af68e30c648"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:79625966e176dc97ddabc142351e0409e28acf4660b88d1cf6adb876d20c490d"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:8aabf1c1a04584c168984ac678a668094d831f152859d06e055288fa515e4d30"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:19721ac03892001ee8fdd11507e6a2e01f4e37014def96379411ca99d78aeb2c"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7f5d859928e635fa3ce3477704acee0f667b3a3d3e4bb109f2b18d4005f38287"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-win32.whl", hash = "sha256:3216ccf953b3f267691c90c6fe742e45d890d8272326b4a8b20850a03d05b7b8"}, + {file = "psycopg2_binary-2.9.10-cp39-cp39-win_amd64.whl", hash = "sha256:30e34c4e97964805f715206c7b789d54a78b70f3ff19fbe590104b71c45600e5"}, ] [[package]] @@ -2703,13 +3176,13 @@ pybtex = ">=0.16" [[package]] name = "pycodestyle" -version = "2.9.1" +version = "2.12.1" description = "Python style guide checker" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, - {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -2725,13 +3198,13 @@ files = [ [[package]] name = "pydata-sphinx-theme" -version = "0.14.4" +version = "0.15.4" description = "Bootstrap-based Sphinx theme from the PyData community" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pydata_sphinx_theme-0.14.4-py3-none-any.whl", hash = "sha256:ac15201f4c2e2e7042b0cad8b30251433c1f92be762ddcefdb4ae68811d918d9"}, - {file = "pydata_sphinx_theme-0.14.4.tar.gz", hash = "sha256:f5d7a2cb7a98e35b9b49d3b02cec373ad28958c2ed5c9b1ffe6aff6c56e9de5b"}, + {file = "pydata_sphinx_theme-0.15.4-py3-none-any.whl", hash = "sha256:2136ad0e9500d0949f96167e63f3e298620040aea8f9c74621959eda5d4cf8e6"}, + {file = "pydata_sphinx_theme-0.15.4.tar.gz", hash = "sha256:7762ec0ac59df3acecf49fd2f889e1b4565dbce8b88b2e29ee06fdd90645a06d"}, ] [package.dependencies] @@ -2741,78 +3214,79 @@ beautifulsoup4 = "*" docutils = "!=0.17.0" packaging = "*" pygments = ">=2.7" -sphinx = ">=5.0" +sphinx = ">=5" typing-extensions = "*" [package.extras] a11y = ["pytest-playwright"] -dev = ["nox", "pre-commit", "pydata-sphinx-theme[doc,test]", "pyyaml"] -doc = ["ablog (>=0.11.0rc2)", "colorama", "ipykernel", "ipyleaflet", "jupyter_sphinx", "jupyterlite-sphinx", "linkify-it-py", "matplotlib", "myst-parser", "nbsphinx", "numpy", "numpydoc", "pandas", "plotly", "rich", "sphinx-autoapi (>=3.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-favicon (>=1.0.1)", "sphinx-sitemap", "sphinx-togglebutton", "sphinxcontrib-youtube (<1.4)", "sphinxext-rediraffe", "xarray"] -test = ["pytest", "pytest-cov", "pytest-regressions"] +dev = ["pandoc", "pre-commit", "pydata-sphinx-theme[doc,test]", "pyyaml", "sphinx-theme-builder[cli]", "tox"] +doc = ["ablog (>=0.11.8)", "colorama", "graphviz", "ipykernel", "ipyleaflet", "ipywidgets", "jupyter_sphinx", "jupyterlite-sphinx", "linkify-it-py", "matplotlib", "myst-parser", "nbsphinx", "numpy", "numpydoc", "pandas", "plotly", "rich", "sphinx-autoapi (>=3.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-favicon (>=1.0.1)", "sphinx-sitemap", "sphinx-togglebutton", "sphinxcontrib-youtube (>=1.4.1)", "sphinxext-rediraffe", "xarray"] +i18n = ["Babel", "jinja2"] +test = ["pytest", "pytest-cov", "pytest-regressions", "sphinx[test]"] [[package]] name = "pyflakes" -version = "2.5.0" +version = "3.2.0" description = "passive checker of Python programs" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pyflakes-2.5.0-py2.py3-none-any.whl", hash = "sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2"}, - {file = "pyflakes-2.5.0.tar.gz", hash = "sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3"}, + {file = "pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a"}, + {file = "pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f"}, ] [[package]] name = "pygit2" -version = "1.11.1" +version = "1.17.0" description = "Python bindings for libgit2." optional = false -python-versions = ">=3.8" -files = [ - {file = "pygit2-1.11.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:263e05ac655a4ce0a1083aaaedfd0a900b8dee2c3bb3ecf4f4e504a404467d1f"}, - {file = "pygit2-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ee6b4a0e181c576cdb64b1568bfbff3d1c2cd7e99808f578c8b08875c0f43739"}, - {file = "pygit2-1.11.1-cp310-cp310-manylinux_2_24_aarch64.whl", hash = "sha256:d1b5fcaac1f29337f2d1465fa095e2e375b76a06385bda9391cb418c7937fb54"}, - {file = "pygit2-1.11.1-cp310-cp310-manylinux_2_24_x86_64.whl", hash = "sha256:96ff745d3199909d06cab5e419a6b953be99992414a08ec4dddb682f395de8f1"}, - {file = "pygit2-1.11.1-cp310-cp310-win32.whl", hash = "sha256:b3c8726f0c9a2b0e04aac37b18027c58c2697b9c021d3458b28bc250b9b6aecf"}, - {file = "pygit2-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:f42409d25bbfc090fd1af1f5f47584d7e0c4212b037a7f86639a02c30420c6ee"}, - {file = "pygit2-1.11.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:29f89d96bbb404ca1566418463521039903094fad2f81a76d7083810d2ea3aad"}, - {file = "pygit2-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d5c158b9430c5e76ca728b1a214bf21d355af6ac6e2da86ed17775b870b6c6eb"}, - {file = "pygit2-1.11.1-cp311-cp311-manylinux_2_24_aarch64.whl", hash = "sha256:6c3434b143e7570ec45cd1a0e344fe7a12e64b99e7155fa38b74f724c8fc243c"}, - {file = "pygit2-1.11.1-cp311-cp311-manylinux_2_24_x86_64.whl", hash = "sha256:550aa503c86ef0061ce64d61c3672b15b500c2b1e4224c405acecfac2211b5d9"}, - {file = "pygit2-1.11.1-cp311-cp311-win32.whl", hash = "sha256:f270f86a0185ca2064e1aa6b8db3bb677b1bf76ee35f48ca5ce28a921fad5632"}, - {file = "pygit2-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:56b9deeab214653805214f05337f5e9552b47bf268c285551f20ea51a6056c3e"}, - {file = "pygit2-1.11.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3c5838e6516abc4384498f4b4c7f88578221596dc2ba8db2320ff2cfebe9787e"}, - {file = "pygit2-1.11.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a886aab5aae8d8db572e20b9f56c13cd506775265222ea7f35b2c781e4fa3a5e"}, - {file = "pygit2-1.11.1-cp38-cp38-manylinux_2_24_aarch64.whl", hash = "sha256:3be4534180edd53e3e1da93c5b091975566bfdffdc73f21930d79fef096a25d2"}, - {file = "pygit2-1.11.1-cp38-cp38-manylinux_2_24_x86_64.whl", hash = "sha256:4d6209c703764ae0ba57b17038482f3e54f432f80f88ccd490d7f8b70b167db6"}, - {file = "pygit2-1.11.1-cp38-cp38-win32.whl", hash = "sha256:ddb032fa71d4b4a64bf101e37eaa21f5369f20a862b5e34bbc33854a3a35f641"}, - {file = "pygit2-1.11.1-cp38-cp38-win_amd64.whl", hash = "sha256:f8de0091e5eeaea2004f63f7dcb4540780f2124f68c0bcb670ae0fa9ada8bf66"}, - {file = "pygit2-1.11.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9b44674e53efa9eca36e44f2f3d1a29e53e78649ba13105ae0b037d557f2c076"}, - {file = "pygit2-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0170f31c2efb15f6779689df328c05a8005ecb2b92784a37ff967d713cdafe82"}, - {file = "pygit2-1.11.1-cp39-cp39-manylinux_2_24_aarch64.whl", hash = "sha256:960a55ff78f48887a7aa8ece952aad0f52f0a2ba1ad7bddd7064fbbefd85dfbb"}, - {file = "pygit2-1.11.1-cp39-cp39-manylinux_2_24_x86_64.whl", hash = "sha256:df722c90fb54a42fa019dcf8d8f82961c3099c3024f1fda46c53e0886ff8f0f3"}, - {file = "pygit2-1.11.1-cp39-cp39-win32.whl", hash = "sha256:3b091e7fd00dd2a2cd3a6b5e235b6cbfbc1c07f15ee83a5cb3f188e1d6d1bca1"}, - {file = "pygit2-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:da040dc28800831bcbefef0850466739f103bfc769d952bd10c449646d52ce8f"}, - {file = "pygit2-1.11.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:585daa3956f1dc10d08e3459c20b57be42c7f9c0fbde21e797b3a00b5948f061"}, - {file = "pygit2-1.11.1-pp38-pypy38_pp73-manylinux_2_24_aarch64.whl", hash = "sha256:273878adeced2aec7885745b73fffb91a8e67868c105bf881b61008d42497ad6"}, - {file = "pygit2-1.11.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:48cfd72283a08a9226aca115870799ee92898d692699f541a3b3f519805108ec"}, - {file = "pygit2-1.11.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a9ca4cb2481d2df14d23c765facef325f717d9a3966a986b86e88d92eef11929"}, - {file = "pygit2-1.11.1-pp39-pypy39_pp73-manylinux_2_24_aarch64.whl", hash = "sha256:d5f64a424d9123b047458b0107c5dd33559184b56a1f58b10056ea5cbac74360"}, - {file = "pygit2-1.11.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:f13e190cc080bde093138e12bcb609500276227e3e8e8bd8765a2fd49ae2efb8"}, - {file = "pygit2-1.11.1.tar.gz", hash = "sha256:793f583fd33620f0ac38376db0f57768ef2922b89b459e75b1ac440377eb64ec"}, +python-versions = ">=3.10" +files = [ + {file = "pygit2-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbe1a3354a3eff0f4e842abcff73b24455ba7205ac959f146d7cb8dcd63cfa45"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:578d78fc97d5c16b1ad44c1e2fda093628c3f29793b42be68b93a46ce7a662a0"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e59de6138787aa3a5365557fb1ad427d3e877868917e0910257fb11f71f3c736"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66431dba77977b9010fac580eaefcc7567ea0955b030d8e8472fdce0f1a7c5f0"}, + {file = "pygit2-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:877ce82239de45301fa9953d50b41c46a5300cf7b3993db86bde64e08521a506"}, + {file = "pygit2-1.17.0-cp310-cp310-win32.whl", hash = "sha256:8b7921016cbec166083206daca20d00f2358b18178122e1b0d1932b410296de1"}, + {file = "pygit2-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:5724683b3d239cc1457b9800d9d7988a00cd0cb1797d5caa6f46d16f3f74f1ca"}, + {file = "pygit2-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:39e7087e2affdba2530d1fe1ec04c27fa85db405be84e1cd4759891045324a31"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ef5c3634317295268ef84b99e8acae37cb2f8b17d966b318c79e5211bf78d3"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ad964b2eea81e0c99d05c6ec0ec8b5715d3d0c99b3b6e09abcdb57c57701592"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cce8db6aa40361270b14e1adb3a8e7d4606b9b53088e27321472c9a92f922648"}, + {file = "pygit2-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:136b1ea44107fb6a3a58e7b1322227e83101bff50a929816d8653a38e0ed0e07"}, + {file = "pygit2-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5ffce0772167e5c436be57ee3ef0fb421c864657911aeb1a97618e1dd9f8b574"}, + {file = "pygit2-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:0809029cf804f343abdc9eaeaf9d915f9dbf320d79078c20138a3bf642583365"}, + {file = "pygit2-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f7224d89a7dda7290e458393941e500c8682f375f41e6d80ee423958a5d4013d"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ae1967b0c8a2438b3b0e4a63307b5c22c80024a2f09b28d14dfde0001fed8dc"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:507343fa142a82028c8448c2626317dc19885985aba8ea27d381777ac484eefb"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc04917a680591c6e801df912d7fb722c253b5ac68178ff37b5666dafd06999"}, + {file = "pygit2-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7bb1b623cbd16962c3a1ec7f8e1012fa224c9e9642758c65e8e656ecc7ff1574"}, + {file = "pygit2-1.17.0-cp312-cp312-win32.whl", hash = "sha256:3029331ddf56a6908547278ab4c354b2d6932eb6a53be81e0093adc98a0ae540"}, + {file = "pygit2-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:1011236bab7317b82e6cbc3dff4be8467923b1dcf2ffe28bf2e64805dcb37749"}, + {file = "pygit2-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ce938e7a4fdfc816ffceb62babad65fb62e1a5ad261e880b9a072e8da144ccca"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61ff2c8b0fc96fdf45a7a5239cc262b0293a5171f68d67eea239a42c3b2226cb"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8101aa723c292892ba46303b19487a9fb0de50d9e30f4c1c2a76e3383b6e4b6d"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36e3e9225e3f01bb6a2d4589c126900bbc571cd0876ca9c01372a6e3d3693c0e"}, + {file = "pygit2-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:614cfddbf048900da19b016787f153d44ea9fd7ef80f9e03a77024aa1555d5f4"}, + {file = "pygit2-1.17.0-cp313-cp313-win32.whl", hash = "sha256:1391762153af9715ed1d0586e3f207c518f03f5874e1f5b8e398697d006a0a82"}, + {file = "pygit2-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:d677d6fb85c426c5f5f8409bdc5a2e391016c99f73b97779b284c4ad25aa75fa"}, + {file = "pygit2-1.17.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c491db4f71fd5d814023f2ad89ad7023c15738bcbe0807acc2313026600bf1b1"}, + {file = "pygit2-1.17.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89ff254387d23d107dd2b542907d248a3a988e3be8cda99bcc8af04f56e6e5cf"}, + {file = "pygit2-1.17.0.tar.gz", hash = "sha256:fa2bc050b2c2d3e73b54d6d541c792178561a344f07e409f532d5bb97ac7b894"}, ] [package.dependencies] -cffi = ">=1.9.1" +cffi = ">=1.17.0" [[package]] name = "pygments" -version = "2.18.0" +version = "2.19.1" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.8" files = [ - {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, - {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, + {file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"}, + {file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"}, ] [package.extras] @@ -2820,13 +3294,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.1" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.1-py3-none-any.whl", hash = "sha256:506ff4f4386c4cec0590ec19e6302d3aedb992fdc02c761e90416f158dacf8e1"}, + {file = "pyparsing-3.2.1.tar.gz", hash = "sha256:61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a"}, ] [package.extras] @@ -2834,39 +3308,41 @@ diagrams = ["jinja2", "railroad-diagrams"] [[package]] name = "pyshacl" -version = "0.26.0" +version = "0.30.0" description = "Python SHACL Validator" optional = false -python-versions = "<4.0.0,>=3.8.1" +python-versions = "<4,>=3.9" files = [ - {file = "pyshacl-0.26.0-py3-none-any.whl", hash = "sha256:a4bef4296d56305a30e0a97509e541ebe4f2cc2d5da73536d0541233e28f2d22"}, - {file = "pyshacl-0.26.0.tar.gz", hash = "sha256:48d44f317cd9aad8e3fdb5df8aa5706fa92dc6b2746419698035e84a320fb89d"}, + {file = "pyshacl-0.30.0-py3-none-any.whl", hash = "sha256:093fa7b203bf5ae5f43490f0367ea71933a8b585e300680fcc442d2d6ac62c08"}, + {file = "pyshacl-0.30.0.tar.gz", hash = "sha256:449188b07ca46681097d732e9308d42c211ee903784742f8c3e8a0e36e98f728"}, ] [package.dependencies] -html5lib = ">=1.1,<2" importlib-metadata = {version = ">6", markers = "python_version < \"3.12\""} -owlrl = ">=6.0.2,<7" +owlrl = ">=7.1.2,<8" packaging = ">=21.3" -prettytable = {version = ">=3.5.0", markers = "python_version >= \"3.8\" and python_version < \"3.12\""} -rdflib = {version = ">=6.3.2,<8.0", markers = "python_full_version >= \"3.8.1\""} +prettytable = [ + {version = ">=3.5.0", markers = "python_version < \"3.12\""}, + {version = ">=3.7.0", markers = "python_version >= \"3.12\""}, +] +rdflib = {version = ">=7.1.1,<8.0", extras = ["html"]} [package.extras] -dev-coverage = ["coverage (>6.1,!=6.1.1,<7)", "platformdirs", "pytest-cov (>=2.8.1,<3.0.0)"] -dev-lint = ["black (==24.3.0)", "platformdirs", "ruff (>=0.1.5,<0.2.0)"] -dev-type-checking = ["mypy (>=0.812,<0.900)", "mypy (>=0.900,<0.1000)", "platformdirs", "types-setuptools"] +dev-coverage = ["coverage (>6.1,!=6.1.1,<7)", "platformdirs", "pytest-cov (>=2.8.1,<3)"] +dev-lint = ["platformdirs", "ruff (>=0.9.3,<0.10)"] +dev-type-checking = ["mypy (>=1.13.0)", "platformdirs", "types-setuptools"] http = ["sanic (>=22.12,<23)", "sanic-cors (==2.2.0)", "sanic-ext (>=23.3,<23.6)"] -js = ["pyduktape2 (>=0.4.6,<0.5.0)"] +js = ["pyduktape2 (>=0.4.6,<1)"] [[package]] name = "pytest" -version = "8.3.2" +version = "8.3.5" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"}, - {file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"}, + {file = "pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820"}, + {file = "pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845"}, ] [package.dependencies] @@ -2914,15 +3390,18 @@ six = ">=1.5" [[package]] name = "python-json-logger" -version = "2.0.7" -description = "A python library adding a json log formatter" +version = "3.2.1" +description = "JSON Log Formatter for the Python Logging Package" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, - {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, + {file = "python_json_logger-3.2.1-py3-none-any.whl", hash = "sha256:cdc17047eb5374bd311e748b42f99d71223f3b0e186f4206cc5d52aefe85b090"}, + {file = "python_json_logger-3.2.1.tar.gz", hash = "sha256:8eb0554ea17cb75b05d2848bc14fb02fbdbd9d6972120781b974380bfa162008"}, ] +[package.extras] +dev = ["backports.zoneinfo", "black", "build", "freezegun", "mdx_truly_sane_lists", "mike", "mkdocs", "mkdocs-awesome-pages-plugin", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-material (>=8.5)", "mkdocstrings[python]", "msgspec", "msgspec-python313-pre", "mypy", "orjson", "pylint", "pytest", "tzdata", "validate-pyproject[all]"] + [[package]] name = "pytz" version = "2022.7.1" @@ -2936,40 +3415,45 @@ files = [ [[package]] name = "pywin32" -version = "306" +version = "308" description = "Python for Window Extensions" optional = false python-versions = "*" files = [ - {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, - {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, - {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, - {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, - {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, - {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, - {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, - {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, - {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, - {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, - {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, - {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, - {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, - {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] name = "pywinpty" -version = "2.0.13" +version = "2.0.15" description = "Pseudo terminal support for Windows from Python." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pywinpty-2.0.13-cp310-none-win_amd64.whl", hash = "sha256:697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56"}, - {file = "pywinpty-2.0.13-cp311-none-win_amd64.whl", hash = "sha256:b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99"}, - {file = "pywinpty-2.0.13-cp312-none-win_amd64.whl", hash = "sha256:2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4"}, - {file = "pywinpty-2.0.13-cp38-none-win_amd64.whl", hash = "sha256:61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d"}, - {file = "pywinpty-2.0.13-cp39-none-win_amd64.whl", hash = "sha256:71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b"}, - {file = "pywinpty-2.0.13.tar.gz", hash = "sha256:c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde"}, + {file = "pywinpty-2.0.15-cp310-cp310-win_amd64.whl", hash = "sha256:8e7f5de756a615a38b96cd86fa3cd65f901ce54ce147a3179c45907fa11b4c4e"}, + {file = "pywinpty-2.0.15-cp311-cp311-win_amd64.whl", hash = "sha256:9a6bcec2df2707aaa9d08b86071970ee32c5026e10bcc3cc5f6f391d85baf7ca"}, + {file = "pywinpty-2.0.15-cp312-cp312-win_amd64.whl", hash = "sha256:83a8f20b430bbc5d8957249f875341a60219a4e971580f2ba694fbfb54a45ebc"}, + {file = "pywinpty-2.0.15-cp313-cp313-win_amd64.whl", hash = "sha256:ab5920877dd632c124b4ed17bc6dd6ef3b9f86cd492b963ffdb1a67b85b0f408"}, + {file = "pywinpty-2.0.15-cp313-cp313t-win_amd64.whl", hash = "sha256:a4560ad8c01e537708d2790dbe7da7d986791de805d89dd0d3697ca59e9e4901"}, + {file = "pywinpty-2.0.15-cp39-cp39-win_amd64.whl", hash = "sha256:d261cd88fcd358cfb48a7ca0700db3e1c088c9c10403c9ebc0d8a8b57aa6a117"}, + {file = "pywinpty-2.0.15.tar.gz", hash = "sha256:312cf39153a8736c617d45ce8b6ad6cd2107de121df91c455b10ce6bba7a39b2"}, ] [[package]] @@ -3036,120 +3520,120 @@ files = [ [[package]] name = "pyzmq" -version = "26.2.0" +version = "26.2.1" description = "Python bindings for 0MQ" optional = false python-versions = ">=3.7" files = [ - {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, - {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, - {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764"}, - {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c"}, - {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a"}, - {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88"}, - {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f"}, - {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282"}, - {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea"}, - {file = "pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2"}, - {file = "pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971"}, - {file = "pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa"}, - {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218"}, - {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4"}, - {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef"}, - {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317"}, - {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf"}, - {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e"}, - {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37"}, - {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3"}, - {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6"}, - {file = "pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4"}, - {file = "pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5"}, - {file = "pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003"}, - {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9"}, - {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52"}, - {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08"}, - {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5"}, - {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae"}, - {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711"}, - {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6"}, - {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3"}, - {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b"}, - {file = "pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7"}, - {file = "pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a"}, - {file = "pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b"}, - {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726"}, - {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3"}, - {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50"}, - {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb"}, - {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187"}, - {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b"}, - {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18"}, - {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115"}, - {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e"}, - {file = "pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5"}, - {file = "pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad"}, - {file = "pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797"}, - {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a"}, - {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc"}, - {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5"}, - {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672"}, - {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797"}, - {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386"}, - {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306"}, - {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6"}, - {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0"}, - {file = "pyzmq-26.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b55a4229ce5da9497dd0452b914556ae58e96a4381bb6f59f1305dfd7e53fc8"}, - {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9cb3a6460cdea8fe8194a76de8895707e61ded10ad0be97188cc8463ffa7e3a8"}, - {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ab5cad923cc95c87bffee098a27856c859bd5d0af31bd346035aa816b081fe1"}, - {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ed69074a610fad1c2fda66180e7b2edd4d31c53f2d1872bc2d1211563904cd9"}, - {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cccba051221b916a4f5e538997c45d7d136a5646442b1231b916d0164067ea27"}, - {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0eaa83fc4c1e271c24eaf8fb083cbccef8fde77ec8cd45f3c35a9a123e6da097"}, - {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9edda2df81daa129b25a39b86cb57dfdfe16f7ec15b42b19bfac503360d27a93"}, - {file = "pyzmq-26.2.0-cp37-cp37m-win32.whl", hash = "sha256:ea0eb6af8a17fa272f7b98d7bebfab7836a0d62738e16ba380f440fceca2d951"}, - {file = "pyzmq-26.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4ff9dc6bc1664bb9eec25cd17506ef6672d506115095411e237d571e92a58231"}, - {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2eb7735ee73ca1b0d71e0e67c3739c689067f055c764f73aac4cc8ecf958ee3f"}, - {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a534f43bc738181aa7cbbaf48e3eca62c76453a40a746ab95d4b27b1111a7d2"}, - {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aedd5dd8692635813368e558a05266b995d3d020b23e49581ddd5bbe197a8ab6"}, - {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8be4700cd8bb02cc454f630dcdf7cfa99de96788b80c51b60fe2fe1dac480289"}, - {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fcc03fa4997c447dce58264e93b5aa2d57714fbe0f06c07b7785ae131512732"}, - {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:402b190912935d3db15b03e8f7485812db350d271b284ded2b80d2e5704be780"}, - {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8685fa9c25ff00f550c1fec650430c4b71e4e48e8d852f7ddcf2e48308038640"}, - {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:76589c020680778f06b7e0b193f4b6dd66d470234a16e1df90329f5e14a171cd"}, - {file = "pyzmq-26.2.0-cp38-cp38-win32.whl", hash = "sha256:8423c1877d72c041f2c263b1ec6e34360448decfb323fa8b94e85883043ef988"}, - {file = "pyzmq-26.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:76589f2cd6b77b5bdea4fca5992dc1c23389d68b18ccc26a53680ba2dc80ff2f"}, - {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:b1d464cb8d72bfc1a3adc53305a63a8e0cac6bc8c5a07e8ca190ab8d3faa43c2"}, - {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4da04c48873a6abdd71811c5e163bd656ee1b957971db7f35140a2d573f6949c"}, - {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d049df610ac811dcffdc147153b414147428567fbbc8be43bb8885f04db39d98"}, - {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05590cdbc6b902101d0e65d6a4780af14dc22914cc6ab995d99b85af45362cc9"}, - {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c811cfcd6a9bf680236c40c6f617187515269ab2912f3d7e8c0174898e2519db"}, - {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6835dd60355593de10350394242b5757fbbd88b25287314316f266e24c61d073"}, - {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc6bee759a6bddea5db78d7dcd609397449cb2d2d6587f48f3ca613b19410cfc"}, - {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c530e1eecd036ecc83c3407f77bb86feb79916d4a33d11394b8234f3bd35b940"}, - {file = "pyzmq-26.2.0-cp39-cp39-win32.whl", hash = "sha256:367b4f689786fca726ef7a6c5ba606958b145b9340a5e4808132cc65759abd44"}, - {file = "pyzmq-26.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e6fa2e3e683f34aea77de8112f6483803c96a44fd726d7358b9888ae5bb394ec"}, - {file = "pyzmq-26.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:7445be39143a8aa4faec43b076e06944b8f9d0701b669df4af200531b21e40bb"}, - {file = "pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072"}, - {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1"}, - {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d"}, - {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca"}, - {file = "pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c"}, - {file = "pyzmq-26.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ea4ad4e6a12e454de05f2949d4beddb52460f3de7c8b9d5c46fbb7d7222e02c"}, - {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fc4f7a173a5609631bb0c42c23d12c49df3966f89f496a51d3eb0ec81f4519d6"}, - {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:878206a45202247781472a2d99df12a176fef806ca175799e1c6ad263510d57c"}, - {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17c412bad2eb9468e876f556eb4ee910e62d721d2c7a53c7fa31e643d35352e6"}, - {file = "pyzmq-26.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:0d987a3ae5a71c6226b203cfd298720e0086c7fe7c74f35fa8edddfbd6597eed"}, - {file = "pyzmq-26.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:39887ac397ff35b7b775db7201095fc6310a35fdbae85bac4523f7eb3b840e20"}, - {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fdb5b3e311d4d4b0eb8b3e8b4d1b0a512713ad7e6a68791d0923d1aec433d919"}, - {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:226af7dcb51fdb0109f0016449b357e182ea0ceb6b47dfb5999d569e5db161d5"}, - {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bed0e799e6120b9c32756203fb9dfe8ca2fb8467fed830c34c877e25638c3fc"}, - {file = "pyzmq-26.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:29c7947c594e105cb9e6c466bace8532dc1ca02d498684128b339799f5248277"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cdeabcff45d1c219636ee2e54d852262e5c2e085d6cb476d938aee8d921356b3"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35cffef589bcdc587d06f9149f8d5e9e8859920a071df5a2671de2213bef592a"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18c8dc3b7468d8b4bdf60ce9d7141897da103c7a4690157b32b60acb45e333e6"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7133d0a1677aec369d67dd78520d3fa96dd7f3dcec99d66c1762870e5ea1a50a"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a96179a24b14fa6428cbfc08641c779a53f8fcec43644030328f44034c7f1f4"}, - {file = "pyzmq-26.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4f78c88905461a9203eac9faac157a2a0dbba84a0fd09fd29315db27be40af9f"}, - {file = "pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f"}, + {file = "pyzmq-26.2.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:f39d1227e8256d19899d953e6e19ed2ccb689102e6d85e024da5acf410f301eb"}, + {file = "pyzmq-26.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a23948554c692df95daed595fdd3b76b420a4939d7a8a28d6d7dea9711878641"}, + {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95f5728b367a042df146cec4340d75359ec6237beebf4a8f5cf74657c65b9257"}, + {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:95f7b01b3f275504011cf4cf21c6b885c8d627ce0867a7e83af1382ebab7b3ff"}, + {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80a00370a2ef2159c310e662c7c0f2d030f437f35f478bb8b2f70abd07e26b24"}, + {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8531ed35dfd1dd2af95f5d02afd6545e8650eedbf8c3d244a554cf47d8924459"}, + {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:cdb69710e462a38e6039cf17259d328f86383a06c20482cc154327968712273c"}, + {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e7eeaef81530d0b74ad0d29eec9997f1c9230c2f27242b8d17e0ee67662c8f6e"}, + {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:361edfa350e3be1f987e592e834594422338d7174364763b7d3de5b0995b16f3"}, + {file = "pyzmq-26.2.1-cp310-cp310-win32.whl", hash = "sha256:637536c07d2fb6a354988b2dd1d00d02eb5dd443f4bbee021ba30881af1c28aa"}, + {file = "pyzmq-26.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:45fad32448fd214fbe60030aa92f97e64a7140b624290834cc9b27b3a11f9473"}, + {file = "pyzmq-26.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:d9da0289d8201c8a29fd158aaa0dfe2f2e14a181fd45e2dc1fbf969a62c1d594"}, + {file = "pyzmq-26.2.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:c059883840e634a21c5b31d9b9a0e2b48f991b94d60a811092bc37992715146a"}, + {file = "pyzmq-26.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ed038a921df836d2f538e509a59cb638df3e70ca0fcd70d0bf389dfcdf784d2a"}, + {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9027a7fcf690f1a3635dc9e55e38a0d6602dbbc0548935d08d46d2e7ec91f454"}, + {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d75fcb00a1537f8b0c0bb05322bc7e35966148ffc3e0362f0369e44a4a1de99"}, + {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0019cc804ac667fb8c8eaecdb66e6d4a68acf2e155d5c7d6381a5645bd93ae4"}, + {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f19dae58b616ac56b96f2e2290f2d18730a898a171f447f491cc059b073ca1fa"}, + {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f5eeeb82feec1fc5cbafa5ee9022e87ffdb3a8c48afa035b356fcd20fc7f533f"}, + {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:000760e374d6f9d1a3478a42ed0c98604de68c9e94507e5452951e598ebecfba"}, + {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:817fcd3344d2a0b28622722b98500ae9c8bfee0f825b8450932ff19c0b15bebd"}, + {file = "pyzmq-26.2.1-cp311-cp311-win32.whl", hash = "sha256:88812b3b257f80444a986b3596e5ea5c4d4ed4276d2b85c153a6fbc5ca457ae7"}, + {file = "pyzmq-26.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:ef29630fde6022471d287c15c0a2484aba188adbfb978702624ba7a54ddfa6c1"}, + {file = "pyzmq-26.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:f32718ee37c07932cc336096dc7403525301fd626349b6eff8470fe0f996d8d7"}, + {file = "pyzmq-26.2.1-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:a6549ecb0041dafa55b5932dcbb6c68293e0bd5980b5b99f5ebb05f9a3b8a8f3"}, + {file = "pyzmq-26.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0250c94561f388db51fd0213cdccbd0b9ef50fd3c57ce1ac937bf3034d92d72e"}, + {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ee4297d9e4b34b5dc1dd7ab5d5ea2cbba8511517ef44104d2915a917a56dc8"}, + {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2a9cb17fd83b7a3a3009901aca828feaf20aa2451a8a487b035455a86549c09"}, + {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:786dd8a81b969c2081b31b17b326d3a499ddd1856e06d6d79ad41011a25148da"}, + {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:2d88ba221a07fc2c5581565f1d0fe8038c15711ae79b80d9462e080a1ac30435"}, + {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1c84c1297ff9f1cd2440da4d57237cb74be21fdfe7d01a10810acba04e79371a"}, + {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46d4ebafc27081a7f73a0f151d0c38d4291656aa134344ec1f3d0199ebfbb6d4"}, + {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:91e2bfb8e9a29f709d51b208dd5f441dc98eb412c8fe75c24ea464734ccdb48e"}, + {file = "pyzmq-26.2.1-cp312-cp312-win32.whl", hash = "sha256:4a98898fdce380c51cc3e38ebc9aa33ae1e078193f4dc641c047f88b8c690c9a"}, + {file = "pyzmq-26.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:a0741edbd0adfe5f30bba6c5223b78c131b5aa4a00a223d631e5ef36e26e6d13"}, + {file = "pyzmq-26.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:e5e33b1491555843ba98d5209439500556ef55b6ab635f3a01148545498355e5"}, + {file = "pyzmq-26.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:099b56ef464bc355b14381f13355542e452619abb4c1e57a534b15a106bf8e23"}, + {file = "pyzmq-26.2.1-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:651726f37fcbce9f8dd2a6dab0f024807929780621890a4dc0c75432636871be"}, + {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57dd4d91b38fa4348e237a9388b4423b24ce9c1695bbd4ba5a3eada491e09399"}, + {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d51a7bfe01a48e1064131f3416a5439872c533d756396be2b39e3977b41430f9"}, + {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7154d228502e18f30f150b7ce94f0789d6b689f75261b623f0fdc1eec642aab"}, + {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:f1f31661a80cc46aba381bed475a9135b213ba23ca7ff6797251af31510920ce"}, + {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:290c96f479504439b6129a94cefd67a174b68ace8a8e3f551b2239a64cfa131a"}, + {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f2c307fbe86e18ab3c885b7e01de942145f539165c3360e2af0f094dd440acd9"}, + {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:b314268e716487bfb86fcd6f84ebbe3e5bec5fac75fdf42bc7d90fdb33f618ad"}, + {file = "pyzmq-26.2.1-cp313-cp313-win32.whl", hash = "sha256:edb550616f567cd5603b53bb52a5f842c0171b78852e6fc7e392b02c2a1504bb"}, + {file = "pyzmq-26.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:100a826a029c8ef3d77a1d4c97cbd6e867057b5806a7276f2bac1179f893d3bf"}, + {file = "pyzmq-26.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:6991ee6c43e0480deb1b45d0c7c2bac124a6540cba7db4c36345e8e092da47ce"}, + {file = "pyzmq-26.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:25e720dba5b3a3bb2ad0ad5d33440babd1b03438a7a5220511d0c8fa677e102e"}, + {file = "pyzmq-26.2.1-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:9ec6abfb701437142ce9544bd6a236addaf803a32628d2260eb3dbd9a60e2891"}, + {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e1eb9d2bfdf5b4e21165b553a81b2c3bd5be06eeddcc4e08e9692156d21f1f6"}, + {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90dc731d8e3e91bcd456aa7407d2eba7ac6f7860e89f3766baabb521f2c1de4a"}, + {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6a93d684278ad865fc0b9e89fe33f6ea72d36da0e842143891278ff7fd89c3"}, + {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:c1bb37849e2294d519117dd99b613c5177934e5c04a5bb05dd573fa42026567e"}, + {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:632a09c6d8af17b678d84df442e9c3ad8e4949c109e48a72f805b22506c4afa7"}, + {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:fc409c18884eaf9ddde516d53af4f2db64a8bc7d81b1a0c274b8aa4e929958e8"}, + {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:17f88622b848805d3f6427ce1ad5a2aa3cf61f12a97e684dab2979802024d460"}, + {file = "pyzmq-26.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3ef584f13820d2629326fe20cc04069c21c5557d84c26e277cfa6235e523b10f"}, + {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:160194d1034902937359c26ccfa4e276abffc94937e73add99d9471e9f555dd6"}, + {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:574b285150afdbf0a0424dddf7ef9a0d183988eb8d22feacb7160f7515e032cb"}, + {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44dba28c34ce527cf687156c81f82bf1e51f047838d5964f6840fd87dfecf9fe"}, + {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9fbdb90b85c7624c304f72ec7854659a3bd901e1c0ffb2363163779181edeb68"}, + {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a7ad34a2921e8f76716dc7205c9bf46a53817e22b9eec2e8a3e08ee4f4a72468"}, + {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:866c12b7c90dd3a86983df7855c6f12f9407c8684db6aa3890fc8027462bda82"}, + {file = "pyzmq-26.2.1-cp37-cp37m-win32.whl", hash = "sha256:eeb37f65350d5c5870517f02f8bbb2ac0fbec7b416c0f4875219fef305a89a45"}, + {file = "pyzmq-26.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4eb3197f694dfb0ee6af29ef14a35f30ae94ff67c02076eef8125e2d98963cd0"}, + {file = "pyzmq-26.2.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:36d4e7307db7c847fe37413f333027d31c11d5e6b3bacbb5022661ac635942ba"}, + {file = "pyzmq-26.2.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1c6ae0e95d0a4b0cfe30f648a18e764352d5415279bdf34424decb33e79935b8"}, + {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5b4fc44f5360784cc02392f14235049665caaf7c0fe0b04d313e763d3338e463"}, + {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:51431f6b2750eb9b9d2b2952d3cc9b15d0215e1b8f37b7a3239744d9b487325d"}, + {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdbc78ae2065042de48a65f1421b8af6b76a0386bb487b41955818c3c1ce7bed"}, + {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d14f50d61a89b0925e4d97a0beba6053eb98c426c5815d949a43544f05a0c7ec"}, + {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:004837cb958988c75d8042f5dac19a881f3d9b3b75b2f574055e22573745f841"}, + {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0b2007f28ce1b8acebdf4812c1aab997a22e57d6a73b5f318b708ef9bcabbe95"}, + {file = "pyzmq-26.2.1-cp38-cp38-win32.whl", hash = "sha256:269c14904da971cb5f013100d1aaedb27c0a246728c341d5d61ddd03f463f2f3"}, + {file = "pyzmq-26.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:31fff709fef3b991cfe7189d2cfe0c413a1d0e82800a182cfa0c2e3668cd450f"}, + {file = "pyzmq-26.2.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:a4bffcadfd40660f26d1b3315a6029fd4f8f5bf31a74160b151f5c577b2dc81b"}, + {file = "pyzmq-26.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e76ad4729c2f1cf74b6eb1bdd05f6aba6175999340bd51e6caee49a435a13bf5"}, + {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8b0f5bab40a16e708e78a0c6ee2425d27e1a5d8135c7a203b4e977cee37eb4aa"}, + {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e8e47050412f0ad3a9b2287779758073cbf10e460d9f345002d4779e43bb0136"}, + {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f18ce33f422d119b13c1363ed4cce245b342b2c5cbbb76753eabf6aa6f69c7d"}, + {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ceb0d78b7ef106708a7e2c2914afe68efffc0051dc6a731b0dbacd8b4aee6d68"}, + {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ebdd96bd637fd426d60e86a29ec14b8c1ab64b8d972f6a020baf08a30d1cf46"}, + {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:03719e424150c6395b9513f53a5faadcc1ce4b92abdf68987f55900462ac7eec"}, + {file = "pyzmq-26.2.1-cp39-cp39-win32.whl", hash = "sha256:ef5479fac31df4b304e96400fc67ff08231873ee3537544aa08c30f9d22fce38"}, + {file = "pyzmq-26.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:f92a002462154c176dac63a8f1f6582ab56eb394ef4914d65a9417f5d9fde218"}, + {file = "pyzmq-26.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:1fd4b3efc6f62199886440d5e27dd3ccbcb98dfddf330e7396f1ff421bfbb3c2"}, + {file = "pyzmq-26.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:380816d298aed32b1a97b4973a4865ef3be402a2e760204509b52b6de79d755d"}, + {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97cbb368fd0debdbeb6ba5966aa28e9a1ae3396c7386d15569a6ca4be4572b99"}, + {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abf7b5942c6b0dafcc2823ddd9154f419147e24f8df5b41ca8ea40a6db90615c"}, + {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3fe6e28a8856aea808715f7a4fc11f682b9d29cac5d6262dd8fe4f98edc12d53"}, + {file = "pyzmq-26.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bd8fdee945b877aa3bffc6a5a8816deb048dab0544f9df3731ecd0e54d8c84c9"}, + {file = "pyzmq-26.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ee7152f32c88e0e1b5b17beb9f0e2b14454235795ef68c0c120b6d3d23d12833"}, + {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:baa1da72aecf6a490b51fba7a51f1ce298a1e0e86d0daef8265c8f8f9848eb77"}, + {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:49135bb327fca159262d8fd14aa1f4a919fe071b04ed08db4c7c37d2f0647162"}, + {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8bacc1a10c150d58e8a9ee2b2037a70f8d903107e0f0b6e079bf494f2d09c091"}, + {file = "pyzmq-26.2.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:09dac387ce62d69bec3f06d51610ca1d660e7849eb45f68e38e7f5cf1f49cbcb"}, + {file = "pyzmq-26.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:70b3a46ecd9296e725ccafc17d732bfc3cdab850b54bd913f843a0a54dfb2c04"}, + {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:59660e15c797a3b7a571c39f8e0b62a1f385f98ae277dfe95ca7eaf05b5a0f12"}, + {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0f50db737d688e96ad2a083ad2b453e22865e7e19c7f17d17df416e91ddf67eb"}, + {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a003200b6cd64e89b5725ff7e284a93ab24fd54bbac8b4fa46b1ed57be693c27"}, + {file = "pyzmq-26.2.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f9ba5def063243793dec6603ad1392f735255cbc7202a3a484c14f99ec290705"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1238c2448c58b9c8d6565579393148414a42488a5f916b3f322742e561f6ae0d"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8eddb3784aed95d07065bcf94d07e8c04024fdb6b2386f08c197dfe6b3528fda"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f0f19c2097fffb1d5b07893d75c9ee693e9cbc809235cf3f2267f0ef6b015f24"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0995fd3530f2e89d6b69a2202e340bbada3191014352af978fa795cb7a446331"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7c6160fe513654e65665332740f63de29ce0d165e053c0c14a161fa60dd0da01"}, + {file = "pyzmq-26.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8ec8e3aea6146b761d6c57fcf8f81fcb19f187afecc19bf1701a48db9617a217"}, + {file = "pyzmq-26.2.1.tar.gz", hash = "sha256:17d72a74e5e9ff3829deb72897a175333d3ef5b5413948cae3cf7ebf0b02ecca"}, ] [package.dependencies] @@ -3157,24 +3641,26 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "rdflib" -version = "7.0.0" +version = "7.1.3" description = "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information." optional = false -python-versions = ">=3.8.1,<4.0.0" +python-versions = "<4.0.0,>=3.8.1" files = [ - {file = "rdflib-7.0.0-py3-none-any.whl", hash = "sha256:0438920912a642c866a513de6fe8a0001bd86ef975057d6962c79ce4771687cd"}, - {file = "rdflib-7.0.0.tar.gz", hash = "sha256:9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae"}, + {file = "rdflib-7.1.3-py3-none-any.whl", hash = "sha256:5402310a9f0f3c07d453d73fd0ad6ba35616286fe95d3670db2b725f3f539673"}, + {file = "rdflib-7.1.3.tar.gz", hash = "sha256:f3dcb4c106a8cd9e060d92f43d593d09ebc3d07adc244f4c7315856a12e383ee"}, ] [package.dependencies] -isodate = ">=0.6.0,<0.7.0" +html5rdf = {version = ">=1.2,<2", optional = true, markers = "extra == \"html\""} +isodate = {version = ">=0.7.2,<1.0.0", markers = "python_version < \"3.11\""} pyparsing = ">=2.1.0,<4" [package.extras] berkeleydb = ["berkeleydb (>=18.1.0,<19.0.0)"] -html = ["html5lib (>=1.0,<2.0)"] -lxml = ["lxml (>=4.3.0,<5.0.0)"] -networkx = ["networkx (>=2.0.0,<3.0.0)"] +html = ["html5rdf (>=1.2,<2)"] +lxml = ["lxml (>=4.3,<6.0)"] +networkx = ["networkx (>=2,<4)"] +orjson = ["orjson (>=3.9.14,<4)"] [[package]] name = "rdflib-sqlalchemy" @@ -3195,18 +3681,19 @@ SQLAlchemy = ">=1.1.4,<2.0.0" [[package]] name = "referencing" -version = "0.35.1" +version = "0.36.2" description = "JSON Referencing + Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, - {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, + {file = "referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0"}, + {file = "referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa"}, ] [package.dependencies] attrs = ">=22.2.0" rpds-py = ">=0.7.0" +typing-extensions = {version = ">=4.4.0", markers = "python_version < \"3.13\""} [[package]] name = "requests" @@ -3281,114 +3768,114 @@ notebook = ">=6.0" [[package]] name = "rpds-py" -version = "0.20.0" +version = "0.23.1" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false -python-versions = ">=3.8" -files = [ - {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, - {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, - {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, - {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, - {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, - {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, - {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, - {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, - {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, - {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, - {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, - {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, - {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, - {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, - {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, +python-versions = ">=3.9" +files = [ + {file = "rpds_py-0.23.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2a54027554ce9b129fc3d633c92fa33b30de9f08bc61b32c053dc9b537266fed"}, + {file = "rpds_py-0.23.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b5ef909a37e9738d146519657a1aab4584018746a18f71c692f2f22168ece40c"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ee9d6f0b38efb22ad94c3b68ffebe4c47865cdf4b17f6806d6c674e1feb4246"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7356a6da0562190558c4fcc14f0281db191cdf4cb96e7604c06acfcee96df15"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9441af1d25aed96901f97ad83d5c3e35e6cd21a25ca5e4916c82d7dd0490a4fa"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d8abf7896a91fb97e7977d1aadfcc2c80415d6dc2f1d0fca5b8d0df247248f3"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b08027489ba8fedde72ddd233a5ea411b85a6ed78175f40285bd401bde7466d"}, + {file = "rpds_py-0.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fee513135b5a58f3bb6d89e48326cd5aa308e4bcdf2f7d59f67c861ada482bf8"}, + {file = "rpds_py-0.23.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:35d5631ce0af26318dba0ae0ac941c534453e42f569011585cb323b7774502a5"}, + {file = "rpds_py-0.23.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a20cb698c4a59c534c6701b1c24a968ff2768b18ea2991f886bd8985ce17a89f"}, + {file = "rpds_py-0.23.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e9c206a1abc27e0588cf8b7c8246e51f1a16a103734f7750830a1ccb63f557a"}, + {file = "rpds_py-0.23.1-cp310-cp310-win32.whl", hash = "sha256:d9f75a06ecc68f159d5d7603b734e1ff6daa9497a929150f794013aa9f6e3f12"}, + {file = "rpds_py-0.23.1-cp310-cp310-win_amd64.whl", hash = "sha256:f35eff113ad430b5272bbfc18ba111c66ff525828f24898b4e146eb479a2cdda"}, + {file = "rpds_py-0.23.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:b79f5ced71efd70414a9a80bbbfaa7160da307723166f09b69773153bf17c590"}, + {file = "rpds_py-0.23.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9e799dac1ffbe7b10c1fd42fe4cd51371a549c6e108249bde9cd1200e8f59b4"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:721f9c4011b443b6e84505fc00cc7aadc9d1743f1c988e4c89353e19c4a968ee"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f88626e3f5e57432e6191cd0c5d6d6b319b635e70b40be2ffba713053e5147dd"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:285019078537949cecd0190f3690a0b0125ff743d6a53dfeb7a4e6787af154f5"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b92f5654157de1379c509b15acec9d12ecf6e3bc1996571b6cb82a4302060447"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e768267cbe051dd8d1c5305ba690bb153204a09bf2e3de3ae530de955f5b5580"}, + {file = "rpds_py-0.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c5334a71f7dc1160382d45997e29f2637c02f8a26af41073189d79b95d3321f1"}, + {file = "rpds_py-0.23.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d6adb81564af0cd428910f83fa7da46ce9ad47c56c0b22b50872bc4515d91966"}, + {file = "rpds_py-0.23.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cafa48f2133d4daa028473ede7d81cd1b9f9e6925e9e4003ebdf77010ee02f35"}, + {file = "rpds_py-0.23.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fced9fd4a07a1ded1bac7e961ddd9753dd5d8b755ba8e05acba54a21f5f1522"}, + {file = "rpds_py-0.23.1-cp311-cp311-win32.whl", hash = "sha256:243241c95174b5fb7204c04595852fe3943cc41f47aa14c3828bc18cd9d3b2d6"}, + {file = "rpds_py-0.23.1-cp311-cp311-win_amd64.whl", hash = "sha256:11dd60b2ffddba85715d8a66bb39b95ddbe389ad2cfcf42c833f1bcde0878eaf"}, + {file = "rpds_py-0.23.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3902df19540e9af4cc0c3ae75974c65d2c156b9257e91f5101a51f99136d834c"}, + {file = "rpds_py-0.23.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:66f8d2a17e5838dd6fb9be6baaba8e75ae2f5fa6b6b755d597184bfcd3cb0eba"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:112b8774b0b4ee22368fec42749b94366bd9b536f8f74c3d4175d4395f5cbd31"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e0df046f2266e8586cf09d00588302a32923eb6386ced0ca5c9deade6af9a149"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3288930b947cbebe767f84cf618d2cbe0b13be476e749da0e6a009f986248c"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ce473a2351c018b06dd8d30d5da8ab5a0831056cc53b2006e2a8028172c37ce5"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d550d7e9e7d8676b183b37d65b5cd8de13676a738973d330b59dc8312df9c5dc"}, + {file = "rpds_py-0.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e14f86b871ea74c3fddc9a40e947d6a5d09def5adc2076ee61fb910a9014fb35"}, + {file = "rpds_py-0.23.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf5be5ba34e19be579ae873da515a2836a2166d8d7ee43be6ff909eda42b72b"}, + {file = "rpds_py-0.23.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d7031d493c4465dbc8d40bd6cafefef4bd472b17db0ab94c53e7909ee781b9ef"}, + {file = "rpds_py-0.23.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:55ff4151cfd4bc635e51cfb1c59ac9f7196b256b12e3a57deb9e5742e65941ad"}, + {file = "rpds_py-0.23.1-cp312-cp312-win32.whl", hash = "sha256:a9d3b728f5a5873d84cba997b9d617c6090ca5721caaa691f3b1a78c60adc057"}, + {file = "rpds_py-0.23.1-cp312-cp312-win_amd64.whl", hash = "sha256:b03a8d50b137ee758e4c73638b10747b7c39988eb8e6cd11abb7084266455165"}, + {file = "rpds_py-0.23.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:4caafd1a22e5eaa3732acb7672a497123354bef79a9d7ceed43387d25025e935"}, + {file = "rpds_py-0.23.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:178f8a60fc24511c0eb756af741c476b87b610dba83270fce1e5a430204566a4"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c632419c3870507ca20a37c8f8f5352317aca097639e524ad129f58c125c61c6"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:698a79d295626ee292d1730bc2ef6e70a3ab135b1d79ada8fde3ed0047b65a10"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271fa2184cf28bdded86bb6217c8e08d3a169fe0bbe9be5e8d96e8476b707122"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b91cceb5add79ee563bd1f70b30896bd63bc5f78a11c1f00a1e931729ca4f1f4"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a6cb95074777f1ecda2ca4fa7717caa9ee6e534f42b7575a8f0d4cb0c24013"}, + {file = "rpds_py-0.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:50fb62f8d8364978478b12d5f03bf028c6bc2af04082479299139dc26edf4c64"}, + {file = "rpds_py-0.23.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c8f7e90b948dc9dcfff8003f1ea3af08b29c062f681c05fd798e36daa3f7e3e8"}, + {file = "rpds_py-0.23.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5b98b6c953e5c2bda51ab4d5b4f172617d462eebc7f4bfdc7c7e6b423f6da957"}, + {file = "rpds_py-0.23.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2893d778d4671ee627bac4037a075168b2673c57186fb1a57e993465dbd79a93"}, + {file = "rpds_py-0.23.1-cp313-cp313-win32.whl", hash = "sha256:2cfa07c346a7ad07019c33fb9a63cf3acb1f5363c33bc73014e20d9fe8b01cdd"}, + {file = "rpds_py-0.23.1-cp313-cp313-win_amd64.whl", hash = "sha256:3aaf141d39f45322e44fc2c742e4b8b4098ead5317e5f884770c8df0c332da70"}, + {file = "rpds_py-0.23.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:759462b2d0aa5a04be5b3e37fb8183615f47014ae6b116e17036b131985cb731"}, + {file = "rpds_py-0.23.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3e9212f52074fc9d72cf242a84063787ab8e21e0950d4d6709886fb62bcb91d5"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e9f3a3ac919406bc0414bbbd76c6af99253c507150191ea79fab42fdb35982a"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c04ca91dda8a61584165825907f5c967ca09e9c65fe8966ee753a3f2b019fe1e"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ab923167cfd945abb9b51a407407cf19f5bee35001221f2911dc85ffd35ff4f"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ed6f011bedca8585787e5082cce081bac3d30f54520097b2411351b3574e1219"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6959bb9928c5c999aba4a3f5a6799d571ddc2c59ff49917ecf55be2bbb4e3722"}, + {file = "rpds_py-0.23.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1ed7de3c86721b4e83ac440751329ec6a1102229aa18163f84c75b06b525ad7e"}, + {file = "rpds_py-0.23.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5fb89edee2fa237584e532fbf78f0ddd1e49a47c7c8cfa153ab4849dc72a35e6"}, + {file = "rpds_py-0.23.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:7e5413d2e2d86025e73f05510ad23dad5950ab8417b7fc6beaad99be8077138b"}, + {file = "rpds_py-0.23.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d31ed4987d72aabdf521eddfb6a72988703c091cfc0064330b9e5f8d6a042ff5"}, + {file = "rpds_py-0.23.1-cp313-cp313t-win32.whl", hash = "sha256:f3429fb8e15b20961efca8c8b21432623d85db2228cc73fe22756c6637aa39e7"}, + {file = "rpds_py-0.23.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d6f6512a90bd5cd9030a6237f5346f046c6f0e40af98657568fa45695d4de59d"}, + {file = "rpds_py-0.23.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:09cd7dbcb673eb60518231e02874df66ec1296c01a4fcd733875755c02014b19"}, + {file = "rpds_py-0.23.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c6760211eee3a76316cf328f5a8bd695b47b1626d21c8a27fb3b2473a884d597"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72e680c1518733b73c994361e4b06441b92e973ef7d9449feec72e8ee4f713da"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae28144c1daa61366205d32abd8c90372790ff79fc60c1a8ad7fd3c8553a600e"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c698d123ce5d8f2d0cd17f73336615f6a2e3bdcedac07a1291bb4d8e7d82a05a"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98b257ae1e83f81fb947a363a274c4eb66640212516becaff7bef09a5dceacaa"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c9ff044eb07c8468594d12602291c635da292308c8c619244e30698e7fc455a"}, + {file = "rpds_py-0.23.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7938c7b0599a05246d704b3f5e01be91a93b411d0d6cc62275f025293b8a11ce"}, + {file = "rpds_py-0.23.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e9cb79ecedfc156c0692257ac7ed415243b6c35dd969baa461a6888fc79f2f07"}, + {file = "rpds_py-0.23.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:7b77e07233925bd33fc0022b8537774423e4c6680b6436316c5075e79b6384f4"}, + {file = "rpds_py-0.23.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a970bfaf130c29a679b1d0a6e0f867483cea455ab1535fb427566a475078f27f"}, + {file = "rpds_py-0.23.1-cp39-cp39-win32.whl", hash = "sha256:4233df01a250b3984465faed12ad472f035b7cd5240ea3f7c76b7a7016084495"}, + {file = "rpds_py-0.23.1-cp39-cp39-win_amd64.whl", hash = "sha256:c617d7453a80e29d9973b926983b1e700a9377dbe021faa36041c78537d7b08c"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c1f8afa346ccd59e4e5630d5abb67aba6a9812fddf764fd7eb11f382a345f8cc"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fad784a31869747df4ac968a351e070c06ca377549e4ace94775aaa3ab33ee06"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a96fcac2f18e5a0a23a75cd27ce2656c66c11c127b0318e508aab436b77428"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3e77febf227a1dc3220159355dba68faa13f8dca9335d97504abf428469fb18b"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26bb3e8de93443d55e2e748e9fd87deb5f8075ca7bc0502cfc8be8687d69a2ec"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:db7707dde9143a67b8812c7e66aeb2d843fe33cc8e374170f4d2c50bd8f2472d"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1eedaaccc9bb66581d4ae7c50e15856e335e57ef2734dbc5fd8ba3e2a4ab3cb6"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28358c54fffadf0ae893f6c1050e8f8853e45df22483b7fff2f6ab6152f5d8bf"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:633462ef7e61d839171bf206551d5ab42b30b71cac8f10a64a662536e057fdef"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a98f510d86f689fcb486dc59e6e363af04151e5260ad1bdddb5625c10f1e95f8"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e0397dd0b3955c61ef9b22838144aa4bef6f0796ba5cc8edfc64d468b93798b4"}, + {file = "rpds_py-0.23.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:75307599f0d25bf6937248e5ac4e3bde5ea72ae6618623b86146ccc7845ed00b"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3614d280bf7aab0d3721b5ce0e73434acb90a2c993121b6e81a1c15c665298ac"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e5963ea87f88bddf7edd59644a35a0feecf75f8985430124c253612d4f7d27ae"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad76f44f70aac3a54ceb1813ca630c53415da3a24fd93c570b2dfb4856591017"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2c6ae11e6e93728d86aafc51ced98b1658a0080a7dd9417d24bfb955bb09c3c2"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc869af5cba24d45fb0399b0cfdbcefcf6910bf4dee5d74036a57cf5264b3ff4"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c76b32eb2ab650a29e423525e84eb197c45504b1c1e6e17b6cc91fcfeb1a4b1d"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4263320ed887ed843f85beba67f8b2d1483b5947f2dc73a8b068924558bfeace"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7f9682a8f71acdf59fd554b82b1c12f517118ee72c0f3944eda461606dfe7eb9"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:754fba3084b70162a6b91efceee8a3f06b19e43dac3f71841662053c0584209a"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:a1c66e71ecfd2a4acf0e4bd75e7a3605afa8f9b28a3b497e4ba962719df2be57"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8d67beb6002441faef8251c45e24994de32c4c8686f7356a1f601ad7c466f7c3"}, + {file = "rpds_py-0.23.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a1e17d8dc8e57d8e0fd21f8f0f0a5211b3fa258b2e444c2053471ef93fe25a00"}, + {file = "rpds_py-0.23.1.tar.gz", hash = "sha256:7f3240dcfa14d198dba24b8b9cb3b108c06b68d45b7babd9eefc1038fdf7e707"}, ] [[package]] @@ -3425,13 +3912,13 @@ test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata [[package]] name = "six" -version = "1.16.0" +version = "1.17.0" description = "Python 2 and 3 compatibility utilities" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, ] [[package]] @@ -3484,7 +3971,6 @@ babel = ">=1.3" colorama = {version = ">=0.3.5", markers = "sys_platform == \"win32\""} docutils = ">=0.14,<0.19" imagesize = "*" -importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} Jinja2 = ">=2.3" packaging = "*" Pygments = ">=2.0" @@ -3615,7 +4101,6 @@ files = [ ] [package.dependencies] -importlib-resources = {version = "*", markers = "python_version < \"3.9\""} sphinx = ">=4,<5.1" [package.extras] @@ -3683,17 +4168,18 @@ sphinx = ["matplotlib", "myst-nb", "numpy", "sphinx-book-theme", "sphinx-design" [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.4" +version = "2.0.0" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-applehelp-1.0.4.tar.gz", hash = "sha256:828f867945bbe39817c210a1abfd1bc4895c8b73fcaade56d45357a348a07d7e"}, - {file = "sphinxcontrib_applehelp-1.0.4-py3-none-any.whl", hash = "sha256:29d341f67fb0f6f586b23ad80e072c8e6ad0b48417db2bde114a4c9746feb228"}, + {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, + {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] +standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] @@ -3709,39 +4195,40 @@ files = [ [package.dependencies] docutils = ">=0.8" -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} pybtex = ">=0.24" pybtex-docutils = ">=1.0.0" Sphinx = ">=2.1" [[package]] name = "sphinxcontrib-devhelp" -version = "1.0.2" -description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document." +version = "2.0.0" +description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, - {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, + {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, + {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] +standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.1" +version = "2.1.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-htmlhelp-2.0.1.tar.gz", hash = "sha256:0cbdd302815330058422b98a113195c9249825d681e18f11e8b1f78a2f11efff"}, - {file = "sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl", hash = "sha256:c38cb46dccf316c79de6e5515e1770414b797162b23cd3d06e67020e1d2a6903"}, + {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, + {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] +standalone = ["Sphinx (>=5)"] test = ["html5lib", "pytest"] [[package]] @@ -3760,85 +4247,87 @@ test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" -version = "1.0.3" -description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document." +version = "2.0.0" +description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"}, - {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"}, + {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, + {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] -test = ["pytest"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] +standalone = ["Sphinx (>=5)"] +test = ["defusedxml (>=0.7.1)", "pytest"] [[package]] name = "sphinxcontrib-serializinghtml" -version = "1.1.5" -description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)." +version = "2.0.0" +description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, - {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, + {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, + {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] +standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sqlalchemy" -version = "1.4.53" +version = "1.4.54" description = "Database Abstraction Library" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "SQLAlchemy-1.4.53-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:b61ac5457d91b5629a3dea2b258deb4cdd35ac8f6fa2031d2b9b2fff5b3396da"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a96aa8d425047551676b0e178ddb0683421e78eda879ab55775128b2e612cae"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e10ac36f0b994235c13388b39598bf27219ec8bdea5be99bdac612b01cbe525"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:437592b341a3229dd0443c9c803b0bf0a466f8f539014fef6cdb9c06b7edb7f9"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:784272ceb5eb71421fea9568749bcbe8bd019261a0e2e710a7efa76057af2499"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-win32.whl", hash = "sha256:122d7b5722df1a24402c6748bbb04687ef981493bb559d0cc0beffe722e0e6ed"}, - {file = "SQLAlchemy-1.4.53-cp310-cp310-win_amd64.whl", hash = "sha256:4604d42b2abccba266d3f5bbe883684b5df93e74054024c70d3fbb5eea45e530"}, - {file = "SQLAlchemy-1.4.53-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fb8e15dfa47f5de11ab073e12aadd6b502cfb7ac4bafd18bd18cfd1c7d13dbbc"}, - {file = "SQLAlchemy-1.4.53-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc8be4df55e8fde3006d9cb1f6b3df2ba26db613855dc4df2c0fcd5ec15cb3b7"}, - {file = "SQLAlchemy-1.4.53-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86b11640251f9a9789fd96cd6e5d176b1c230230c70ad40299bcbcc568451b4c"}, - {file = "SQLAlchemy-1.4.53-cp311-cp311-win32.whl", hash = "sha256:cd534c716f86bdf95b7b984a34ee278c91d1b1d7d183e7e5ff878600b1696046"}, - {file = "SQLAlchemy-1.4.53-cp311-cp311-win_amd64.whl", hash = "sha256:6dd06572872ca13ef5a90306a3e5af787498ddaa17fb00109b1243642646cd69"}, - {file = "SQLAlchemy-1.4.53-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2774c24c405136c3ef472e2352bdca7330659d481fbf2283f996c0ef9eb90f22"}, - {file = "SQLAlchemy-1.4.53-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68a614765197b3d13a730d631a78c3bb9b3b72ba58ed7ab295d58d517464e315"}, - {file = "SQLAlchemy-1.4.53-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d13d4dfbc6e52363886b47cf02cf68c5d2a37c468626694dc210d7e97d4ad330"}, - {file = "SQLAlchemy-1.4.53-cp312-cp312-win32.whl", hash = "sha256:197065b91456574d70b6459bfa62bc0b52a4960a29ef923c375ec427274a3e05"}, - {file = "SQLAlchemy-1.4.53-cp312-cp312-win_amd64.whl", hash = "sha256:421306c4b936b0271a3ce2dc074928d5ece4a36f9c482daa5770f44ecfc3a883"}, - {file = "SQLAlchemy-1.4.53-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:13fc34b35d8ddb3fbe3f8fcfdf6c2546e676187f0fb20f5774da362ddaf8fa2d"}, - {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626be971ff89541cfd3e70b54be00b57a7f8557204decb6223ce0428fec058f3"}, - {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:991e42fdfec561ebc6a4fae7161a86d129d6069fa14210b96b8dd752afa7059c"}, - {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:95123f3a1e0e8020848fd32ba751db889a01a44e4e4fef7e58c87ddd0b2fca59"}, - {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c58e011e9e6373b3a091d83f20601fb335a3b4bace80bfcb914ac168aad3b70d"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:670c7769bf5dcae9aff331247b5d82fe635c63731088a46ce68ba2ba519ef36e"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07ba54f09033d387ae9df8d62cbe211ed7304e0bfbece1f8c55e21db9fae5c11"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a38834b4c183c33daf58544281395aad2e985f0b47cca1e88ea5ada88344e63"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:616492f5315128a847f293a7c552f3561ac7e996d2aa5dc46bef4fb0d3781f1d"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0cf8c0af9563892c6632f7343bc393dfce6eeef8e4d10c5fadba9c0390520bd"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-win32.whl", hash = "sha256:c05fe05941424c2f3747a8952381b7725e24cba2ca00141380e54789d5b616b6"}, - {file = "SQLAlchemy-1.4.53-cp37-cp37m-win_amd64.whl", hash = "sha256:93e90aa3e3b2f8e8cbae4d5509f8e0cf82972378d323c740a8df1c1e9f484172"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:9d7368df54d3ed45a18955f6cec38ebe075290594ac0d5c87a8ddaff7e10de27"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89d8ac4158ef68eea8bb0f6dd0583127d9aa8720606964ba8eee20b254f9c83a"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16bb9fa4d00b4581b14d9f0e2224dc7745b854aa4687738279af0f48f7056c98"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4fe5168d0249c23f537950b6d75935ff2709365a113e29938a979aec36668ecf"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8608d162d3bd29d807aab32c3fb6e2f8e225a43d1c54c917fed38513785380"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-win32.whl", hash = "sha256:a9d4d132198844bd6828047135ce7b887687c92925049a2468a605fc775c7a1a"}, - {file = "SQLAlchemy-1.4.53-cp38-cp38-win_amd64.whl", hash = "sha256:c15d1f1fcf1f9bec0499ae1d9132b950fcc7730f2d26d10484c8808b4e077816"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:edf094a20a386ff2ec73de65ef18014b250259cb860edc61741e240ca22d6981"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83a9c3514ff19d9d30d8a8d378b24cd1dfa5528d20891481cb5f196117db6a48"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eaaeedbceb4dfd688fff2faf25a9a87a391f548811494f7bff7fa701b639abc3"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d021699b9007deb7aa715629078830c99a5fec2753d9bdd5ff33290d363ef755"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0465b8a68f8f4de754c1966c45b187ac784ad97bc9747736f913130f0e1adea0"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-win32.whl", hash = "sha256:5f67b9e9dcac3241781e96575468d55a42332157dee04bdbf781df573dff5f85"}, - {file = "SQLAlchemy-1.4.53-cp39-cp39-win_amd64.whl", hash = "sha256:a8c2f2a0b2c4e3b86eb58c9b6bb98548205eea2fba9dae4edfd29dc6aebbe95a"}, - {file = "SQLAlchemy-1.4.53.tar.gz", hash = "sha256:5e6ab710c4c064755fd92d1a417bef360228a19bdf0eee32b03aa0f5f8e9fe0d"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:af00236fe21c4d4f4c227b6ccc19b44c594160cc3ff28d104cdce85855369277"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1183599e25fa38a1a322294b949da02b4f0da13dbc2688ef9dbe746df573f8a6"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1990d5a6a5dc358a0894c8ca02043fb9a5ad9538422001fb2826e91c50f1d539"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:14b3f4783275339170984cadda66e3ec011cce87b405968dc8d51cf0f9997b0d"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b24364150738ce488333b3fb48bfa14c189a66de41cd632796fbcacb26b4585"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win32.whl", hash = "sha256:a8a72259a1652f192c68377be7011eac3c463e9892ef2948828c7d58e4829988"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win_amd64.whl", hash = "sha256:b67589f7955924865344e6eacfdcf70675e64f36800a576aa5e961f0008cde2a"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b05e0626ec1c391432eabb47a8abd3bf199fb74bfde7cc44a26d2b1b352c2c6e"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13e91d6892b5fcb94a36ba061fb7a1f03d0185ed9d8a77c84ba389e5bb05e936"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb59a11689ff3c58e7652260127f9e34f7f45478a2f3ef831ab6db7bcd72108f"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win32.whl", hash = "sha256:1390ca2d301a2708fd4425c6d75528d22f26b8f5cbc9faba1ddca136671432bc"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win_amd64.whl", hash = "sha256:2b37931eac4b837c45e2522066bda221ac6d80e78922fb77c75eb12e4dbcdee5"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3f01c2629a7d6b30d8afe0326b8c649b74825a0e1ebdcb01e8ffd1c920deb07d"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c24dd161c06992ed16c5e528a75878edbaeced5660c3db88c820f1f0d3fe1f4"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5e0d47d619c739bdc636bbe007da4519fc953393304a5943e0b5aec96c9877c"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win32.whl", hash = "sha256:12bc0141b245918b80d9d17eca94663dbd3f5266ac77a0be60750f36102bbb0f"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win_amd64.whl", hash = "sha256:f941aaf15f47f316123e1933f9ea91a6efda73a161a6ab6046d1cde37be62c88"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:a41611835010ed4ea4c7aed1da5b58aac78ee7e70932a91ed2705a7b38e40f52"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8c1b9ecaf9f2590337d5622189aeb2f0dbc54ba0232fa0856cf390957584a9"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de620f978ca273ce027769dc8db7e6ee72631796187adc8471b3c76091b809e"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c5a2530400a6e7e68fd1552a55515de6a4559122e495f73554a51cedafc11669"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cf7076c8578b3de4e43a046cc7a1af8466e1c3f5e64167189fe8958a4f9c02"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:f1e1b92ee4ee9ffc68624ace218b89ca5ca667607ccee4541a90cc44999b9aea"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41cffc63c7c83dfc30c4cab5b4308ba74440a9633c4509c51a0c52431fb0f8ab"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5933c45d11cbd9694b1540aa9076816cc7406964c7b16a380fd84d3a5fe3241"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cafe0ba3a96d0845121433cffa2b9232844a2609fce694fcc02f3f31214ece28"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19f816f4702d7b1951d7576026c7124b9bfb64a9543e571774cf517b7a50b29"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win32.whl", hash = "sha256:76c2ba7b5a09863d0a8166fbc753af96d561818c572dbaf697c52095938e7be4"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win_amd64.whl", hash = "sha256:a86b0e4be775902a5496af4fb1b60d8a2a457d78f531458d294360b8637bb014"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:a49730afb716f3f675755afec109895cab95bc9875db7ffe2e42c1b1c6279482"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26e78444bc77d089e62874dc74df05a5c71f01ac598010a327881a48408d0064"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02d2ecb9508f16ab9c5af466dfe5a88e26adf2e1a8d1c56eb616396ccae2c186"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:394b0135900b62dbf63e4809cdc8ac923182af2816d06ea61cd6763943c2cc05"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed3576675c187e3baa80b02c4c9d0edfab78eff4e89dd9da736b921333a2432"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win32.whl", hash = "sha256:fc9ffd9a38e21fad3e8c5a88926d57f94a32546e937e0be46142b2702003eba7"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win_amd64.whl", hash = "sha256:a01bc25eb7a5688656c8770f931d5cb4a44c7de1b3cec69b84cc9745d1e4cc10"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0b76bbb1cbae618d10679be8966f6d66c94f301cfc15cb49e2f2382563fb6efb"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdb2886c0be2c6c54d0651d5a61c29ef347e8eec81fd83afebbf7b59b80b7393"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:954816850777ac234a4e32b8c88ac1f7847088a6e90cfb8f0e127a1bf3feddff"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1d83cd1cc03c22d922ec94d0d5f7b7c96b1332f5e122e81b1a61fb22da77879a"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1576fba3616f79496e2f067262200dbf4aab1bb727cd7e4e006076686413c80c"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win32.whl", hash = "sha256:3112de9e11ff1957148c6de1df2bc5cc1440ee36783412e5eedc6f53638a577d"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win_amd64.whl", hash = "sha256:6da60fb24577f989535b8fc8b2ddc4212204aaf02e53c4c7ac94ac364150ed08"}, + {file = "sqlalchemy-1.4.54.tar.gz", hash = "sha256:4470fbed088c35dc20b78a39aaf4ae54fe81790c783b3264872a0224f437c31a"}, ] [package.dependencies] @@ -3937,13 +4426,13 @@ typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] [[package]] name = "tinycss2" -version = "1.3.0" +version = "1.4.0" description = "A tiny CSS parser" optional = false python-versions = ">=3.8" files = [ - {file = "tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7"}, - {file = "tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d"}, + {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, + {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, ] [package.dependencies] @@ -3955,33 +4444,74 @@ test = ["pytest", "ruff"] [[package]] name = "tomli" -version = "2.0.1" +version = "2.2.1" description = "A lil' TOML parser" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, + {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8"}, + {file = "tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff"}, + {file = "tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b"}, + {file = "tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea"}, + {file = "tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e"}, + {file = "tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98"}, + {file = "tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4"}, + {file = "tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7"}, + {file = "tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744"}, + {file = "tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec"}, + {file = "tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69"}, + {file = "tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc"}, + {file = "tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff"}, +] + +[[package]] +name = "tomlkit" +version = "0.13.2" +description = "Style preserving TOML library" +optional = false +python-versions = ">=3.8" files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, + {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, + {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, ] [[package]] name = "tornado" -version = "6.4.1" +version = "6.4.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." optional = false python-versions = ">=3.8" files = [ - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, - {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, - {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, - {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"}, + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c"}, + {file = "tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482"}, + {file = "tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38"}, + {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"}, ] [[package]] @@ -4001,13 +4531,13 @@ test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0, [[package]] name = "types-jsonschema" -version = "4.23.0.20240813" +version = "4.23.0.20241208" description = "Typing stubs for jsonschema" optional = false python-versions = ">=3.8" files = [ - {file = "types-jsonschema-4.23.0.20240813.tar.gz", hash = "sha256:c93f48206f209a5bc4608d295ac39f172fb98b9e24159ce577dbd25ddb79a1c0"}, - {file = "types_jsonschema-4.23.0.20240813-py3-none-any.whl", hash = "sha256:be283e23f0b87547316c2ee6b0fd36d95ea30e921db06478029e10b5b6aa6ac3"}, + {file = "types_jsonschema-4.23.0.20241208-py3-none-any.whl", hash = "sha256:87934bd9231c99d8eff94cacfc06ba668f7973577a9bd9e1f9de957c5737313e"}, + {file = "types_jsonschema-4.23.0.20241208.tar.gz", hash = "sha256:e8b15ad01f290ecf6aea53f93fbdf7d4730e4600313e89e8a7f95622f7e87b7c"}, ] [package.dependencies] @@ -4015,24 +4545,24 @@ referencing = "*" [[package]] name = "types-python-dateutil" -version = "2.9.0.20240821" +version = "2.9.0.20241206" description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.8" files = [ - {file = "types-python-dateutil-2.9.0.20240821.tar.gz", hash = "sha256:9649d1dcb6fef1046fb18bebe9ea2aa0028b160918518c34589a46045f6ebd98"}, - {file = "types_python_dateutil-2.9.0.20240821-py3-none-any.whl", hash = "sha256:f5889fcb4e63ed4aaa379b44f93c32593d50b9a94c9a60a0c854d8cc3511cd57"}, + {file = "types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53"}, + {file = "types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb"}, ] [[package]] name = "types-pyyaml" -version = "6.0.12.20240808" +version = "6.0.12.20241230" description = "Typing stubs for PyYAML" optional = false python-versions = ">=3.8" files = [ - {file = "types-PyYAML-6.0.12.20240808.tar.gz", hash = "sha256:b8f76ddbd7f65440a8bda5526a9607e4c7a322dc2f8e1a8c405644f9a6f4b9af"}, - {file = "types_PyYAML-6.0.12.20240808-py3-none-any.whl", hash = "sha256:deda34c5c655265fc517b546c902aa6eed2ef8d3e921e4765fe606fe2afe8d35"}, + {file = "types_PyYAML-6.0.12.20241230-py3-none-any.whl", hash = "sha256:fa4d32565219b68e6dee5f67534c722e53c00d1cfc09c435ef04d7353e1e96e6"}, + {file = "types_pyyaml-6.0.12.20241230.tar.gz", hash = "sha256:7f07622dbd34bb9c8b264fe860a17e0efcad00d50b5f27e93984909d9363498c"}, ] [[package]] @@ -4046,6 +4576,17 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] +[[package]] +name = "tzdata" +version = "2025.1" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2025.1-py2.py3-none-any.whl", hash = "sha256:7e127113816800496f027041c570f50bcd464a020098a3b6b199517772303639"}, + {file = "tzdata-2025.1.tar.gz", hash = "sha256:24894909e88cdb28bd1636c6887801df64cb485bd593f2fd83ef29075a81d694"}, +] + [[package]] name = "uc-micro-py" version = "1.0.3" @@ -4076,13 +4617,13 @@ dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake [[package]] name = "urllib3" -version = "2.2.2" +version = "2.3.0" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, + {file = "urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df"}, + {file = "urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d"}, ] [package.extras] @@ -4093,13 +4634,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "virtualenv" -version = "20.26.3" +version = "20.29.2" description = "Virtual Python Environment builder" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "virtualenv-20.26.3-py3-none-any.whl", hash = "sha256:8cc4a31139e796e9a7de2cd5cf2489de1217193116a8fd42328f1bd65f434589"}, - {file = "virtualenv-20.26.3.tar.gz", hash = "sha256:4c43a2a236279d9ea36a0d76f98d84bd6ca94ac4e0f4a3b9d46d05e10fea542a"}, + {file = "virtualenv-20.29.2-py3-none-any.whl", hash = "sha256:febddfc3d1ea571bdb1dc0f98d7b45d24def7428214d4fb73cc486c9568cce6a"}, + {file = "virtualenv-20.29.2.tar.gz", hash = "sha256:fdaabebf6d03b5ba83ae0a02cfe96f48a716f4fae556461d180825866f75b728"}, ] [package.dependencies] @@ -4124,19 +4665,15 @@ files = [ [[package]] name = "webcolors" -version = "24.8.0" +version = "24.11.1" description = "A library for working with the color formats defined by HTML and CSS." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "webcolors-24.8.0-py3-none-any.whl", hash = "sha256:fc4c3b59358ada164552084a8ebee637c221e4059267d0f8325b3b560f6c7f0a"}, - {file = "webcolors-24.8.0.tar.gz", hash = "sha256:08b07af286a01bcd30d583a7acadf629583d1f79bfef27dd2c2c5c263817277d"}, + {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, + {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, ] -[package.extras] -docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] -tests = ["coverage[toml]"] - [[package]] name = "webencodings" version = "0.5.1" @@ -4183,13 +4720,13 @@ watchdog = ["watchdog (>=2.3)"] [[package]] name = "wheel" -version = "0.44.0" +version = "0.45.1" description = "A built-package format for Python" optional = false python-versions = ">=3.8" files = [ - {file = "wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f"}, - {file = "wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49"}, + {file = "wheel-0.45.1-py3-none-any.whl", hash = "sha256:708e7481cc80179af0e556bbf0cc00b8444c7321e2700b8d8580231d13017248"}, + {file = "wheel-0.45.1.tar.gz", hash = "sha256:661e1abd9198507b1409a20c02106d9670b2576e916d58f520316666abca6729"}, ] [package.extras] @@ -4208,13 +4745,13 @@ files = [ [[package]] name = "zipp" -version = "3.20.1" +version = "3.21.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"}, - {file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"}, + {file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"}, + {file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"}, ] [package.extras] @@ -4235,5 +4772,5 @@ xlsx-ingress = [] [metadata] lock-version = "2.0" -python-versions = ">=3.8.1, <3.12" -content-hash = "7c1ec24f0569028c3fcbf84ac9365e5643204b1cd922eadd2f287d511d38245d" +python-versions = ">=3.10, <3.13" +content-hash = "bd5c7c86aa5ac16fa28780e96e7929ff2f9457a5f61ae832c26b57b400820e9e" diff --git a/pyproject.toml b/pyproject.toml index d9b017192..2b62b181d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "BuildingMOTIF" -version = "0.3.0" +version = "0.4.0" description = "Building Metadata OnTology Interoperability Framework" license = "LICENSE" authors = [ @@ -19,26 +19,28 @@ documentation = "https://buildingmotif.readthedocs.io/" buildingmotif = 'buildingmotif.bin.cli:app' [tool.poetry.dependencies] -python = ">=3.8.1, <3.12" +python = ">=3.10, <3.13" rdflib = ">=7.0" SQLAlchemy = {extras = ["mypy"], version = "^1.4.44"} pyaml = "^21.10.1" -networkx = "^2.7.1" +networkx = "^3.4.2" types-PyYAML = "^6.0.4" nbmake = "^1.3.0" rdflib-sqlalchemy = "^0.5.3" -pyshacl = "^0.26" +pyshacl = "^0.30" alembic = "^1.8.0" Flask = "^2.1.2" Flask-API = "^3.0.post1" rfc3987 = "^1.3.8" setuptools = "^73.0.1" psycopg2 = {version="^2.9.5", optional=true} -pygit2 = "~1.11.1" +pygit2 = "~1.17" jsonschema = "^4.21.1" -brick-tq-shacl = {optional = true, version="0.3.3a3"} +brick-tq-shacl = {optional = true, version="0.3.4a2"} werkzeug="^2.3.7" types-jsonschema = "^4.21.0.20240311" +matplotlib = "^3.9.2" +pandas = "^2.2.3" [tool.poetry.group.dev.dependencies] black = "^22.3.0" @@ -53,12 +55,13 @@ jupyter = "^1.0.0" ipykernel = "^6.13.0" rise = "^5.7.1" jupyter-book = "^0.15.1" -flake8 = "^5.0.0" +flake8 = "^7.0.0" BAC0 = "^22.9.21" netifaces = "^0.11.0" pytz = "^2022.7.1" openpyxl = "^3.0.10" pytest = "^8.0.2" +tomlkit = "^0.13.2" [tool.poetry.extras] all = ["BAC0", "openpyxl", "netifaces", "pytz", "psycopg2"] diff --git a/scripts/bump_dev_version.py b/scripts/bump_dev_version.py new file mode 100644 index 000000000..855646dcf --- /dev/null +++ b/scripts/bump_dev_version.py @@ -0,0 +1,251 @@ +import os +import re +from pathlib import Path +from typing import Optional + +import requests +import tomlkit + +# Version pattern from https://peps.python.org/pep-0440/#appendix-b-parsing-version-strings-with-regular-expressions +VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P
                                          # pre-release
+            [-_\.]?
+            (?Palpha|a|beta|b|preview|pre|c|rc)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+        (?P                                         # post release
+            (?:-(?P[0-9]+))
+            |
+            (?:
+                [-_\.]?
+                (?Ppost|rev|r)
+                [-_\.]?
+                (?P[0-9]+)?
+            )
+        )?
+        (?P                                          # dev release
+            [-_\.]?
+            (?Pdev)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+    )
+    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
+"""
+_regex = re.compile(
+    r"^\s*" + VERSION_PATTERN + r"\s*$",
+    re.VERBOSE | re.IGNORECASE,
+)
+
+
+def extract_version_components(version_str: str) -> dict:
+    """Splits a version string into its components"""
+    match = _regex.match(version_str)
+    if match is not None:
+        return match.groupdict()
+    raise Exception(f"Failed to extract components from {version_str}")
+
+
+def get_release_list(index_url: str, project_name: str) -> list[str]:
+    """Gets a list of release versions from a pypi compliant index"""
+    index_url = index_url.rstrip("/")
+    response = requests.get(index_url + "/pypi/" + project_name + "/json")
+    response.raise_for_status()
+    body = response.json()
+    releases = body["releases"].keys()
+    return list(releases)
+
+
+def components_to_version(components: dict) -> str:
+    """Takes the components of a version and combines them into a string"""
+    for key in components.keys():
+        if components[key] is None:
+            components[key] = ""
+    return (
+        components["epoch"]
+        + components["release"]
+        + components["pre"]
+        + components["post"]
+        + components["dev"]
+        + components["local"]
+    )
+
+
+def increment_development_component(
+    version_str: str, increment_components: bool = False
+) -> str:
+    """Increment develop component, and optionally increment the least
+    signification version component if the current version string does
+    not contain a development component."""
+    version_groups = extract_version_components(version_str)
+
+    if version_groups["dev_n"]:
+        dev_n = version_groups["dev_n"]
+        dev = version_groups["dev"]
+        dev_version = int(version_groups["dev_n"])
+        dev = dev[: -1 * len(dev_n)]
+        dev = dev + str(dev_version + 1)
+        version_groups["dev"] = dev
+    else:
+        if increment_components:
+            if version_groups["post_n2"]:
+                post_n2 = version_groups["post_n2"]
+                post = version_groups["post"]
+                post = post[: -1 * len(post_n2)]
+                post = post + str(int(post_n2) + 1)
+                version_groups["post"] = post
+            elif version_groups["post_n1"]:
+                post_n1 = version_groups["post_n1"]
+                post = version_groups["post"]
+                post = post[1 + len(post_n1) :]
+                post = "-" + str(int(post_n1) + 1) + post
+                version_groups["post"] = post
+            elif version_groups["pre_n"]:
+                pre_n = version_groups["pre_n"]
+                pre = version_groups["pre"]
+                pre = pre[: -1 * len(pre_n)]
+                pre = pre + str(int(pre_n) + 1)
+                version_groups["pre"] = pre
+            else:
+                release = version_groups["release"]
+                release_components = release.split(".")
+                release_components[-1] = str(int(release_components[-1]) + 1)
+                version_groups["release"] = ".".join(release_components)
+        version_groups["dev"] = ".dev1"
+
+    return components_to_version(version_groups)
+
+
+def version_greater_than(version_a: Optional[str], version_b: Optional[str]) -> bool:
+    """Compare if version a is strictly greater than version b"""
+    if version_a is None:
+        return False
+    if version_b is None:
+        return True
+
+    a_components = extract_version_components(version_a)
+    b_components = extract_version_components(version_b)
+
+    if a_components["release"]:
+        if b_components["release"]:
+            a_release_parts = a_components["release"].split(".")
+            b_release_parts = b_components["release"].split(".")
+            for i in range(0, min(len(a_release_parts), len(b_release_parts))):
+                a = int(a_release_parts[i])
+                b = int(b_release_parts[i])
+                if a > b:
+                    return True
+                elif a < b:
+                    return False
+        else:
+            return True
+
+    if a_components["pre_n"]:
+        if b_components["pre_n"]:
+            a = int(a_components["pre_n"])
+            b = int(b_components["pre_n"])
+            if a > b:
+                return True
+            elif a < b:
+                return False
+        else:
+            return True
+    elif b_components["pre_n"]:
+        return False
+
+    if a_components["post_n1"]:
+        if b_components["post_n1"]:
+            a = int(a_components["post_n1"])
+            b = int(b_components["post_n1"])
+            if a > b:
+                return True
+            elif a < b:
+                return False
+        else:
+            return True
+    elif b_components["post_n1"]:
+        return False
+
+    if a_components["post_n2"]:
+        if b_components["post_n2"]:
+            a = int(a_components["post_n2"])
+            b = int(b_components["post_n2"])
+            if a > b:
+                return True
+            elif a < b:
+                return False
+        else:
+            return True
+    elif b_components["post_n2"]:
+        return False
+
+    if a_components["dev_n"]:
+        if b_components["dev_n"]:
+            a = int(a_components["dev_n"])
+            b = int(b_components["dev_n"])
+            if a > b:
+                return True
+            elif a < b:
+                return False
+        else:
+            return True
+    elif b_components["dev_n"]:
+        return False
+
+    return False
+
+
+def get_next_dev_version(local_version: str, release_list: list[str]) -> str:
+    """Compare local_version to list of released versions.
+    If there are already dev builds it will incrment the latest of those builds.
+    If there are not, it will create the version for the first dev build.
+    """
+    local_version_components = extract_version_components(local_version)
+
+    recent_release = None
+    for release in release_list:
+        components = extract_version_components(release)
+        match: bool = True
+        for key, value in local_version_components.items():
+            if key not in ["dev", "dev_n", "dev_l"]:
+                if value != components[key]:
+                    match = False
+        if match and version_greater_than(release, recent_release):
+            recent_release = release
+
+    if (
+        version_greater_than(recent_release, local_version)
+        and recent_release is not None
+    ):
+        return increment_development_component(recent_release)
+    else:
+        if local_version_components["dev_n"]:
+            return local_version
+        else:
+            return increment_development_component(local_version)
+
+
+# Read pyproject.toml
+pyproject_path = Path(os.path.abspath(__file__)).parents[1] / "pyproject.toml"
+pyproject_contents = tomlkit.load(pyproject_path.open("r"))
+
+# Query release list
+release_list = get_release_list(
+    os.environ.get("PYPI_URL", "https://pypi.org/"),
+    pyproject_contents["tool"]["poetry"]["name"].lower(),
+)
+# Get current version from pyproject.toml
+version = pyproject_contents["tool"]["poetry"]["version"]
+
+# Determine name for dev release
+next_dev_version = get_next_dev_version(version, release_list)
+print(next_dev_version)
+pyproject_contents["tool"]["poetry"]["version"] = next_dev_version
+
+# Update pyproject.toml
+tomlkit.dump(pyproject_contents, pyproject_path.open("w"))
diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py
index 51a3fbe66..b658e98df 100644
--- a/tests/integration/conftest.py
+++ b/tests/integration/conftest.py
@@ -1,6 +1,7 @@
 """
 Generates tests automatically
 """
+
 import glob
 from pathlib import Path
 
diff --git a/tests/library/test_223p_templates.py b/tests/library/test_223p_templates.py
index 729a5ffb4..c8576f992 100644
--- a/tests/library/test_223p_templates.py
+++ b/tests/library/test_223p_templates.py
@@ -102,7 +102,9 @@ def pytest_generate_tests(metafunc):
                 run_shacl_inference=False,
                 infer_templates=False,
             )
-            templates = library.get_templates()
+            templates = templates = sorted(
+                library.get_templates(), key=lambda t: t.name
+            )
             params.extend([(bm, s223, library, template) for template in templates])
 
         # remove all templates in 'to skip'
diff --git a/tests/library/test_brick_templates.py b/tests/library/test_brick_templates.py
index 5f2b0ed1c..9fe9f1dc1 100644
--- a/tests/library/test_brick_templates.py
+++ b/tests/library/test_brick_templates.py
@@ -28,14 +28,14 @@ def setup_building_motif_brick() -> Tuple[BuildingMOTIF, Library]:
     )
     dependency_graphs = [
         "libraries/brick/imports/ref-schema.ttl",
-        "libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl",
-        "libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS-v2.1.ttl",
-        "libraries/qudt/VOCAB_QUDT-UNITS-ALL-v2.1.ttl",
-        "libraries/qudt/SCHEMA-FACADE_QUDT-v2.1.ttl",
-        "libraries/qudt/SCHEMA_QUDT_NoOWL-v2.1.ttl",
-        "libraries/qudt/VOCAB_QUDT-PREFIXES-v2.1.ttl",
-        "libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT-v2.1.ttl",
-        "libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL-v2.1.ttl",
+        "libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl",
+        "libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl",
+        "libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl",
+        "libraries/qudt/SCHEMA-FACADE_QUDT.ttl",
+        "libraries/qudt/SCHEMA_QUDT_NoOWL.ttl",
+        "libraries/qudt/VOCAB_QUDT-PREFIXES.ttl",
+        "libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl",
+        "libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl",
         "libraries/brick/imports/rec.ttl",
         "libraries/brick/imports/recimports.ttl",
         "libraries/brick/imports/brickpatches.ttl",
@@ -77,7 +77,7 @@ def pytest_generate_tests(metafunc):
         ids = []
         for library_name in libraries:
             library = Library.load(directory=library_name, run_shacl_inference=False)
-            templates = library.get_templates()
+            templates = sorted(library.get_templates(), key=lambda t: t.name)
             params.extend([(bm, brick, library, template) for template in templates])
             ids.extend([f"{library.name}-{template.name}" for template in templates])
         metafunc.parametrize("bm,brick,library,template", params, ids=ids)
diff --git a/tests/unit/api/test_library.py b/tests/unit/api/test_library.py
index 6a729032e..3c85aa77d 100644
--- a/tests/unit/api/test_library.py
+++ b/tests/unit/api/test_library.py
@@ -99,4 +99,4 @@ def test_get_library_not_found(client):
 
     # Assert
     assert results.status_code == 404
-    assert results.json == {"message": "No library with id -1"}
+    assert results.json == {"message": "ID: -1"}
diff --git a/tests/unit/api/test_model.py b/tests/unit/api/test_model.py
index c55779e6f..6684a939c 100644
--- a/tests/unit/api/test_model.py
+++ b/tests/unit/api/test_model.py
@@ -79,7 +79,7 @@ def test_get_model_not_found(client):
 
     # Assert
     assert results.status_code == 404
-    assert results.json == {"message": "No model with id -1"}
+    assert results.json == {"message": "ID: -1"}
 
 
 def test_get_model_graph(client, building_motif):
@@ -104,7 +104,7 @@ def test_get_model_graph_not_found(client):
 
     # Assert
     assert results.status_code == 404
-    assert results.json == {"message": "No model with id -1"}
+    assert results.json == {"message": "ID: -1"}
 
 
 def test_update_model_graph_overwrite(client, building_motif):
@@ -160,7 +160,7 @@ def test_update_model_graph_not_found(client, building_motif):
 
     # Assert
     assert results.status_code == 404
-    assert results.json == {"message": "No model with id -1"}
+    assert results.json == {"message": "ID: -1"}
 
 
 def test_update_model_graph_no_header(client, building_motif):
@@ -262,7 +262,9 @@ def test_validate_model(client, building_motif, shacl_engine):
     assert library_1 is not None
     library_2 = Library.load(directory="tests/unit/fixtures/templates")
     assert library_2 is not None
-    brick = Library.load(ontology_graph="tests/unit/fixtures/Brick.ttl")
+    brick = Library.load(
+        ontology_graph="tests/unit/fixtures/Brick.ttl", overwrite=False
+    )
     assert brick is not None
 
     BLDG = Namespace("urn:building/")
@@ -277,15 +279,15 @@ def test_validate_model(client, building_motif, shacl_engine):
     )
 
     # Assert
-    assert results.status_code == 200
+    assert results.status_code == 200, results.data
 
     assert results.get_json().keys() == {"message", "reasons", "valid"}
     assert isinstance(results.get_json()["message"], str)
     response = results.get_json()
     assert "urn:building/vav1" in response["reasons"], "vav1 should be in the response"
     assert set(response["reasons"]["urn:building/vav1"]) == {
-        "urn:building/vav1 needs between 1 and None instances of https://brickschema.org/schema/Brick#Air_Flow_Sensor on path https://brickschema.org/schema/Brick#hasPoint",
-        "urn:building/vav1 needs between 1 and None instances of https://brickschema.org/schema/Brick#Temperature_Sensor on path https://brickschema.org/schema/Brick#hasPoint",
+        "urn:building/vav1 expected at least 1 instance(s) of brick:Temperature_Sensor on path brick:hasPoint",
+        "urn:building/vav1 expected at least 1 instance(s) of brick:Air_Flow_Sensor on path brick:hasPoint",
     }
     assert not results.get_json()["valid"]
 
@@ -304,7 +306,7 @@ def test_validate_model(client, building_motif, shacl_engine):
     )
 
     # Assert
-    assert results.status_code == 200
+    assert results.status_code == 200, results.data
 
     assert results.get_json().keys() == {"message", "reasons", "valid"}
     assert isinstance(results.get_json()["message"], str)
@@ -419,7 +421,7 @@ def test_validate_model_bad_args(client, building_motif):
     assert results.status_code == 400
 
 
-def test_test_model_against_shapes(client, building_motif, shacl_engine):
+def test_validate_model_against_shapes(client, building_motif, shacl_engine):
     building_motif.shacl_engine = shacl_engine
     # Load libraries
     Library.load(ontology_graph=str(PROJECT_DIR / "libraries/brick/Brick.ttl"))
@@ -458,7 +460,7 @@ def test_test_model_against_shapes(client, building_motif, shacl_engine):
     # assert
     assert (
         len(results.json["urn:ashrae/g36/5.16.14/multiple-zone-vav-ahu-afdd/fc-3"]) == 0
-    ), results.content
+    ), results.data
     assert (
         len(results.json["urn:ashrae/g36/5.16.14/multiple-zone-vav-ahu-afdd/fc-4"]) == 3
-    ), results.content
+    ), results.data
diff --git a/tests/unit/api/test_template.py b/tests/unit/api/test_template.py
index 836d7c22f..2b1caefea 100644
--- a/tests/unit/api/test_template.py
+++ b/tests/unit/api/test_template.py
@@ -79,7 +79,7 @@ def test_get_template_not_found(client):
 
     # Assert
     assert results.status_code == 404
-    assert results.json == {"message": "No template with id -1"}
+    assert results.json == {"message": "ID: -1"}
 
 
 def test_evaluate_bindings(client, building_motif):
diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py
index 1d02638c2..31bc35a39 100644
--- a/tests/unit/conftest.py
+++ b/tests/unit/conftest.py
@@ -89,18 +89,18 @@ def pytest_generate_tests(metafunc):
     if "library" in metafunc.fixturenames:
         libdir = pathlib.Path("libraries")
         libraries_files = libdir.rglob("*.yml")
-        libraries = {str(lib.parent) for lib in libraries_files}
+        libraries = [str(lib.parent) for lib in libraries_files]
 
         metafunc.parametrize("library", libraries)
 
     if "builtin_library" in metafunc.fixturenames:
-        builtin_library = {"brick", "constraints"}
+        builtin_library = ["brick", "constraints"]
         metafunc.parametrize("builtin_library", builtin_library)
 
     if "builtin_ontology" in metafunc.fixturenames:
-        builtin_ontology = {"brick/Brick.ttl", "constraints/constraints.ttl"}
+        builtin_ontology = ["brick/Brick.ttl", "constraints/constraints.ttl"]
         metafunc.parametrize("builtin_ontology", builtin_ontology)
 
     if "shacl_engine" in metafunc.fixturenames:
-        shacl_engine = {"pyshacl", "topquadrant"}
+        shacl_engine = ["pyshacl", "topquadrant"]
         metafunc.parametrize("shacl_engine", shacl_engine)
diff --git a/tests/unit/database/table_connection/test_db_library.py b/tests/unit/database/table_connection/test_db_library.py
index 95abb6123..9b992298a 100644
--- a/tests/unit/database/table_connection/test_db_library.py
+++ b/tests/unit/database/table_connection/test_db_library.py
@@ -1,12 +1,16 @@
 import uuid
 
 import pytest
-from sqlalchemy.exc import NoResultFound
 
+from buildingmotif.database.errors import (
+    LibraryNotFound,
+    ShapeCollectionNotFound,
+    TemplateNotFound,
+)
 from buildingmotif.database.tables import DBLibrary, DBShapeCollection, DBTemplate
 
 
-def test_create_db_library(table_connection, monkeypatch):
+def test_create_db_library(bm, monkeypatch):
     mocked_uuid = uuid.uuid4()
 
     def mockreturn():
@@ -14,7 +18,7 @@ def mockreturn():
 
     monkeypatch.setattr(uuid, "uuid4", mockreturn)
 
-    db_library = table_connection.create_db_library(name="my_db_library")
+    db_library = bm.table_connection.create_db_library(name="my_db_library")
 
     assert db_library.name == "my_db_library"
     assert db_library.templates == []
@@ -22,11 +26,11 @@ def mockreturn():
     assert db_library.shape_collection.graph_id == str(mocked_uuid)
 
 
-def test_get_db_libraries(table_connection):
-    table_connection.create_db_library(name="my_db_library")
-    table_connection.create_db_library(name="your_db_library")
+def test_get_db_libraries(bm):
+    bm.table_connection.create_db_library(name="my_db_library")
+    bm.table_connection.create_db_library(name="your_db_library")
 
-    db_libraries = table_connection.get_all_db_libraries()
+    db_libraries = bm.table_connection.get_all_db_libraries()
 
     assert len(db_libraries) == 2
     assert all(type(tl) == DBLibrary for tl in db_libraries)
@@ -36,11 +40,11 @@ def test_get_db_libraries(table_connection):
     }
 
 
-def test_get_db_library(table_connection):
-    db_library = table_connection.create_db_library(name="my_library")
-    table_connection.create_db_template("my_db_template", library_id=db_library.id)
+def test_get_db_library(bm):
+    db_library = bm.table_connection.create_db_library(name="my_library")
+    bm.table_connection.create_db_template("my_db_template", library_id=db_library.id)
 
-    db_library = table_connection.get_db_library(id=db_library.id)
+    db_library = bm.table_connection.get_db_library(id=db_library.id)
     assert db_library.name == "my_library"
     assert len(db_library.templates) == 1
     assert type(db_library.templates[0]) == DBTemplate
@@ -48,7 +52,7 @@ def test_get_db_library(table_connection):
 
 
 def test_get_db_library_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         table_connection.get_db_library("I don't exist")
 
 
@@ -65,7 +69,7 @@ def test_get_db_library_by_name(table_connection):
 
 
 def test_get_db_library_by_name_not_found(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         table_connection.get_db_library_by_name("I don't exist")
 
 
@@ -80,7 +84,7 @@ def test_update_db_library_name(table_connection):
 
 
 def test_update_db_library_name_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         table_connection.update_db_library_name("I don't exist", "new_name")
 
 
@@ -93,16 +97,16 @@ def test_delete_db_library(table_connection):
 
     table_connection.delete_db_library(db_library.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         table_connection.get_db_library(db_library.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(TemplateNotFound):
         table_connection.get_db_template(db_template.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ShapeCollectionNotFound):
         table_connection.get_db_shape_collection(db_shape_collection.id)
 
 
 def tests_delete_db_library_does_does_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         table_connection.delete_db_library("does not exist")
diff --git a/tests/unit/database/table_connection/test_db_model.py b/tests/unit/database/table_connection/test_db_model.py
index 159f2bce7..974355d58 100644
--- a/tests/unit/database/table_connection/test_db_model.py
+++ b/tests/unit/database/table_connection/test_db_model.py
@@ -2,8 +2,8 @@
 from unittest import mock
 
 import pytest
-from sqlalchemy.exc import NoResultFound
 
+from buildingmotif.database.errors import ModelNotFound, ShapeCollectionNotFound
 from buildingmotif.database.tables import DBModel, DBShapeCollection
 
 
@@ -24,15 +24,15 @@ def test_create_db_model(mock_uuid4, table_connection):
     assert db_model.manifest.graph_id == str(mocked_manifest_uuid)
 
 
-def test_get_db_models(table_connection):
-    table_connection.create_db_model(
+def test_get_db_models(bm):
+    bm.table_connection.create_db_model(
         name="my_db_model", description="a very good model"
     )
-    table_connection.create_db_model(
+    bm.table_connection.create_db_model(
         name="your_db_model", description="an ok good model"
     )
 
-    db_models = table_connection.get_all_db_models()
+    db_models = bm.table_connection.get_all_db_models()
 
     assert len(db_models) == 2
     assert all(type(m) == DBModel for m in db_models)
@@ -43,13 +43,13 @@ def test_get_db_models(table_connection):
 
 
 @mock.patch("uuid.uuid4")
-def test_get_db_model(mock_uuid4, table_connection):
+def test_get_db_model(mock_uuid4, bm):
     mocked_graph_uuid = uuid.uuid4()
     mocked_manifest_uuid = uuid.uuid4()
     mock_uuid4.side_effect = [mocked_graph_uuid, mocked_manifest_uuid]
 
-    db_model = table_connection.create_db_model(name="my_db_model")
-    db_model = table_connection.get_db_model(id=db_model.id)
+    db_model = bm.table_connection.create_db_model(name="my_db_model")
+    db_model = bm.table_connection.get_db_model(id=db_model.id)
 
     assert db_model.name == "my_db_model"
     assert db_model.graph_id == str(mocked_graph_uuid)
@@ -58,7 +58,7 @@ def test_get_db_model(mock_uuid4, table_connection):
 
 
 def test_get_db_model_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ModelNotFound):
         table_connection.get_db_model("I don't exist")
 
 
@@ -73,7 +73,7 @@ def test_update_db_model_name(table_connection):
 
 
 def test_update_db_model_name_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ModelNotFound):
         table_connection.update_db_model_name("I don't exist", "new_name")
 
 
@@ -90,7 +90,7 @@ def test_update_db_model_description(table_connection):
 
 
 def test_update_db_model_description_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ModelNotFound):
         table_connection.update_db_model_description("I don't exist", "new_description")
 
 
@@ -98,13 +98,13 @@ def test_delete_db_model(table_connection):
     db_model = table_connection.create_db_model(name="my_db_model")
     table_connection.delete_db_model(db_model.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ModelNotFound):
         table_connection.get_db_model(db_model.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ShapeCollectionNotFound):
         table_connection.get_db_shape_collection(db_model.manifest.id)
 
 
-def tests_delete_db_model_does_does_exist(table_connection):
-    with pytest.raises(NoResultFound):
+def tests_delete_db_model_does_not_exist(table_connection):
+    with pytest.raises(ModelNotFound):
         table_connection.delete_db_model("does not exist")
diff --git a/tests/unit/database/table_connection/test_db_shape.py b/tests/unit/database/table_connection/test_db_shape.py
index 96109396d..ad2435fea 100644
--- a/tests/unit/database/table_connection/test_db_shape.py
+++ b/tests/unit/database/table_connection/test_db_shape.py
@@ -1,12 +1,12 @@
 import uuid
 
 import pytest
-from sqlalchemy.exc import NoResultFound
 
+from buildingmotif.database.errors import ShapeCollectionNotFound
 from buildingmotif.database.tables import DBShapeCollection
 
 
-def test_create_db_shape_collection(monkeypatch, table_connection):
+def test_create_db_shape_collection(monkeypatch, bm):
     mocked_uuid = uuid.uuid4()
 
     def mockreturn():
@@ -14,16 +14,16 @@ def mockreturn():
 
     monkeypatch.setattr(uuid, "uuid4", mockreturn)
 
-    db_shape_collection = table_connection.create_db_shape_collection()
+    db_shape_collection = bm.table_connection.create_db_shape_collection()
 
     assert db_shape_collection.graph_id == str(mocked_uuid)
 
 
-def test_get_db_shape_collections(table_connection):
-    shape_collection1 = table_connection.create_db_shape_collection()
-    shape_collection2 = table_connection.create_db_shape_collection()
+def test_get_db_shape_collections(bm):
+    shape_collection1 = bm.table_connection.create_db_shape_collection()
+    shape_collection2 = bm.table_connection.create_db_shape_collection()
 
-    db_shape_collections = table_connection.get_all_db_shape_collections()
+    db_shape_collections = bm.table_connection.get_all_db_shape_collections()
 
     assert len(db_shape_collections) == 2
     assert all(type(m) == DBShapeCollection for m in db_shape_collections)
@@ -47,7 +47,7 @@ def mockreturn():
 
 
 def test_get_db_shape_collection_does_not_exist(table_connection):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ShapeCollectionNotFound):
         table_connection.get_db_shape_collection("I don't exist")
 
 
@@ -55,10 +55,10 @@ def test_delete_db_shape_collection(table_connection):
     db_shape_collection = table_connection.create_db_shape_collection()
     table_connection.delete_db_shape_collection(db_shape_collection.id)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(ShapeCollectionNotFound):
         table_connection.get_db_shape_collection(db_shape_collection.id)
 
 
-def tests_delete_db_shape_collection_does_does_exist(table_connection):
-    with pytest.raises(NoResultFound):
+def tests_delete_db_shape_collection_does_not_exist(table_connection):
+    with pytest.raises(ShapeCollectionNotFound):
         table_connection.delete_db_shape_collection("does not exist")
diff --git a/tests/unit/database/table_connection/test_db_template.py b/tests/unit/database/table_connection/test_db_template.py
index b565ed7bd..3177cad23 100644
--- a/tests/unit/database/table_connection/test_db_template.py
+++ b/tests/unit/database/table_connection/test_db_template.py
@@ -5,6 +5,7 @@
 from sqlalchemy.exc import IntegrityError, NoResultFound
 
 from buildingmotif import BuildingMOTIF
+from buildingmotif.database.errors import LibraryNotFound, TemplateNotFound
 from buildingmotif.database.tables import DBTemplate
 
 
@@ -77,7 +78,7 @@ def mockreturn():
 
     monkeypatch.setattr(uuid, "uuid4", mockreturn)
 
-    with pytest.raises(NoResultFound):
+    with pytest.raises(LibraryNotFound):
         bm.table_connection.create_db_template(
             name="my_db_template",
             library_id=-999,  # id does not exist
@@ -139,7 +140,7 @@ def mockreturn():
 
 
 def test_get_db_template_does_not_exist(bm: BuildingMOTIF):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(TemplateNotFound):
         bm.table_connection.get_db_template(-999)
 
 
@@ -176,7 +177,7 @@ def test_update_db_template_name_bad_name(bm: BuildingMOTIF):
 
 
 def test_update_db_template_name_does_not_exist(bm: BuildingMOTIF):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(TemplateNotFound):
         bm.table_connection.update_db_template_name(-999, "new_name")
 
 
@@ -188,12 +189,12 @@ def test_delete_db_template(bm: BuildingMOTIF):
 
     bm.table_connection.delete_db_template(db_template.id)
 
-    with pytest.raises(NoResultFound):
-        bm.table_connection.get_db_model(db_template.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(db_template.id)
 
 
 def tests_delete_db_template_does_does_exist(bm: BuildingMOTIF):
-    with pytest.raises(NoResultFound):
+    with pytest.raises(TemplateNotFound):
         bm.table_connection.delete_db_template(-999)
 
 
@@ -201,21 +202,24 @@ def test_add_template_dependency(bm: BuildingMOTIF):
     (
         _,
         dependant_template,
-        dependee_template,
+        dependency_template,
     ) = create_dependency_test_fixtures(bm)
 
     bm.table_connection.add_template_dependency_preliminary(
-        dependant_template.id, dependee_template.id, {"name": "ding", "h2": "dong"}
+        dependant_template.id,
+        dependency_template.library.name,
+        dependency_template.name,
+        {"name": "ding", "h2": "dong"},
     )
     bm.table_connection.check_all_template_dependencies()
 
-    assert dependant_template.dependencies == [dependee_template]
-    assert dependee_template.dependants == [dependant_template]
+    assert dependant_template.dependencies[0].dependency_template == dependency_template
+
     res = bm.table_connection.get_db_template_dependencies(dependant_template.id)
     assert len(res) == 1
     dep_assoc = res[0]
-    assert dep_assoc.dependant_id == dependant_template.id
-    assert dep_assoc.dependee_id == dependee_template.id
+    assert dep_assoc.template_id == dependant_template.id
+    assert dep_assoc.dependency_template == dependency_template
     assert dep_assoc.args == {"name": "ding", "h2": "dong"}
 
 
@@ -228,7 +232,10 @@ def test_add_template_dependency_bad_args(bm: BuildingMOTIF):
 
     with pytest.raises(ValueError):
         bm.table_connection.add_template_dependency_preliminary(
-            dependant_template.id, dependee_template.id, {"bad": "ding"}
+            dependant_template.id,
+            dependee_template.library.name,
+            dependee_template.name,
+            {"bad": "ding"},
         )
         bm.table_connection.check_all_template_dependencies()
 
@@ -241,12 +248,18 @@ def test_add_template_dependency_already_exist(bm: BuildingMOTIF):
     ) = create_dependency_test_fixtures(bm)
 
     bm.table_connection.add_template_dependency_preliminary(
-        dependant_template.id, dependee_template.id, {"name": "ding", "h2": "dong"}
+        dependant_template.id,
+        dependee_template.library.name,
+        dependee_template.name,
+        {"name": "ding", "h2": "dong"},
     )
 
     with pytest.raises(IntegrityError):
         bm.table_connection.add_template_dependency_preliminary(
-            dependant_template.id, dependee_template.id, {"name": "ding", "h2": "dong"}
+            dependant_template.id,
+            dependee_template.library.name,
+            dependee_template.name,
+            {"name": "ding", "h2": "dong"},
         )
         bm.table_connection.check_all_template_dependencies()
 
@@ -261,15 +274,18 @@ def test_get_dependencies(bm: BuildingMOTIF):
     ) = create_dependency_test_fixtures(bm)
 
     bm.table_connection.add_template_dependency_preliminary(
-        dependant_template.id, dependee_template.id, {"name": "ding", "h2": "dong"}
+        dependant_template.id,
+        dependee_template.library.name,
+        dependee_template.name,
+        {"name": "ding", "h2": "dong"},
     )
     bm.table_connection.check_all_template_dependencies()
 
     res = bm.table_connection.get_db_template_dependencies(dependant_template.id)
     assert len(res) == 1
     dep_assoc = res[0]
-    assert dep_assoc.dependant_id == dependant_template.id
-    assert dep_assoc.dependee_id == dependee_template.id
+    assert dep_assoc.template_id == dependant_template.id
+    assert dep_assoc.dependency_template == dependee_template
     assert dep_assoc.args == {"name": "ding", "h2": "dong"}
 
 
@@ -281,15 +297,18 @@ def test_remove_dependencies(bm: BuildingMOTIF):
     ) = create_dependency_test_fixtures(bm)
 
     bm.table_connection.add_template_dependency_preliminary(
-        dependant_template.id, dependee_template.id, {"name": "ding", "h2": "dong"}
+        dependant_template.id,
+        dependee_template.library.name,
+        dependee_template.name,
+        {"name": "ding", "h2": "dong"},
     )
     bm.table_connection.check_all_template_dependencies()
 
     res = bm.table_connection.get_db_template_dependencies(dependant_template.id)
     assert len(res) == 1
     dep_assoc = res[0]
-    assert dep_assoc.dependant_id == dependant_template.id
-    assert dep_assoc.dependee_id == dependee_template.id
+    assert dep_assoc.template_id == dependant_template.id
+    assert dep_assoc.dependency_template == dependee_template
     assert dep_assoc.args == {"name": "ding", "h2": "dong"}
 
     bm.table_connection.delete_template_dependency(
diff --git a/tests/unit/database/test_cascading_deletes_cascades.py b/tests/unit/database/test_cascading_deletes_cascades.py
new file mode 100644
index 000000000..196eada71
--- /dev/null
+++ b/tests/unit/database/test_cascading_deletes_cascades.py
@@ -0,0 +1,166 @@
+import pytest
+
+from buildingmotif.database.errors import (
+    LibraryNotFound,
+    ShapeCollectionNotFound,
+    TemplateNotFound,
+)
+from buildingmotif.dataclasses.template import Template
+
+
+def test_cascade_delete_model_shape_collection(bm):
+    # Create a model; its manifest (shape collection) should be cascading deleted.
+    db_model = bm.table_connection.create_db_model(
+        name="cascade_model", description="test cascading delete on model"
+    )
+    shape_collection_id = db_model.manifest.id
+    # assert we can get the shape collection
+    assert bm.table_connection.get_db_shape_collection(shape_collection_id)
+    # now delete the model, and assert the shape collection is gone
+    bm.table_connection.delete_db_model(db_model.id)
+    bm.session.commit()
+    with pytest.raises(ShapeCollectionNotFound):
+        bm.table_connection.get_db_shape_collection(shape_collection_id)
+
+
+def test_cascade_delete_library_cascades(bm):
+    # Create a library, two templates within it, and a dependency relationship.
+    db_library = bm.table_connection.create_db_library(name="cascade_library")
+    shape_collection_id = db_library.shape_collection.id
+    template1 = bm.table_connection.create_db_template(
+        name="template1", library_id=db_library.id
+    )
+    template2 = bm.table_connection.create_db_template(
+        name="template2", library_id=db_library.id
+    )
+
+    # Add a dependency relationship between template1 and template2.
+    template1 = Template.load(template1.id)
+    template2 = Template.load(template2.id)
+    template1.add_dependency(template2, {"name": "dependency"})
+    # Verify the dependency exists.
+    deps = bm.table_connection.get_db_template_dependencies(template1.id)
+    assert len(deps) == 1
+
+    # Deleting the library should cascade-delete the library, its templates, and its associated shape collection.
+    bm.table_connection.delete_db_library(db_library.id)
+    bm.session.commit()
+
+    with pytest.raises(LibraryNotFound):
+        bm.table_connection.get_db_library(db_library.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(template1.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(template2.id)
+    with pytest.raises(ShapeCollectionNotFound):
+        bm.table_connection.get_db_shape_collection(shape_collection_id)
+
+
+# library1 has template1, library2 has template2, template1 depends on template2
+# then deleting library1 should delete template1 but leave library2 and template2
+def test_cascade_delete_dependent_multi_library(bm):
+    # Create two libraries
+    library1 = bm.table_connection.create_db_library(name="cascade_library1")
+    library2 = bm.table_connection.create_db_library(name="cascade_library2")
+    # Create template1 in library1 and template2 in library2
+    template1 = bm.table_connection.create_db_template(
+        name="template1", library_id=library1.id
+    )
+    template2 = bm.table_connection.create_db_template(
+        name="template2", library_id=library2.id
+    )
+    # Load templates to add dependency and verify dependency relationship.
+    template1 = Template.load(template1.id)
+    template2 = Template.load(template2.id)
+    # Add dependency: template1 depends on template2
+    template1.add_dependency(template2, {"name": "dependency"})
+    # Verify dependency exists.
+    deps = bm.table_connection.get_db_template_dependencies(template1.id)
+    assert len(deps) == 1
+    # Delete library1 and ensure cascading deletion
+    bm.table_connection.delete_db_library(library1.id)
+    bm.session.commit()
+    with pytest.raises(LibraryNotFound):
+        bm.table_connection.get_db_library(library1.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(template1.id)
+    # Library2 and its template should still exist
+    assert bm.table_connection.get_db_library(library2.id)
+    assert bm.table_connection.get_db_template(template2.id)
+
+
+# library1 has template1, library2 has template2, template1 depends on template2
+# deleting library2 should delete template2 but leave library1 and template1
+def test_cascade_delete_dependency_multi_library(bm):
+    # Create two libraries
+    library1 = bm.table_connection.create_db_library(name="cascade_library1")
+    library2 = bm.table_connection.create_db_library(name="cascade_library2")
+    # Create template1 in library1 and template2 in library2
+    template1 = bm.table_connection.create_db_template(
+        name="template1", library_id=library1.id
+    )
+    template2 = bm.table_connection.create_db_template(
+        name="template2", library_id=library2.id
+    )
+    # Load templates to add dependency and verify dependency relationship.
+    template1 = Template.load(template1.id)
+    template2 = Template.load(template2.id)
+    # Add dependency: template1 depends on template2
+    template1.add_dependency(template2, {"name": "dependency"})
+    # Verify dependency exists.
+    deps = bm.table_connection.get_db_template_dependencies(template1.id)
+    assert len(deps) == 1
+    # Delete library2 and ensure cascading deletion
+    bm.table_connection.delete_db_library(library2.id)
+    bm.session.commit()
+    with pytest.raises(LibraryNotFound):
+        bm.table_connection.get_db_library(library2.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(template2.id)
+
+    # Library1 and its template should still be here
+    bm.table_connection.get_db_library(library1.id)
+    bm.table_connection.get_db_template(template1.id)
+
+
+def test_depedency_resolves_after_library_replacement(bm):
+    # Create two libraries
+    library1 = bm.table_connection.create_db_library(name="cascade_library1")
+    library2 = bm.table_connection.create_db_library(name="cascade_library2")
+    # Create template1 in library1 and template2 in library2
+    template1 = bm.table_connection.create_db_template(
+        name="template1", library_id=library1.id
+    )
+    template2 = bm.table_connection.create_db_template(
+        name="template2", library_id=library2.id
+    )
+    # Load templates to add dependency and verify dependency relationship.
+    template1 = Template.load(template1.id)
+    template2 = Template.load(template2.id)
+    # Add dependency: template1 depends on template2
+    template1.add_dependency(template2, {"name": "dependency"})
+    # Verify dependency exists.
+    deps = bm.table_connection.get_db_template_dependencies(template1.id)
+    assert len(deps) == 1
+    # Verify dependency resolves
+    assert deps[0].dependency_template == bm.table_connection.get_db_template(
+        template2.id
+    )
+    # Delete library2 and ensure cascading deletion
+    bm.table_connection.delete_db_library(library2.id)
+    bm.session.commit()
+    with pytest.raises(LibraryNotFound):
+        bm.table_connection.get_db_library(library2.id)
+    with pytest.raises(TemplateNotFound):
+        bm.table_connection.get_db_template(template2.id)
+    # Verify dependency does not resolves
+    assert deps[0].dependency_template is None
+    library2 = bm.table_connection.create_db_library(name="cascade_library2")
+    # Recreate template2 in library2
+    template2 = bm.table_connection.create_db_template(
+        name="template2", library_id=library2.id
+    )
+    # Verify dependency resolves
+    assert deps[0].dependency_template == bm.table_connection.get_db_template(
+        template2.id
+    )
diff --git a/tests/unit/dataclasses/conftest.py b/tests/unit/dataclasses/conftest.py
index 04c205239..e3d4e1c35 100644
--- a/tests/unit/dataclasses/conftest.py
+++ b/tests/unit/dataclasses/conftest.py
@@ -21,3 +21,20 @@ def clean_building_motif():
         building_motif.session.commit()
         building_motif.close()
         BuildingMOTIF.clean()
+
+
+@pytest.fixture
+def clean_building_motif_topquadrant():
+    BuildingMOTIF.clean()
+    with tempfile.TemporaryDirectory() as tempdir:
+        temp_db_path = os.path.join(tempdir, "temp.db")
+        uri = f"sqlite:///{temp_db_path}"
+        building_motif = BuildingMOTIF(uri, shacl_engine="topquadrant")
+        # add tables to db
+        building_motif.setup_tables()
+
+        yield building_motif
+
+        building_motif.session.commit()
+        building_motif.close()
+        BuildingMOTIF.clean()
diff --git a/tests/unit/dataclasses/test_compiled_model.py b/tests/unit/dataclasses/test_compiled_model.py
new file mode 100644
index 000000000..53a0a5091
--- /dev/null
+++ b/tests/unit/dataclasses/test_compiled_model.py
@@ -0,0 +1,120 @@
+import sqlite3
+
+import pytest
+from rdflib import URIRef
+
+from buildingmotif.dataclasses import Library, Model
+from buildingmotif.dataclasses.compiled_model import CompiledModel
+
+
+def test_validate(clean_building_motif_topquadrant):
+    model = Model.from_file("tests/unit/fixtures/compilation/brick_model.ttl")
+    brick = Library.load(
+        ontology_graph="tests/unit/fixtures/Brick.ttl"
+    ).get_shape_collection()
+    shape_collection = Library.load(
+        ontology_graph="tests/unit/fixtures/compilation/shapes.ttl"
+    ).get_shape_collection()
+    compiled_model = model.compile([shape_collection, brick])
+
+    assert isinstance(
+        compiled_model, CompiledModel
+    ), "Compiled model is not an instance of CompiledModel"
+    assert compiled_model.model, "Model is not set in CompiledModel"
+
+    validation_context = compiled_model.validate()
+    assert validation_context is not None
+    assert not validation_context.valid
+
+
+def test_compiled_model_compilation(clean_building_motif_topquadrant):
+    model = Model.from_file("tests/unit/fixtures/compilation/s223_model.ttl")
+    s223 = Library.load(
+        ontology_graph="libraries/ashrae/223p/ontology/223p.ttl"
+    ).get_shape_collection()
+    compiled_model = model.compile([s223])
+
+    # check that pt1:DumbSwitch has a connectedTo relationship to pt2:Luminaire
+    res = compiled_model.graph.query(
+        """ASK {
+           .
+    }"""
+    )
+    compiled_model.graph.serialize("/tmp/compiled_model.ttl", format="turtle")
+    assert bool(
+        res
+    ), "DumbSwitch is not connectedTo Luminaire, so s223 inference did not run to completion"
+
+
+def test_defining_shape_collection(clean_building_motif_topquadrant):
+    model = Model.from_file("tests/unit/fixtures/compilation/brick_model.ttl")
+    shape_collection = Library.load(
+        ontology_graph="tests/unit/fixtures/compilation/shapes.ttl"
+    ).get_shape_collection()
+    compiled_model = model.compile([shape_collection])
+
+    shape_uri = URIRef("urn:shape1/vav_shape")
+    sc = compiled_model.defining_shape_collection(shape_uri)
+    assert sc is not None
+    assert (
+        sc.id == shape_collection.id
+    ), "Defining shape collection for urn:shape1/vav_shape is not the same as the one that was compiled"
+
+    shape_uri = URIRef("urn:shape1/does_not_exist")
+    sc = compiled_model.defining_shape_collection(shape_uri)
+    assert (
+        sc is None
+    ), "Defining shape collection for urn:shape1/does_not_exist should be None"
+
+
+def test_shape_to_table(clean_building_motif_topquadrant):
+    model = Model.from_file("tests/unit/fixtures/compilation/brick_model.ttl")
+    brick = Library.load(
+        ontology_graph="https://brickschema.org/schema/1.4/Brick.ttl"
+    ).get_shape_collection()
+    shape_collection = Library.load(
+        ontology_graph="tests/unit/fixtures/compilation/shapes.ttl"
+    ).get_shape_collection()
+    compiled_model = model.compile([shape_collection, brick])
+
+    conn = sqlite3.connect(":memory:")
+
+    with pytest.raises(ValueError):
+        shape_uri = URIRef("urn:shape1/does_not_exist")
+        compiled_model.shape_to_table(shape_uri, "does_not_exist", conn)
+
+    shape_uri = URIRef("urn:shape1/vav_shape")
+    compiled_model.shape_to_table(shape_uri, "vav", conn)
+    rows = conn.execute("SELECT target, hasAirFlowSensor FROM vav").fetchall()
+    assert len(rows) == 2
+    assert ("urn:model1/vav1", "urn:model1/afs1") in rows
+    assert ("urn:model1/vav2", "urn:model1/afs2") in rows
+
+
+def test_shape_to_df(clean_building_motif_topquadrant):
+    model = Model.from_file("tests/unit/fixtures/compilation/brick_model.ttl")
+    brick = Library.load(
+        ontology_graph="https://brickschema.org/schema/1.4/Brick.ttl"
+    ).get_shape_collection()
+    shape_collection = Library.load(
+        ontology_graph="tests/unit/fixtures/compilation/shapes.ttl"
+    ).get_shape_collection()
+    compiled_model = model.compile([shape_collection, brick])
+
+    with pytest.raises(ValueError):
+        shape_uri = URIRef("urn:shape1/does_not_exist")
+        compiled_model.shape_to_df(shape_uri)
+
+    shape_uri = URIRef("urn:shape1/vav_shape")
+    df = compiled_model.shape_to_df(shape_uri)
+    assert df is not None
+    assert set(df.columns) == {"target", "hasAirFlowSensor"}
+    assert len(df) == 2
+    assert (
+        df[df["target"] == "urn:model1/vav1"]["hasAirFlowSensor"].values[0]
+        == "urn:model1/afs1"
+    )
+    assert (
+        df[df["target"] == "urn:model1/vav2"]["hasAirFlowSensor"].values[0]
+        == "urn:model1/afs2"
+    )
diff --git a/tests/unit/dataclasses/test_model.py b/tests/unit/dataclasses/test_model.py
index 6e26af6bc..225afdee5 100644
--- a/tests/unit/dataclasses/test_model.py
+++ b/tests/unit/dataclasses/test_model.py
@@ -1,11 +1,12 @@
 import pytest
 from rdflib import Graph, Literal, Namespace, URIRef
-from rdflib.compare import graph_diff, isomorphic, to_isomorphic
+from rdflib.compare import isomorphic
+from rdflib.exceptions import ParserError
 from rdflib.namespace import FOAF
 
 from buildingmotif import BuildingMOTIF
 from buildingmotif.dataclasses import Library, Model, ValidationContext
-from buildingmotif.namespaces import BRICK, RDF, RDFS, SH, A
+from buildingmotif.namespaces import BRICK, OWL, RDF, RDFS, SH, A
 
 BLDG = Namespace("urn:building/")
 
@@ -44,6 +45,53 @@ def test_load_model(clean_building_motif):
     assert isomorphic(result.graph, m.graph)
 
 
+def test_from_file_no_ontology_declaration(clean_building_motif):
+    # this should fail because the file does not declare an ontology
+    with pytest.raises(ValueError):
+        Model.from_file("tests/unit/fixtures/smallOffice_brick.ttl")
+
+
+def test_from_file(clean_building_motif):
+    # Create a model from a file
+    model = Model.from_file("tests/unit/fixtures/from_file_test.ttl")
+
+    assert isinstance(model, Model)
+    assert model.name == "https://example.com"
+    assert model.description == "This is an example graph"
+    assert len(model.graph) == 2
+
+
+def test_from_file_weird_extensions(clean_building_motif):
+    # Create a model from a file. the from_file_test.xyz is a turtle-formatted file
+    # so even though the extension is .xyz, it should still be able to parse it
+    # because rdflib defaults to turtle if it can't determine the format from the extension
+    model = Model.from_file("tests/unit/fixtures/from_file_test.xyz")
+
+    assert isinstance(model, Model)
+    assert model.name == "https://example.com"
+    assert model.description == "This is an example graph"
+    assert len(model.graph) == 2
+
+    # guesses 'turtle' because xmlbadext is not a valid extension
+    with pytest.raises(ParserError):
+        model = Model.from_file("tests/unit/fixtures/from_file_test.xmlbadext")
+
+
+def test_from_graph(clean_building_motif):
+    # Create a graph
+    g = Graph()
+    g.add((URIRef("https://example.com"), RDF.type, OWL.Ontology))
+    g.add((URIRef("https://example.com"), RDFS.comment, Literal("Example description")))
+
+    # Create a model from the graph
+    model = Model.from_graph(g)
+
+    assert isinstance(model, Model)
+    assert model.name == "https://example.com"
+    assert model.description == "Example description"
+    assert len(model.graph) == 2
+
+
 def test_update_model_manifest(clean_building_motif):
     m = Model.create(name="https://example.com", description="a very good model")
     lib = Library.load(ontology_graph="tests/unit/fixtures/shapes/shape1.ttl")
@@ -212,7 +260,9 @@ def test_model_compile(bm: BuildingMOTIF, shacl_engine):
         "tests/unit/fixtures/smallOffice_brick.ttl", format="ttl"
     )
 
-    brick = Library.load(ontology_graph="libraries/brick/Brick-full.ttl")
+    brick = Library.load(
+        ontology_graph="libraries/brick/Brick-full.ttl", infer_templates=False
+    )
 
     compiled_model = small_office_model.compile([brick.get_shape_collection()])
 
@@ -220,10 +270,8 @@ def test_model_compile(bm: BuildingMOTIF, shacl_engine):
         "tests/unit/fixtures/smallOffice_brick_compiled.ttl", format="ttl"
     )
 
-    # returns in_both, in_first, in_second
-    _, in_first, _ = graph_diff(
-        to_isomorphic(precompiled_model), to_isomorphic(compiled_model)
-    )
+    in_first = precompiled_model - compiled_model.graph
+
     # passes if everything from precompiled_model is in compiled_model
     assert len(in_first) == 0
 
diff --git a/tests/unit/dataclasses/test_shape_collection.py b/tests/unit/dataclasses/test_shape_collection.py
index 069ba0577..eb3574645 100644
--- a/tests/unit/dataclasses/test_shape_collection.py
+++ b/tests/unit/dataclasses/test_shape_collection.py
@@ -124,7 +124,54 @@ def test_get_shapes_for_class(clean_building_motif):
     assert len(shapes) == 1
 
 
-def test_shape_to_query(clean_building_motif):
+# Define shape URIs and their expected query clauses for assertions
+shape_to_query_fixtures = {
+    "sensor": [
+        "rdf:type/rdfs:subClassOf*  .",
+        "  .",
+    ],
+    "vav": [
+        "?target  ?sensor .",
+        "?air_flow_sensor rdf:type/rdfs:subClassOf*  .",
+        "OPTIONAL { ?target  ?dp_sensor .",
+        "rdf:type/rdfs:subClassOf*  .",
+    ],
+    "multiple_targets": [
+        "BIND( AS ?target) .",
+        "BIND( AS ?target) .",
+    ],
+    "subjectTarget": [
+        "?target  ?ignore ."
+    ],
+    "objectTarget": [
+        "?ignore  ?target ."
+    ],
+    "multiple_classes": [
+        "?target rdf:type/rdfs:subClassOf* ",
+        "?target rdf:type/rdfs:subClassOf* ",
+        "?target  ?label",
+    ],
+    "test_sh_or": [
+        "?target  ",
+        "?target  ",
+    ],
+    "optional_property": [
+        "OPTIONAL { ?target  ?unit .",
+        "?unit rdf:type/rdfs:subClassOf*  .",
+    ],
+    "or_clauses_qualified_shape": [
+        "?target rdf:type/rdfs:subClassOf* ",
+        "?target  ?part",
+        "?part rdf:type/rdfs:subClassOf* ",
+        "?part ",
+        "rdf:type/rdfs:subClassOf* ",
+        "?part  ",
+    ],
+}
+
+
+@pytest.mark.parametrize("shape_name, query_clauses", shape_to_query_fixtures.items())
+def test_shape_to_query(clean_building_motif, shape_name, query_clauses):
     # fix seed for random variable names
     random.seed(0)
 
@@ -133,47 +180,8 @@ def test_shape_to_query(clean_building_motif):
     lib = Library.load(ontology_graph="tests/unit/fixtures/shape_to_query/shapes.ttl")
     sc = lib.get_shape_collection()
 
-    query1 = sc.shape_to_query(URIRef("urn:shapes_to_query/sensor"))
-    assert (
-        "rdf:type/rdfs:subClassOf*  ."
-        in query1
-    ), query1
-    assert (
-        "  ."
-        in query1
-    ), query1
-    # assert this parses correctly
-    g.query(query1)
-
-    query2 = sc.shape_to_query(URIRef("urn:shapes_to_query/vav"))
-    assert "?target  ?sensor ." in query2
-    assert (
-        "?air_flow_sensor rdf:type/rdfs:subClassOf*  ."
-        in query2
-    )
-    assert (
-        "OPTIONAL { ?target  ?dp_sensor ."
-        in query2
-    )
-    assert (
-        "rdf:type/rdfs:subClassOf*  ."
-        in query2
-    )
-    # assert this parses correctly
-    g.query(query2)
-
-    # test that we handle multiple target nodes
-    with pytest.raises(ValueError):
-        sc.shape_to_query(URIRef("urn:shapes_to_query/multiple_targets"))
-
-    # handle targetSubjectsOf
-    query3 = sc.shape_to_query(URIRef("urn:shapes_to_query/subjectTarget"))
-    assert (
-        "?target  ?ignore ."
-    ) in query3, query3
-
-    # handle targetObjectsOf
-    query4 = sc.shape_to_query(URIRef("urn:shapes_to_query/objectTarget"))
-    assert (
-        "?ignore  ?target ."
-    ) in query4, query4
+    query = sc.shape_to_query(URIRef(f"urn:shapes_to_query/{shape_name}"))
+    for clause in query_clauses:
+        assert clause in query, query
+    # Validate that the query executes correctly
+    g.query(query)
diff --git a/tests/unit/dataclasses/test_template_dc.py b/tests/unit/dataclasses/test_template_dc.py
index fa2c31c2d..99283034e 100644
--- a/tests/unit/dataclasses/test_template_dc.py
+++ b/tests/unit/dataclasses/test_template_dc.py
@@ -6,7 +6,6 @@
 from sqlalchemy.exc import IntegrityError, NoResultFound
 
 from buildingmotif.dataclasses import Library, Template
-from buildingmotif.dataclasses.template import Dependency
 from buildingmotif.template_compilation import compile_template_spec
 from buildingmotif.utils import graph_size
 
@@ -100,9 +99,9 @@ def test_add_dependency(clean_building_motif):
 
     dependant.add_dependency(dependee, {"name": "1", "param": "2"})
 
-    assert dependant.get_dependencies() == (
-        Dependency(dependee.id, {"name": "1", "param": "2"}),
-    )
+    assert dependant.get_dependencies()[0].template == dependee
+    assert dependant.get_dependencies()[0].args == {"name": "1", "param": "2"}
+
     dependant.check_dependencies()
 
 
@@ -114,14 +113,12 @@ def test_add_multiple_dependencies(clean_building_motif):
     dependant.add_dependency(dependee, {"name": "1", "param": "2"})
     dependant.add_dependency(dependee, {"name": "3", "param": "4"})
 
-    assert (
-        Dependency(dependee.id, {"name": "1", "param": "2"})
-        in dependant.get_dependencies()
-    )
-    assert (
-        Dependency(dependee.id, {"name": "3", "param": "4"})
-        in dependant.get_dependencies()
-    )
+    dependencies = [
+        (dependency.template, dependency.args)
+        for dependency in dependant.get_dependencies()
+    ]
+    assert (dependee, {"name": "1", "param": "2"}) in dependencies
+    assert (dependee, {"name": "3", "param": "4"}) in dependencies
     assert len(dependant.get_dependencies()) == 2
     dependant.check_dependencies()
 
@@ -156,9 +153,8 @@ def test_get_dependencies(clean_building_motif):
 
     dependant.add_dependency(dependee, {"name": "1", "param": "2"})
 
-    assert dependant.get_dependencies() == (
-        Dependency(dependee.id, {"name": "1", "param": "2"}),
-    )
+    assert dependant.get_dependencies()[0].template == dependee
+    assert dependant.get_dependencies()[0].args == {"name": "1", "param": "2"}
 
 
 def test_remove_dependency(clean_building_motif):
@@ -167,9 +163,9 @@ def test_remove_dependency(clean_building_motif):
     dependee = lib.create_template("dependee", dependency_template_body)
 
     dependant.add_dependency(dependee, {"name": "1", "param": "2"})
-    assert dependant.get_dependencies() == (
-        Dependency(dependee.id, {"name": "1", "param": "2"}),
-    )
+
+    assert dependant.get_dependencies()[0].template == dependee
+    assert dependant.get_dependencies()[0].args == {"name": "1", "param": "2"}
 
     dependant.remove_dependency(dependee)
     assert dependant.get_dependencies() == ()
@@ -205,8 +201,12 @@ def test_get_library_dependencies_from_ttl(clean_building_motif):
     for templ in lib.get_templates():
         print(templ.name)
     templ = lib.get_template_by_name("urn:shape/vav_shape")
+    for dep in templ.get_dependencies():
+        print(dep.dependency_library_name)
+        print(dep.dependency_template_name)
+    templ.check_dependencies()
     assert len(templ.get_dependencies()) == 2, "Expected 2 dependencies"
-    dep_names = [d.template.name for d in templ.get_dependencies()]
+    dep_names = [d.dependency_template_name for d in templ.get_dependencies()]
     assert "urn:shape/Air_Flow_Sensor" in dep_names
     assert "https://brickschema.org/schema/Brick#Air_Temperature_Sensor" in dep_names
 
diff --git a/tests/unit/fixtures/compilation/brick_model.ttl b/tests/unit/fixtures/compilation/brick_model.ttl
new file mode 100644
index 000000000..6b3fdfa47
--- /dev/null
+++ b/tests/unit/fixtures/compilation/brick_model.ttl
@@ -0,0 +1,23 @@
+@prefix brick:  .
+@prefix owl:  .
+@prefix rdf:  .
+@prefix rdfs:  .
+@prefix sh:  .
+@prefix :  .
+
+: a owl:Ontology .
+
+:vav1 a brick:VAV ;
+    brick:hasPoint :afs1 .
+
+:afs1 a brick:Air_Flow_Sensor .
+
+:vav2 a brick:RVAV ;
+    brick:hasPoint :afs2 .
+
+:afs2 a brick:Supply_Air_Flow_Sensor .
+
+:vav3 a brick:VAV ;
+    brick:hasPoint :ts1 .
+
+:ts1 a brick:Temperature_Sensor .
diff --git a/tests/unit/fixtures/compilation/model.ttl b/tests/unit/fixtures/compilation/model.ttl
new file mode 100644
index 000000000..257062d45
--- /dev/null
+++ b/tests/unit/fixtures/compilation/model.ttl
@@ -0,0 +1,23 @@
+@prefix brick:  .
+@prefix owl:  .
+@prefix rdf:  .
+@prefix rdfs:  .
+@prefix sh:  .
+@prefix :  .
+
+: a owl:Ontology .
+
+:vav1 a brick:VAV ;
+    brick:hasPoint :afs1 .
+
+:afs1 a brick:Air_Flow_Sensor .
+
+:vav2 a brick:RVAV ;
+    brick:hasPoint :afs2 .
+
+:afs2 a brick:Supply_Air_Flow_Sensor .
+
+:vav3 a brick:VAV ;
+    brick:hasPoint :ts1 .
+
+:ts1 a brick:Temperature_Sensor .
diff --git a/tests/unit/fixtures/compilation/s223_model.ttl b/tests/unit/fixtures/compilation/s223_model.ttl
new file mode 100644
index 000000000..733482058
--- /dev/null
+++ b/tests/unit/fixtures/compilation/s223_model.ttl
@@ -0,0 +1,705 @@
+# baseURI: http://data.ashrae.org/standard223/1.0/data/patterns-scenario
+# imports: http://data.ashrae.org/standard223/1.0/model/all
+
+@prefix owl:  .
+@prefix pt0:  .
+@prefix pt1:  .
+@prefix pt10:  .
+@prefix pt11:  .
+@prefix pt12:  .
+@prefix pt13:  .
+@prefix pt14:  .
+@prefix pt15:  .
+@prefix pt2:  .
+@prefix pt3:  .
+@prefix pt4:  .
+@prefix pt5:  .
+@prefix pt6:  .
+@prefix pt7:  .
+@prefix pt8:  .
+@prefix pt9:  .
+@prefix qudt:  .
+@prefix rdf:  .
+@prefix rdfs:  .
+@prefix s223:  .
+@prefix xsd:  .
+
+
+  a owl:Ontology ;
+  rdfs:comment """pt1: A simple, manual switch with no electronic signals (Properties)
+pt2: A Luminaire that is controlled by both a simple light switch and a motion sensor
+pt3: A Luminaire controlled by a combination of a smart switch and a motion sensor
+pt4: A Luminaire controlled by a combination of a smart switch and a motion sensor - expanded components
+pt6: Updated Luminaire controlled by a combination of a smart switch and a motion sensor - expanded
+""" ;
+  owl:imports  ;
+  owl:versionInfo "Created with TopBraid Composer" ;
+.
+pt1:DomainSpaceInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt1:LightPathToRoom ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Domain space inlet CP" ;
+.
+pt1:DumbSwitch
+  a s223:Equipment ;
+  s223:cnx pt1:DumbSwitchOutletCP ;
+  rdfs:label "Dumb switch" ;
+.
+pt1:DumbSwitchOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt1:ElectricWireDS-Lum ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Dumb switchOutlet CP" ;
+.
+pt1:ElectricWireDS-Lum
+  a s223:ElectricWire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Electric wire DS-Lum" ;
+.
+pt1:LightPathToRoom
+  a s223:Connection ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Light path to room" ;
+.
+pt1:Luminaire
+  a s223:Luminaire ;
+  s223:cnx pt1:LuminaireInletCP ;
+  s223:cnx pt1:LuminaireOutletCP ;
+  rdfs:label "Luminaire" ;
+.
+pt1:LuminaireInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt1:ElectricWireDS-Lum ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "LuminaireInlet CP" ;
+.
+pt1:LuminaireOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt1:LightPathToRoom ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Luminaire outlet CP" ;
+.
+pt1:Room
+  a s223:PhysicalSpace ;
+  s223:encloses pt1:RoomDomainSpace ;
+  rdfs:label "Room" ;
+.
+pt1:RoomDomainSpace
+  a s223:DomainSpace ;
+  s223:cnx pt1:DomainSpaceInletCP ;
+  s223:hasDomain s223:Domain-Lighting ;
+  rdfs:label "Room domain space" ;
+.
+pt2:DomainSpace
+  a s223:DomainSpace ;
+  s223:cnx pt2:DomainSpaceInletCP ;
+  s223:hasDomain s223:Domain-Lighting ;
+  rdfs:label "Domain space" ;
+.
+pt2:DomainSpaceInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt2:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Domain space inlet CP" ;
+.
+pt2:DumbSwitch
+  a s223:Equipment ;
+  s223:cnx pt2:DumbSwitchOutletCP ;
+  s223:connected pt2:Luminaire ;
+  rdfs:label "Dumb switch" ;
+.
+pt2:DumbSwitchOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt2:ElectricWireBothSwitches-Lum ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Dumb switchOutlet CP" ;
+.
+pt2:ElectricWireBothSwitches-Lum
+  a s223:ElectricWire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Electric wire BothSwitches-Lum" ;
+.
+pt2:Luminaire
+  a s223:Luminaire ;
+  s223:actuatedByProperty pt2:LuminaireCommand ;
+  s223:cnx pt2:LuminaireInletCP ;
+  s223:cnx pt2:LuminaireOutletCP ;
+  s223:connected pt2:DumbSwitch ;
+  s223:connectedTo pt2:DomainSpace ;
+  rdfs:label "Luminaire" ;
+.
+pt2:LuminaireCommand
+  a s223:EnumeratedActuatableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  rdfs:label "Luminaire command" ;
+.
+pt2:LuminaireInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt2:ElectricWireBothSwitches-Lum ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "LuminaireInlet CP" ;
+.
+pt2:LuminaireLogic
+  a s223:Function ;
+  s223:hasInput pt2:MotionProperty ;
+  s223:hasOutput pt2:LuminaireCommand ;
+  rdfs:label "Luminaire logic" ;
+.
+pt2:LuminaireOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt2:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Luminaire outlet CP" ;
+.
+pt2:MotionProperty
+  a s223:EnumeratedObservableProperty ;
+  s223:hasEnumerationKind s223:Occupancy-Motion ;
+  rdfs:label "Motion property" ;
+.
+pt2:OccupantMotionSensor
+  a s223:OccupantMotionSensor ;
+  s223:hasObservationLocation pt2:DomainSpace ;
+  s223:observes pt2:MotionProperty ;
+  rdfs:label "Occupant motion sensor" ;
+.
+pt2:OpticalPath
+  a s223:Connection ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Optical path" ;
+.
+pt2:TestRoom
+  a s223:PhysicalSpace ;
+  s223:encloses pt2:DomainSpace ;
+  rdfs:label "Test room" ;
+.
+pt3:BreakerOutletConnectionPoint_1
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt3:ElectricWireToLuminaire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Breaker outlet connection point 1" ;
+.
+pt3:DomainSpace
+  a s223:DomainSpace ;
+  s223:cnx pt3:DomainSpaceInletCP ;
+  s223:hasDomain s223:Domain-Lighting ;
+  rdfs:label "Domain space" ;
+.
+pt3:DomainSpaceInletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Domain space inlet CP" ;
+.
+pt3:ElectricBreaker_1
+  a s223:ElectricBreaker ;
+  s223:cnx pt3:BreakerOutletConnectionPoint_1 ;
+  rdfs:label "Electric breaker 1" ;
+.
+pt3:ElectricWireToLuminaire
+  a s223:ElectricWire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "ElectricWireToLuminaire" ;
+.
+pt3:Function1
+  a s223:Function ;
+  s223:hasInput pt3:MotionProperty ;
+  s223:hasInput pt3:UserSwitchProperty ;
+  s223:hasOutput pt3:LuminaireCommand ;
+  rdfs:label "Function block1" ;
+.
+pt3:Luminaire
+  a s223:Luminaire ;
+  s223:actuatedByProperty pt3:LuminaireCommand ;
+  s223:cnx pt3:LuminaireInletCP ;
+  s223:cnx pt3:LuminaireOutletCP ;
+  s223:connectedTo pt3:DomainSpace ;
+  rdfs:label "Luminaire" ;
+.
+pt3:LuminaireCommand
+  a s223:EnumeratedActuatableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  rdfs:label "Luminaire command" ;
+.
+pt3:LuminaireInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt3:ElectricWireToLuminaire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "LuminaireInlet CP" ;
+.
+pt3:LuminaireOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Luminaire outlet CP" ;
+.
+pt3:MotionProperty
+  a s223:EnumeratedObservableProperty ;
+  s223:hasEnumerationKind s223:Occupancy-Motion ;
+  rdfs:label "Motion property" ;
+.
+pt3:OccupantMotionSensor
+  a s223:OccupantMotionSensor ;
+  s223:hasObservationLocation pt3:DomainSpace ;
+  s223:observes pt3:MotionProperty ;
+  rdfs:label "Occupant motion sensor" ;
+.
+pt3:OpticalPath
+  a s223:Connection ;
+  s223:cnx pt3:DomainSpaceInletCP ;
+  s223:cnx pt3:LuminaireOutletCP ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Optical path" ;
+.
+pt3:TestRoom
+  a s223:PhysicalSpace ;
+  s223:encloses pt3:DomainSpace ;
+  rdfs:label "Test room" ;
+.
+pt3:UserSwitch
+  a s223:Equipment ;
+  s223:hasProperty pt3:UserSwitchProperty ;
+  rdfs:label "User switch" ;
+.
+pt3:UserSwitchProperty
+  a s223:EnumerableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  rdfs:label "UserSwitchProperty" ;
+.
+pt4:Breaker1
+  a s223:ElectricBreaker ;
+  s223:connectedThrough pt4:ElectricWireToLuminaire ;
+  rdfs:label "Breaker1" ;
+.
+pt4:BreakerOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt4:Breaker1 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Breaker outlet CP" ;
+.
+pt4:DomainSpace
+  a s223:DomainSpace ;
+  s223:cnx pt4:DomainSpaceInletCP ;
+  s223:hasDomain s223:Domain-Lighting ;
+  rdfs:label "Domain space" ;
+.
+pt4:DomainSpaceInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt4:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Domain space inlet CP" ;
+.
+pt4:ElectricWireToLuminaire
+  a s223:ElectricWire ;
+  s223:cnx pt4:BreakerOutletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "ElectricWireToLuminaire" ;
+.
+pt4:Function1
+  a s223:Function ;
+  s223:hasInput pt4:SmartSwitchProperty ;
+  s223:hasOutput pt4:LuminaireCommand ;
+  rdfs:label "Function block1" ;
+.
+pt4:LightActuator
+  a s223:Actuator ;
+  s223:actuatedByProperty pt4:LuminaireCommand ;
+  s223:cnx pt4:LightActuatorOutletCP ;
+  s223:connectedTo pt4:LightBulb ;
+  rdfs:label "Light actuator" ;
+.
+pt4:LightActuatorInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt4:LightActuator ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  s223:mapsTo pt4:LuminaireInletCP ;
+  rdfs:label "LightActuatorInlet CP" ;
+.
+pt4:LightActuatorOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt4:LuminaireInternalWire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Light actuator outlet CP" ;
+.
+pt4:LightBulb
+  a s223:Equipment ;
+  s223:cnx pt4:LightBulbInletCP ;
+  s223:cnx pt4:LightBulbOutletCP ;
+  rdfs:label "Light bulb" ;
+.
+pt4:LightBulbInletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Light bulb inlet CP" ;
+.
+pt4:LightBulbOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:hasMedium s223:Light-Visible ;
+  s223:mapsTo pt4:LuminaireOutletCP ;
+  rdfs:label "Light bulb outlet CP" ;
+.
+pt4:Luminaire
+  a s223:Luminaire ;
+  s223:actuatedByProperty pt4:LuminaireCommand ;
+  s223:cnx pt4:LuminaireOutletCP ;
+  s223:contains pt4:LightActuator ;
+  s223:contains pt4:LightBulb ;
+  rdfs:label "Luminaire" ;
+.
+pt4:LuminaireCommand
+  a s223:EnumeratedActuatableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  rdfs:label "Luminaire command" ;
+.
+pt4:LuminaireInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt4:ElectricWireToLuminaire ;
+  s223:cnx pt4:Luminaire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Luminaire inlet CP" ;
+.
+pt4:LuminaireInternalWire
+  a s223:ElectricWire ;
+  s223:cnx pt4:LightBulbInletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Luminaire internal wire" ;
+.
+pt4:LuminaireOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt4:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Luminaire outlet CP" ;
+.
+pt4:MotionProperty
+  a s223:EnumeratedObservableProperty ;
+  s223:hasEnumerationKind s223:Occupancy-Motion ;
+  rdfs:label "Motion property" ;
+.
+pt4:OccupantMotionSensor
+  a s223:OccupantMotionSensor ;
+  s223:hasObservationLocation pt4:DomainSpace ;
+  s223:observes pt4:MotionProperty ;
+  rdfs:label "Occupant motion sensor" ;
+.
+pt4:OpticalPath
+  a s223:Connection ;
+  s223:connectsTo pt4:DomainSpace ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Optical path" ;
+.
+pt4:SmartSwitch
+  a s223:Equipment ;
+  s223:hasProperty pt4:SmartSwitchProperty ;
+  rdfs:label "Smart switch" ;
+.
+pt4:SmartSwitchProperty
+  a s223:EnumerableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  s223:hasValue s223:OnOff-Unknown ;
+  rdfs:label "SmartSwitchProperty" ;
+.
+pt4:TestRoom
+  a s223:PhysicalSpace ;
+  s223:encloses pt4:DomainSpace ;
+  rdfs:label "Test room" ;
+.
+pt6:Breaker1
+  a s223:ElectricBreaker ;
+  s223:connectedThrough pt6:ElectricWireFromBreaker ;
+  rdfs:label "Breaker1" ;
+.
+pt6:BreakerOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt6:Breaker1 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Breaker outlet CP" ;
+.
+pt6:Controller
+  a s223:Controller ;
+  s223:executes pt6:Function1 ;
+  rdfs:label "Controller" ;
+.
+pt6:DomainSpace
+  a s223:DomainSpace ;
+  s223:cnx pt6:DomainSpaceInletCP ;
+  s223:hasDomain s223:Domain-Lighting ;
+  rdfs:label "Domain space" ;
+.
+pt6:DomainSpaceInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt6:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Domain space inlet CP" ;
+.
+pt6:ElectricWireFromBreaker
+  a s223:ElectricWire ;
+  s223:cnx pt6:BreakerOutletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "ElectricWireFromBreaker" ;
+.
+pt6:Function1
+  a s223:Function ;
+  s223:hasInput pt6:MotionProperty ;
+  s223:hasInput pt6:UserInputProperty ;
+  s223:hasOutput pt6:LuminaireCommand ;
+  rdfs:label "Function block1																																																																															" ;
+.
+pt6:LightActuator
+  a s223:Actuator ;
+  s223:actuatedByProperty pt6:LuminaireCommand ;
+  s223:actuates pt6:Relay ;
+  rdfs:label "Light actuator" ;
+.
+pt6:Luminaire
+  a s223:Equipment ;
+  s223:cnx pt6:LuminaireInletCP ;
+  s223:cnx pt6:LuminaireOutletCP ;
+  rdfs:label "Luminaire" ;
+.
+pt6:LuminaireCommand
+  a s223:EnumeratedActuatableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  rdfs:label "Luminaire command" ;
+.
+pt6:LuminaireInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt6:WireToLightFixture ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Luminaire inlet CP" ;
+.
+pt6:LuminaireOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt6:OpticalPath ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "luminaire outlet CP" ;
+.
+pt6:MotionProperty
+  a s223:EnumeratedObservableProperty ;
+  s223:hasEnumerationKind s223:Occupancy-Motion ;
+  rdfs:label "Motion property" ;
+.
+pt6:OccupantMotionSensor
+  a s223:OccupantMotionSensor ;
+  s223:hasObservationLocation pt6:DomainSpace ;
+  s223:observes pt6:MotionProperty ;
+  rdfs:label "Occupant motion sensor" ;
+.
+pt6:OpticalPath
+  a s223:Connection ;
+  s223:connectsTo pt6:DomainSpace ;
+  s223:hasMedium s223:Light-Visible ;
+  rdfs:label "Optical path" ;
+.
+pt6:PhysicalSpace_1
+  a s223:PhysicalSpace ;
+  s223:encloses pt6:DomainSpace ;
+  rdfs:label "Physical space 1" ;
+.
+pt6:Relay
+  a s223:Equipment ;
+  s223:hasConnectionPoint pt6:RelayInletCP ;
+  s223:hasConnectionPoint pt6:RelayOutletCP ;
+  rdfs:label "Relay" ;
+.
+pt6:RelayInletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  s223:mapsTo pt6:SmartSwitchInlet ;
+  rdfs:label "RelayInlet CP" ;
+.
+pt6:RelayOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  s223:mapsTo pt6:SmartSwitchOutlet ;
+  rdfs:label "Relay outlet CP" ;
+.
+pt6:SmartSwitchInlet
+  a s223:InletConnectionPoint ;
+  s223:cnx pt6:ElectricWireFromBreaker ;
+  s223:cnx pt6:SmartSwitchProduct ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Smart switch inlet" ;
+.
+pt6:SmartSwitchOutlet
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt6:WireToLightFixture ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Smart switch outlet" ;
+.
+pt6:SmartSwitchProduct
+  a s223:Equipment ;
+  s223:cnx pt6:SmartSwitchOutlet ;
+  s223:contains pt6:Controller ;
+  s223:contains pt6:LightActuator ;
+  s223:contains pt6:OccupantMotionSensor ;
+  s223:contains pt6:Relay ;
+  s223:contains pt6:UserInputSwitch ;
+  s223:hasConnectionPoint pt6:SmartSwitchInlet ;
+  s223:hasConnectionPoint pt6:SmartSwitchOutlet ;
+  rdfs:label "Smart switch product" ;
+.
+pt6:TestRoom
+  a s223:PhysicalSpace ;
+  s223:encloses pt4:DomainSpace ;
+  rdfs:label "Test room" ;
+.
+pt6:UserInputProperty
+  a s223:EnumerableProperty ;
+  s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
+  s223:hasValue s223:OnOff-Unknown ;
+  rdfs:label "UserInputProperty" ;
+.
+pt6:UserInputSwitch
+  a s223:Equipment ;
+  s223:hasProperty pt6:UserInputProperty ;
+  rdfs:label "User input switch" ;
+.
+pt6:WireToLightFixture
+  a s223:ElectricWire ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Wire to light fixture" ;
+.
+pt7:Breaker
+  a s223:ElectricBreaker ;
+  s223:cnx pt7:BreakerOutletCP ;
+  rdfs:label "Breaker" ;
+.
+pt7:BreakerOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt7:Circuit1 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Breaker outlet CP" ;
+.
+pt7:Circuit1
+  a s223:ElectricWire ;
+  s223:cnx pt7:Motor1InletCP ;
+  s223:cnx pt7:Motor2InletCP ;
+  s223:cnx pt7:Motor3InletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Circuit1" ;
+.
+pt7:Motor1
+  a s223:Motor ;
+  s223:cnx pt7:Motor1InletCP ;
+  rdfs:label "Motor1" ;
+.
+pt7:Motor1InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor1Inlet CP" ;
+.
+pt7:Motor2
+  a s223:Motor ;
+  s223:cnx pt7:Motor2InletCP ;
+  rdfs:label "Motor2" ;
+.
+pt7:Motor2InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor2Inlet CP" ;
+.
+pt7:Motor3
+  a s223:Motor ;
+  s223:cnx pt7:Motor3InletCP ;
+  rdfs:label "Motor3" ;
+.
+pt7:Motor3InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor3Inlet CP" ;
+.
+pt8:Breaker
+  a s223:ElectricBreaker ;
+  s223:cnx pt8:BreakerOutletCP ;
+  rdfs:label "Breaker" ;
+.
+pt8:BreakerOutletCP
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt8:Circuit1 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Breaker outlet CP" ;
+.
+pt8:Circuit1
+  a s223:ElectricWire ;
+  s223:cnx pt8:JunctionInletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Circuit1" ;
+.
+pt8:CircuitBranch1
+  a s223:ElectricWire ;
+  s223:cnx pt8:Motor1InletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Circuit branch1" ;
+.
+pt8:CircuitBranch2
+  a s223:ElectricWire ;
+  s223:cnx pt8:Motor2InletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Circuit branch2" ;
+.
+pt8:CircuitBranch3
+  a s223:ElectricWire ;
+  s223:cnx pt8:Motor3InletCP ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Circuit branch3" ;
+.
+pt8:Junction
+  a s223:Junction ;
+  s223:cnx pt8:JunctionOutletCP1 ;
+  s223:cnx pt8:JunctionOutletCP2 ;
+  s223:cnx pt8:JunctionOutletCP3 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Junction" ;
+.
+pt8:JunctionInletCP
+  a s223:InletConnectionPoint ;
+  s223:cnx pt8:Junction ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Junction inlet CP" ;
+.
+pt8:JunctionOutletCP1
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt8:CircuitBranch1 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Junction outlet CP1" ;
+.
+pt8:JunctionOutletCP2
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt8:CircuitBranch2 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Junction outlet CP2" ;
+.
+pt8:JunctionOutletCP3
+  a s223:OutletConnectionPoint ;
+  s223:cnx pt8:CircuitBranch3 ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Junction outlet CP3" ;
+.
+pt8:Motor1
+  a s223:Motor ;
+  s223:cnx pt8:Motor1InletCP ;
+  rdfs:label "Motor1" ;
+.
+pt8:Motor1InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor1Inlet CP" ;
+.
+pt8:Motor2
+  a s223:Motor ;
+  s223:cnx pt8:Motor2InletCP ;
+  rdfs:label "Motor2" ;
+.
+pt8:Motor2InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor2Inlet CP" ;
+.
+pt8:Motor3
+  a s223:Motor ;
+  s223:cnx pt8:Motor3InletCP ;
+  rdfs:label "Motor3" ;
+.
+pt8:Motor3InletCP
+  a s223:InletConnectionPoint ;
+  s223:hasMedium s223:AC-120VLN-1Ph-60Hz ;
+  rdfs:label "Motor3Inlet CP" ;
+.
diff --git a/tests/unit/fixtures/compilation/shapes.ttl b/tests/unit/fixtures/compilation/shapes.ttl
new file mode 100644
index 000000000..1b3b04c55
--- /dev/null
+++ b/tests/unit/fixtures/compilation/shapes.ttl
@@ -0,0 +1,29 @@
+@prefix brick:  .
+@prefix owl:  .
+@prefix rdf:  .
+@prefix rdfs:  .
+@prefix sh:  .
+@prefix :  .
+
+: a owl:Ontology ;
+    owl:imports  .
+
+:vav_shape a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:Variable_Air_Volume_Box ;
+    sh:property [
+        sh:path brick:hasPoint ;
+        sh:name "hasAirFlowSensor" ;
+        sh:qualifiedValueShape [ sh:class brick:Air_Flow_Sensor ] ;
+        sh:qualifiedMinCount 1 ;
+    ] ;
+.
+
+:tu_shape a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:Terminal_Unit ;
+    sh:property [
+        sh:path brick:hasPoint ;
+        sh:name "hasTemperatureSensor" ;
+        sh:qualifiedValueShape [ sh:class brick:Temperature_Sensor ] ;
+        sh:qualifiedMinCount 1 ;
+    ] ;
+.
diff --git a/tests/unit/fixtures/from_file_test.ttl b/tests/unit/fixtures/from_file_test.ttl
new file mode 100644
index 000000000..759741109
--- /dev/null
+++ b/tests/unit/fixtures/from_file_test.ttl
@@ -0,0 +1,9 @@
+@prefix brick:  .
+@prefix rdfs:  .
+@prefix unit:  .
+@prefix owl:  .
+@prefix rdf:  .
+@prefix :  .
+
+ a owl:Ontology ;
+    rdfs:comment "This is an example graph" .
diff --git a/tests/unit/fixtures/from_file_test.xmlbadext b/tests/unit/fixtures/from_file_test.xmlbadext
new file mode 100644
index 000000000..3f1f6bd17
--- /dev/null
+++ b/tests/unit/fixtures/from_file_test.xmlbadext
@@ -0,0 +1,10 @@
+
+
+  
+    
+    This is an example graph
+  
+
diff --git a/tests/unit/fixtures/from_file_test.xyz b/tests/unit/fixtures/from_file_test.xyz
new file mode 100644
index 000000000..759741109
--- /dev/null
+++ b/tests/unit/fixtures/from_file_test.xyz
@@ -0,0 +1,9 @@
+@prefix brick:  .
+@prefix rdfs:  .
+@prefix unit:  .
+@prefix owl:  .
+@prefix rdf:  .
+@prefix :  .
+
+ a owl:Ontology ;
+    rdfs:comment "This is an example graph" .
diff --git a/tests/unit/fixtures/shape_to_query/shapes.ttl b/tests/unit/fixtures/shape_to_query/shapes.ttl
index 2c5f68b11..f997a87ec 100644
--- a/tests/unit/fixtures/shape_to_query/shapes.ttl
+++ b/tests/unit/fixtures/shape_to_query/shapes.ttl
@@ -5,6 +5,7 @@
 @prefix rdf:  .
 @prefix rdfs:  .
 @prefix sh:  .
+@prefix xsd:  .
 @prefix ref:  .
 @prefix :  .
 
@@ -57,6 +58,32 @@
     ] ;
 .
 
+:multiple_classes a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:Sensor, brick:VAV ;
+    sh:property [
+        sh:name "label" ;
+        sh:path rdfs:label ;
+        sh:datatype xsd:string ;
+    ] ;
+.
+
+:test_sh_or a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:Sensor ;
+    sh:or ( [
+        sh:property [
+            sh:name "unit" ;
+            sh:path brick:hasUnits ;
+            sh:hasValue unit:DEG_C ;
+        ] ;
+    ] [
+        sh:property [
+            sh:name "unit" ;
+            sh:path brick:hasUnits ;
+            sh:hasValue unit:DEG_F ;
+        ] ;
+    ] )
+    .
+
 :subjectTarget a sh:NodeShape, owl:Class ;
     sh:targetSubjectsOf brick:hasPoint ;
     sh:property [
@@ -78,3 +105,21 @@
         sh:qualifiedMinCount 1 ;
     ] ;
 .
+
+:optional_property a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:Sensor ;
+    sh:property [
+        sh:name "unit" ;
+        sh:path brick:hasUnits ;
+        sh:qualifiedValueShape [ sh:class qudt:Unit ] ;
+    ] ;
+.
+
+:or_clauses_qualified_shape a sh:NodeShape, owl:Class ;
+    sh:targetClass brick:VAV ;
+    sh:property [
+        sh:name "part" ;
+        sh:path brick:hasPart ;
+        sh:qualifiedValueShape [ sh:or ( [ sh:class brick:Sensor ] [ sh:node :sensor ] ) ] ;
+    ] ;
+.